/* ===== EONS Cinematic Website - Styles ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --crimson: #8B1A1A;
  --blue: #1A3A5C;
  --white: #E6E6E6;
  --gray: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  filter: brightness(0.6) saturate(1.2);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.8) 60%, #0D0D0D 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.hero h1 {
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #ccc;
}
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all .3s;
  border: 2px solid var(--gold);
  margin: 0.5rem;
}
.cta-btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.2);
}
.cta-btn.secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.cta-btn.secondary:hover {
  background: var(--gold);
  color: var(--black);
}

/* === SECTIONS === */
section { padding: 5rem 2rem; }
.section-title {
  text-align: center;
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}
.container { max-width: 1200px; margin: 0 auto; }

/* === BOOK SECTION === */
.book-section {
  background: linear-gradient(180deg, var(--black) 0%, #111 50%, var(--black) 100%);
}
.book-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  justify-content: center;
}
.book-cover {
  flex: 0 0 350px;
}
.book-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 30px rgba(201,168,76,0.1);
}
.book-info { flex: 1; min-width: 300px; }
.book-info h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.book-info p { margin-bottom: 1.2rem; color: #bbb; font-size: 1.05rem; }
.book-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.genre-tag {
  padding: 0.3rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gold);
}

/* === MUSIC SECTION === */
.music-section {
  background: #111;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.album-card {
  background: linear-gradient(145deg, #1A1A1A, #0D0D0D);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all .3s;
}
.album-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.1);
}
.album-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.album-card h4 { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.3rem; }
.album-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 1rem; }
.stream-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #1DB954;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all .3s;
}
.stream-btn:hover { background: #1ed760; transform: scale(1.05); }
.apple-btn { background: #FA233B; }
.apple-btn:hover { background: #ff3b4a; }

/* === VIDEO SECTION === */
.video-section {
  background: var(--black);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
  transition: all .3s;
}
.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.video-placeholder {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1A3A5C, #0D0D0D);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.video-info { padding: 1rem; }
.video-info h4 { color: var(--gold); font-size: 1rem; }
.video-info p { color: var(--gray); font-size: 0.85rem; }

/* === ABOUT SECTION === */
.about-section {
  background: linear-gradient(180deg, var(--black), #111);
  text-align: center;
}
.about-content { max-width: 700px; margin: 0 auto; }
.about-content img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin-bottom: 1.5rem;
  object-fit: cover;
}
.about-content h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.about-content p { color: #bbb; font-size: 1.05rem; margin-bottom: 1rem; }

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(135deg, #1A3A5C, #0D0D0D);
  text-align: center;
  padding: 4rem 2rem;
}
.newsletter h2 { color: var(--gold); margin-bottom: 1rem; }
.newsletter p { color: #bbb; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 450px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #333;
  background: rgba(255,255,255,0.05);
  color: white;
  border-radius: 4px;
  font-size: 1rem;
}
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all .3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* === FOOTER === */
footer {
  background: #080808;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid #1A1A1A;
}
footer .social-links { margin-bottom: 1.5rem; }
footer .social-links a {
  color: var(--gray);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.95rem;
  transition: color .3s;
}
footer .social-links a:hover { color: var(--gold); }
footer p { color: #444; font-size: 0.85rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .book-content { flex-direction: column; text-align: center; }
  .book-cover { flex: 0 0 250px; }
  .newsletter-form { flex-direction: column; }
  section { padding: 3rem 1.5rem; }
  .hero h1 { font-size: 2.5rem; }
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}