

body.default-bg {
  background-image: url('/assets/images/embers-bg.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7; /* for subtle watermark effect */
  color: #ddd;
  font-family: 'Segoe UI', sans-serif;
}

body.cast-bg {
  background-image: none;
  background-color: hsla(39, 89%, 15%, 0.8);
}




h1, h2, h3 {
  font-family: 'Cinzel', serif;
  color: #ffc107;
}

.navbar-nav .nav-link {
  color: #ffc107 !important;
  font-weight: bold;
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 5px rgba(255, 193, 7, 0.6);
}

footer {
  color: #ccc;
  background-color: #111;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

.btn-outline-warning {
  border-width: 2px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.btn-outline-warning:hover {
  background-color: #ffc107;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.quote-box {
  background-color: #ff6f00;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.quote-cinematic {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fefefe;
  text-align: center;
  font-style: italic;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  margin-top: 3rem;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar-brand .official {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

.navbar-brand .emberfalls {
  font-size: 1.2rem;
  line-height: 1.2;
}

.logo-header {
  height: 160px;
  object-fit: contain ;
}

.navbar-center {
  flex-grow: 1;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc107; /* gold tone */
  margin: 0;
  line-height: 2;
  font-family: 'Cinzel', serif;
}

.site-tagline {
  font-size: 1rem;
  font-style: italic;
  color: #ddd;
  margin: 0;
  line-height: 1.2;
}

.cast-page {
  padding: 2rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-family: 'Cinzel', serif;
  color: #ffc107;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cast-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.cast-card {
  background-color: #222;
  border-radius: 8px;
  padding: 1rem;
  width: 250px;
  color: #eee;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.cast-img {
  width: 100%;
  border-radius: 6px;
}

.cast-name {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: orange;
}

.cast-role {
  font-style: italic;
  color: #aaa;
}

.cast-desc {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.cast-container {
  display: flex;
  gap: 32px;
}

.cast-sidebar {
  width: 200px;
  background: #1a1a1a;
  padding: 16px;
  border-right: 2px solid #444;
}

.cast-sidebar ul {
  list-style: none;
  padding: 0;
}

.cast-sidebar li {
  padding: 12px;
  color: #e0d4b7;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  border-bottom: 1px solid #333;
}

.cast-sidebar li:hover {
  background: #2a2a2a;
}

.cast-profile {
  flex: 1;
  padding: 16px;
}

.profile-card {
  display: block;
}

.site-tagline {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #e0d4b7;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.site-tagline.fade-out {
  opacity: 0;
}

.site-tagline.fade-in {
  opacity: 1;
}

.about-vision {
  margin-top: 40px;
  padding: 20px;
  background: rgba(30, 20, 10, 0.2);
  border-left: 4px solid #f5e6c8;
}

.about-vision h2 {
  font-size: 1.5rem;
  color: #f5e6c8;
}

.about-vision p {
  font-style: italic;
  line-height: 1.7;
  color: #e0d4b7;
}

.about-future {
  margin-top: 40px;
  padding: 20px;
  background: rgba(30, 20, 10, 0.2);
  border-left: 4px solid #f5e6c8;
}

.about-future h2 {
  font-size: 1.5rem;
  color: #f5e6c8;
}

.about-future p {
  font-style: italic;
  line-height: 1.7;
  color: #e0d4b7;
}

.terms-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #e0d4b7;
  font-family: 'Cinzel', serif;
}

.terms-page h1, .terms-page h2 {
  color: #d4af37;
  margin-bottom: 16px;
}

.terms-page p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.terms-page ul {
  list-style: none;
  padding-left: 0;
}

.terms-page ul li::before {
  content: "✦ ";
  color: #f5e6c8;
  margin-right: 8px;
}