/* ============================================================
   Mirella Queen — Romanian International Vocalist
   Luxury dark-and-gold aesthetic
   ============================================================ */

:root {
  --bg-0: #0a0a0a;      /* near-black base */
  --bg-1: #111014;
  --bg-2: #16141a;
  --ink:      #f4f1ea;  /* warm ivory body text */
  --ink-soft: #b9b1a4;
  --ink-dim:  #8a8478;
  --gold:     #c8a84e;  /* signature gold accent */
  --gold-bright: #e6c36a;
  --gold-glow: rgba(200, 168, 78, 0.45);
  --border:   rgba(200, 168, 78, 0.22);
  --card:     rgba(16, 15, 19, 0.55);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --maxw: 980px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1100px 700px at 85% -10%, rgba(200,168,78,0.10), transparent 60%),
    radial-gradient(900px 700px at -10% 40%, rgba(90,80,45,0.18), transparent 62%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .hero-name, .stat .num {
  font-family: var(--font-serif);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9998;
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  border-radius: 6px;
  box-shadow: 0 0 10px var(--gold-glow);
}
.brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.desktop-nav {
  display: flex;
  gap: 26px;
  font-size: 0.95rem;
}
.desktop-nav a, .lang a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.desktop-nav a:hover, .lang a:hover { color: var(--gold-bright); }
.lang a {
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 9px;
}
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 6px;
  padding: 2px 12px;
  cursor: pointer;
}

/* mobile dropdown — sibling of header, position fixed, high z-index */
.nav-dropdown {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  z-index: 99999;
  background: rgba(10, 10, 12, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 16px 22px;
  flex-direction: column;
}
.nav-dropdown.open { display: flex; }
.nav-dropdown a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1.05rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-dropdown a:hover { color: var(--gold-bright); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slides .hero-bg.is-active { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.55) 42%, rgba(10,10,10,0.15) 100%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  /* Left breathing room so text doesn't hug the viewport edge on wide screens */
  margin-left: calc(max(22px, (100% - 980px) / 2 + 0px));
  padding: 0 22px;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-name {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  color: var(--ink);
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--ink-soft);
  margin: 18px 0 6px;
}
.hero-tag {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

/* ---------------- Buttons ---------------- */
.btn-primary, .btn-ghost {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  margin-right: 12px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 18px var(--gold-glow);
}
.btn-primary:hover {
  box-shadow: 0 6px 26px rgba(230,195,106,0.6);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------------- Sections ---------------- */
.section {
  padding: 72px 0;
  scroll-margin-top: 72px;
}
.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 18px;
}
.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.section p { margin-bottom: 16px; }
.section h3 {
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-top: 26px;
}
.section strong { color: var(--gold-bright); }

/* ---------------- Genre grid ---------------- */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 14px;
  margin: 26px 0;
}
@media (max-width: 520px) {
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
}
.genre-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  backdrop-filter: blur(6px);
}

/* ---------------- Experience / Stats ---------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  padding: 22px 12px;
}
.stat .num {
  display: block;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat .lbl {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.country-list, .brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
}
.country-list li, .brand-list li {
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--ink-soft);
  padding: 8px 16px;
  font-size: 0.95rem;
}

/* ---------------- Formats ---------------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
}
.format-card, .contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
}
.format-card h3 { color: var(--gold-bright); margin-top: 0; }
.format-card p { color: var(--ink-soft); }

/* ---------------- Media / video / gallery ---------------- */
.video-block {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
}
.promo-video {
  width: min(100%, 380px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  background: #000;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  margin-top: 14px;
}
.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ---------------- Contact ---------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 22px;
  margin: 22px 0;
}
.contact-card h3 { color: var(--gold-bright); margin-top: 0; }
.contact-card p { margin: 0; }
.contact-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover { text-decoration: underline; }
.note { color: var(--ink-dim); font-size: 0.95rem; }
.note a { color: var(--gold); text-decoration: underline; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: #0a0a0c;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand span { color: var(--ink-dim); font-size: 1rem; }
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 14px;
}
.footer-links li { list-style: none; }
.footer-links a { color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--gold-bright); }
.copyright { color: var(--ink-dim); font-size: 0.85rem; margin: 0; }

/* ---------------- Responsive nav ---------------- */
@media (max-width: 720px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
}

/* ---------------- Accessibility / reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .btn-primary:hover { transform: none; }
}