/* ════════════════════════════════════════════════════════════
   OUI DENTELLE — stylesheet
   Palette: indigo foncé · crème · or
   Typo   : Brasika (display) · EB Garamond (body)
   ════════════════════════════════════════════════════════════ */

/* ─── FONTS ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Brasika';
  src: url('../Brasika.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --indigo:       #1a1730;
  --indigo-mid:   #252245;
  --indigo-light: #3a365f;
  --cream:        #f0e8d8;
  --cream-dim:    #c8b99a;
  --gold:         #b8965a;
  --gold-dim:     rgba(184,150,90,0.35);
  --font-d: 'Brasika', 'Cormorant Garamond', serif;
  --font-b: 'EB Garamond', serif;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:  1100px;
  --px:     2rem;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--indigo);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(26, 23, 48, 0.88);
  backdrop-filter: blur(12px);
  padding-block: 1rem;
  border-bottom: 1px solid var(--gold-dim);
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover        { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Burger (hidden on desktop) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream-dim);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: heroScale 14s ease-out forwards;
}
@keyframes heroScale {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,23,48,0.2) 0%,
      rgba(26,23,48,0.5) 60%,
      rgba(26,23,48,0.95) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(26,23,48,0.6) 100%);
}

/* Film-grain texture */
.hero-grain {
  position: absolute;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.3;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { background-position: 0 0; }
  10%  { background-position: -5% -10%; }
  20%  { background-position: -15% 5%; }
  30%  { background-position: 7% -25%; }
  40%  { background-position: 20% 10%; }
  50%  { background-position: -10% 15%; }
  60%  { background-position: 15% -5%; }
  70%  { background-position: 0 20%; }
  80%  { background-position: -20% 0; }
  90%  { background-position: 10% 5%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  padding: 18vh var(--px) 2rem;
  animation: fadeUp 1.6s ease both;
  animation-delay: 0.2s;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gold ornament line */
.lace-line {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.lace-line::before, .lace-line::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8px;
  color: var(--gold);
  opacity: 0.8;
}
.lace-line::before { left: 28px; }
.lace-line::after  { right: 28px; }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.8rem, 11vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--cream);
  text-shadow:
    0 0 80px rgba(184,150,90,0.25),
    0 2px 6px rgba(0,0,0,0.6);
}
.hero-sub {
  font-family: var(--font-d);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: var(--cream-dim);
  letter-spacing: 0.18em;
}

/* Social row */
.social-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.4rem;
}
.social-row a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: flex;
}
.social-row a:hover {
  color: var(--cream);
  transform: translateY(-3px);
}
.social-row svg { width: 20px; height: 20px; fill: currentColor; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream-dim);
  opacity: 0.45;
  animation: fadeUp 2s ease both, bob 2.2s ease-in-out 2s infinite;
}
.scroll-hint svg { width: 16px; }
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ─── SECTIONS SHARED ─────────────────────────────────────── */
.section {
  padding: 6rem var(--px);
  max-width: var(--max-w);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.6rem;
}
.section-title em { color: var(--cream-dim); font-style: italic; }
.section-title--center { text-align: center; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section { padding-top: 7rem; padding-bottom: 7rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap { position: relative; }
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--indigo-mid);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--cream-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
/* Subtle inner gradient */
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(58,54,95,0.7), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(184,150,90,0.08), transparent 50%);
}
.about-photo-placeholder span { position: relative; }

/* Gold accent corner */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.5;
}

.about-text p {
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  max-width: 46ch;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.6rem 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  border: 1px solid var(--gold-dim);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(184,150,90,0.06);
}

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.divider.visible { opacity: 1; }

/* ─── SINGLES GRID ───────────────────────────────────────── */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 300px));
  gap: 2.4rem;
  justify-content: center;
}

.single-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-decoration: none;
}

.single-cover {
  width: 100%;
  aspect-ratio: 1;
  background: var(--indigo-mid);
  border: 1px solid rgba(184,150,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.single-card:hover .single-cover { border-color: var(--gold-dim); }

.single-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(58,54,95,0.8), transparent 55%),
    radial-gradient(ellipse at 70% 75%, rgba(184,150,90,0.1), transparent 55%);
}
.single-cover img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.single-cover-label {
  position: relative;
  font-family: var(--font-d);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.single-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(26,23,48,0.5);
}
.single-play svg {
  width: 36px;
  fill: var(--cream);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.single-card:hover .single-play { opacity: 1; }
.single-card--upcoming .single-play { display: none; }

.single-info { display: flex; flex-direction: column; gap: 0.3rem; }
.single-title {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.single-sub {
  font-size: 0.7rem;
  color: var(--cream-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stream-links { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.2rem; }
.stream-btn {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid rgba(200,185,154,0.22);
  padding: 0.22rem 0.55rem;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.stream-btn:hover { border-color: var(--gold); color: var(--cream); }

/* ─── VIDEO ──────────────────────────────────────────────── */
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--indigo-mid);
  border: 1px solid rgba(184,150,90,0.18);
  position: relative;
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: var(--cream-dim);
  font-style: italic;
  font-size: 0.9rem;
}
.play-circle {
  width: 64px; height: 64px;
  border: 1px solid rgba(200,185,154,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-circle svg { width: 22px; fill: var(--cream-dim); margin-left: 4px; }

/* ─── SHOWS ──────────────────────────────────────────────── */
.shows-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(184,150,90,0.1);
  transition: background 0.2s;
}
.show-row:first-child { border-top: 1px solid rgba(184,150,90,0.1); }
.show-row:hover { background: rgba(184,150,90,0.03); }

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.show-day {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.show-month {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

.show-details { display: flex; flex-direction: column; gap: 0.15rem; }
.show-venue {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
}
.show-city {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.show-ticket { white-space: nowrap; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.contact-social {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: color 0.3s;
}
.contact-social a:hover { color: var(--gold); }
.contact-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-text p {
  color: var(--cream-dim);
  max-width: 36ch;
  margin-bottom: 1.4rem;
}
.contact-email {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.contact-email:hover { color: var(--cream); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,185,154,0.2);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(200,185,154,0.35); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }

.btn-submit {
  align-self: flex-start;
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--cream-dim);
  cursor: pointer;
  font-family: var(--font-b);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-submit:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(184,150,90,0.07);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(184,150,90,0.12);
  padding: 5rem var(--px);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}
.footer-social {
  display: flex;
  gap: 1.4rem;
}
.footer-social a {
  color: rgba(200,185,154,0.45);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
}
.footer-social a:hover { color: var(--cream); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,185,154,0.28);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  :root { --px: 1.5rem; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo-wrap::after { display: none; }

  .nav-links {
    position: fixed;
    inset: 0 0 auto;
    top: 60px;
    background: rgba(26,23,48,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1.5rem 0 2rem;
    display: none;
    border-bottom: 1px solid var(--gold-dim);
  }
  .nav-links--open { display: flex; }
  .nav-links li    { width: 100%; text-align: center; }
  .nav-links a     { display: block; padding: 0.9rem 0; font-size: 0.75rem; }
  .nav-burger      { display: flex; }

  .show-row { grid-template-columns: 70px 1fr; }
  .show-ticket { grid-column: 2; }
}

@media (max-width: 540px) {
  .singles-grid { grid-template-columns: 1fr 1fr; }
  .hero-title   { letter-spacing: 0.08em; }
  .section      { padding-block: 4.5rem; }
}
