/* ============================================
   EMPRESS FUNNEL — STYLES.CSS
   Luxury feminine aesthetic
   Colors: Black, Cream, Champagne, Gold
   ============================================ */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --black:       #0a0909;
  --deep:        #111010;
  --cream:       #f5f0e8;
  --champagne:   #e8d9c0;
  --gold:        #F8BBD0;
  --gold-light:  #fdd5e3;
  --gold-dim:    rgba(248, 187, 208, 0.3);
  --text-main:   #e8e0d5;
  --text-muted:  rgba(232, 224, 213, 0.6);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --transition:  0.4s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ============================================
   TEXTURE OVERLAY — subtle grain
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================
   PAGE 1 — SALES / OPT-IN PAGE
   ============================================ */

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(248,187,208,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(248,187,208,0.05) 0%, transparent 60%),
    var(--black);
}

/* Decorative top line */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* Decorative bottom line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to top, transparent, var(--gold-dim));
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.hero-ornament {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
  letter-spacing: 0.5em;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-subline {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

/* --- SECTION WRAPPER --- */
.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  text-align: center;
  margin-bottom: 16px;
}

.section-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 40px;
}

.section-body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-align: center;
  line-height: 2;
}

/* --- BULLET LISTS (♡ items) --- */
.fancy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 620px;
}

.fancy-list li {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-main);
  padding: 18px 0;
  border-bottom: 1px solid rgba(248,187,208,0.1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
  transition: color var(--transition);
}

.fancy-list li:last-child {
  border-bottom: none;
}

.fancy-list li .icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- FOR/NOT FOR SECTIONS --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.col-card {
  padding: 48px 36px;
  border: 1px solid rgba(248,187,208,0.15);
  background: rgba(248,187,208,0.02);
  position: relative;
}

.col-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.col-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--champagne);
  margin-bottom: 8px;
  text-align: center;
}

.col-card-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.col-card .fancy-list li {
  font-size: 0.95rem;
}

/* --- DIVIDERS --- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 600px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(248,187,208,0.3));
}

.divider-line.rev {
  background: linear-gradient(to left, transparent, rgba(248,187,208,0.3));
}

.divider-symbol {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* ============================================
   OPT-IN FORM SECTION
   ============================================ */
.optin-section {
  text-align: center;
  padding: 80px 24px 120px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(248,187,208,0.06) 0%, transparent 70%),
    var(--black);
  position: relative;
}

.optin-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.optin-tag {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.optin-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.2;
}

.optin-note {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 52px;
}

/* The actual form */
.optin-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}

.optin-form input[type="text"],
.optin-form input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248,187,208,0.4);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 14px 4px;
  outline: none;
  transition: border-color var(--transition);
  text-align: center;
}

.optin-form input::placeholder {
  color: rgba(232,224,213,0.35);
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
}

.optin-form input:focus {
  border-bottom-color: var(--gold);
}

/* CTA Button */
.btn-optin {
  display: inline-block;
  margin-top: 24px;
  padding: 18px 52px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-optin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-optin:hover::before {
  opacity: 0.08;
}

.btn-optin:hover {
  box-shadow: 0 0 30px rgba(248,187,208,0.2), 0 0 60px rgba(248,187,208,0.08);
  letter-spacing: 0.6em;
  color: var(--cream);
}

.btn-optin span {
  position: relative;
  z-index: 1;
}

.form-privacy {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(232,224,213,0.25);
  margin-top: 16px;
}

/* ============================================
   PAGE 2 — PRIVATE VIEWING ROOM (watch.html)
   ============================================ */
.viewing-body {
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind video */
.viewing-body::before {
  content: '';
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(248,187,208,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.viewing-eyebrow {
  font-size: 9px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.viewing-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.viewing-rule {
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeIn 1s 0.7s forwards;
}

/* --- RESPONSIVE VIDEO WRAPPER --- */
.video-wrapper {
  width: 100%;
  max-width: 900px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  background: rgba(248,187,208,0.04);
  border: 1px solid rgba(248,187,208,0.12);
  box-shadow:
    0 0 80px rgba(0,0,0,0.8),
    0 0 0 1px rgba(248,187,208,0.06);
  opacity: 0;
  animation: fadeIn 1.2s 0.9s forwards;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- VIEWING PAGE CTA BUTTON --- */
.btn-cta-wrap {
  margin-top: 52px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}

.btn-cta-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-enter {
  display: inline-block;
  padding: 22px 72px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.btn-enter::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(248,187,208,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn-enter:hover::after {
  opacity: 1;
}

.btn-enter:hover {
  box-shadow:
    0 0 40px rgba(248,187,208,0.25),
    0 0 80px rgba(248,187,208,0.1),
    inset 0 0 20px rgba(248,187,208,0.05);
  color: var(--cream);
  letter-spacing: 0.7em;
  border-color: var(--gold-light);
}

.viewing-footer {
  margin-top: 60px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(232,224,213,0.18);
  text-align: center;
  text-transform: uppercase;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s;  }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-center { text-align: center; }
.serif       { font-family: var(--font-serif); }

/* ============================================
   MOBILE OPTIMISATION
   ============================================ */
@media (max-width: 768px) {

  .hero {
    padding: 100px 20px 60px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px;
  }

  .col-card {
    padding: 36px 24px;
  }

  .optin-form input[type="text"],
  .optin-form input[type="email"] {
    font-size: 16px; /* prevents iOS zoom */
  }

  .btn-optin {
    padding: 18px 36px;
    letter-spacing: 0.35em;
  }

  .btn-enter {
    padding: 20px 48px;
    letter-spacing: 0.4em;
  }

  .section {
    padding: 60px 20px;
  }

  .video-wrapper {
    padding-bottom: 60%;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .optin-headline {
    font-size: 1.7rem;
  }

  .btn-optin:hover {
    letter-spacing: 0.5em;
  }
}
