/* ═══════════════════════════════════════════════════════════════
   THE MARIONS — style.css
   CSS consolidat din: index.html, faq.html, blog.html,
   corporate.html, wedding.html, lansari.html, povestea.html,
   articol1.html, articol2.html
   Regulă: valoarea finală activă din cascadă, fără duplicate.
═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
───────────────────────────────────────────────────────────── */
:root {
  --c-bg:          #050505;
  --c-bg2:         #0a0a0a;
  --c-purple:      #ec4899;
  --c-purple-mid:  #666666;
  --c-purple-glow: #ec4899;
  --c-purple-soft: #ffffff;
  --c-text:        #ffffff;
  --c-text-dim:    rgba(255, 255, 255, 0.6);
  --glass-bg:      rgba(255, 255, 255, 0.03);
  --glass-bd:      rgba(255, 255, 255, 0.1);
  --glass-blur:    blur(24px) saturate(180%);
}


/* ─────────────────────────────────────────────────────────────
   2. RESET
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { max-width: 100%; overflow-x: hidden; }


/* ─────────────────────────────────────────────────────────────
   3. LENIS SMOOTH SCROLL
───────────────────────────────────────────────────────── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Fix pentru scroll-ul care agață pe videoclipurile YouTube */
html.lenis-scrolling iframe {
  pointer-events: none !important;
}


/* ─────────────────────────────────────────────────────────────
   4. BODY & SCROLLBAR
───────────────────────────────────────────────────────── */
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-purple-mid); border-radius: 3px; }


/* ─────────────────────────────────────────────────────────────
   5. FILM-GRAIN OVERLAY
───────────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}


/* ─────────────────────────────────────────────────────────────
   6. LANGUAGE SYSTEM
───────────────────────────────────────────────────────── */
.t-ro { display: none; }
body.ro-mode .t-en { display: none !important; }
body.ro-mode .t-ro { display: inline !important; }
body.ro-mode .t-ro.blk { display: block !important; }
body.ro-mode select.t-ro { display: block !important; }

.lang-en, .lang-ro { transition: color 0.3s ease, text-shadow 0.3s ease; }
.lang-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  user-select: none;
  margin-top: -2px;
}

body.ro-mode .lang-ro  { color: #ffffff; font-weight: 700; text-shadow: 0 0 10px rgba(255,255,255,0.4); }
body.ro-mode .lang-en  { color: rgba(255, 255, 255, 0.4); font-weight: 400; }
body:not(.ro-mode) .lang-en { color: #ffffff; font-weight: 700; text-shadow: 0 0 10px rgba(255,255,255,0.4); }
body:not(.ro-mode) .lang-ro { color: rgba(255, 255, 255, 0.4); font-weight: 400; }


/* ─────────────────────────────────────────────────────────────
   7. PRELOADER
───────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
}
#preloader.fade-out { opacity: 0; pointer-events: none; }

#pre-logo {
  width: 280px;
  height: auto;
  border-radius: 14px;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
#pre-logo.show {
  opacity: 1;
  transform: scale(1);
  animation: logoPulse 2.6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 12px rgba(21,21,21,0.35)); }
  50%      { filter: drop-shadow(0 0 46px rgba(161,161,161,0.95)) drop-shadow(0 0 90px rgba(33,33,33,0.35)); }
}

@keyframes revUp { to { opacity: 1; transform: translateY(0); } }


/* ─────────────────────────────────────────────────────────────
   8. FIXED LOGO
───────────────────────────────────────────────────────── */
#site-logo {
  position: fixed;
  top: 24px !important;
  left: 40px;
  z-index: 705;
  opacity: 0;
  transition: opacity 0.7s ease 0.15s;
}
#site-logo.show { opacity: 1; }
#site-logo img {
  width: 170px;
  height: auto;
  border-radius: 9px;
  filter: drop-shadow(0 0 11px rgba(168,85,247,0.5));
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), filter 0.25s ease;
}


/* ─────────────────────────────────────────────────────────────
   9. LANGUAGE BUTTON CONTAINER
───────────────────────────────────────────────────────── */
#lang-container {
  position: fixed;
  top: 32px !important;
  right: 40px;
  z-index: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
}
#lang-container.show { opacity: 1; transform: translateY(0); }

#lang-btn,
#lang-btn-mobile {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  outline: none;
  padding: 10px;
}
#lang-btn      { font-size: 0.95rem; }
#lang-btn-mobile { font-size: 1.15rem; margin-top: 10px; }

/* Alinierea barei optice RO|EN */
#lang-btn .lang-sep { margin-top: -3px !important; font-weight: 300 !important; }


/* ─────────────────────────────────────────────────────────────
   10. FIXED HEADER — glassmorphism bar (centrat)
   Regulă: blocul final "STARE DEFAULT" suprascrie toate variantele
   anterioare din fiecare pagină. Valorile de mai jos sunt finale.
───────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 20px !important;
  left: 50%;
  transform: translate(-50%, -10px);
  right: auto;
  z-index: 600;
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center;
  gap: 12px !important;
  width: max-content !important;
  max-width: 90% !important;
  padding: 10px 25px !important;
  white-space: nowrap !important;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  border-radius: 30px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
}
#site-header.show { opacity: 1; transform: translate(-50%, 0); }

/* Butoanele text din header */
#site-header .gbtn {
  font-size: 0.75rem !important;
  padding: 10px 22px !important;
  line-height: 1.2 !important;
}

/* Butoanele iconițe din header */
#site-header .gbtn-icon {
  width: 38px !important;
  height: 38px !important;
  padding: 0 !important;
}
#site-header .gbtn-icon svg {
  width: 16px !important;
  height: 16px !important;
}

/* Separator + săgeată dropdown */
#site-header .hdr-sep  { height: 24px !important; }
#site-header .dropbtn svg {
  width: 15px !important;
  height: 15px !important;
  margin-left: 6px !important;
}


/* ─────────────────────────────────────────────────────────────
   11. DROPDOWN (Blog & FAQ)
───────────────────────────────────────────────────────── */
.dropdown { position: relative; display: inline-block; }
.dropdown .dropbtn svg { transition: transform 0.3s ease; }
.dropdown:hover .dropbtn svg { transform: rotate(180deg); }

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  padding: 10px;
  min-width: 140px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
/* Punte invizibilă pentru hover continuu */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}
.dropdown:hover .dropdown-content {
  display: flex;
  animation: fadeInDrop 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes fadeInDrop {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.dropdown-content .gbtn {
  width: 100%;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  justify-content: center;
}
.dropdown-content .gbtn:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--c-purple-glow) !important;
  transform: scale(1.02);
}


/* ─────────────────────────────────────────────────────────────
   12. GLASS BUTTON (.gbtn)
   Stilul de bază; hover-ul final e definit în secțiunea SUPRASCRIERI.
───────────────────────────────────────────────────────── */
.gbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 15px;
  border-radius: 100px;
  color: var(--c-text);
  font-family: 'Roboto', sans-serif;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition:
    transform    0.3s cubic-bezier(0.34,1.56,0.64,1),
    background   0.2s ease,
    box-shadow   0.25s ease,
    border-color 0.2s ease;
}
.gbtn:active { transform: scale(0.96); transition-duration: 0.1s; }

.gbtn-icon { width: 32px; height: 32px; padding: 0; border-radius: 50%; }
.gbtn-icon svg { width: 14px; height: 14px; fill: currentColor; }

/* Forțează culoarea albă a linkurilor din interiorul butoanelor */
.gbtn a { color: inherit; text-decoration: none; }

/* Strat invizibil care se întinde pe toată suprafața butonului */
.gbtn a::after {
  content: '';
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  z-index: 1;
}

.gbtn, .dropdown-content .gbtn, .cf-submit, .hero-cta, .rv-see-all {
  position: relative; }

.hdr-sep { width: 1px; height: 18px; background: var(--glass-bd); flex-shrink: 0; }


/* ─────────────────────────────────────────────────────────────
   13. HAMBURGER BUTTON (mobil)
───────────────────────────────────────────────────────── */
#hamburger-btn {
  display: none;
  position: fixed;
  top: max(32px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 700;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
#hamburger-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
#hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger-btn.open span:nth-child(2) { opacity: 0; }
#hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ─────────────────────────────────────────────────────────────
   14. MOBILE MENU — full-screen overlay
───────────────────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 699;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 80px 20px 40px;
  overflow-y: auto;
}
#mobile-menu.open { opacity: 1; transform: translateY(0); }

.mob-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-nav-link:active { color: var(--c-purple-glow); }

/* Buton Contact (CTA mare) în meniul mobil */
#mobile-menu .mob-cta-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.85) !important;
  color: #ffffff !important;
  padding: 16px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  width: 85% !important;
  max-width: 260px !important;
  margin-top: 5px !important;
  margin-bottom: 10px !important;
  border-radius: 100px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Rândul cu Social Media */
.mob-soc-row { display: flex; flex-direction: row; gap: 22px; margin-bottom: 10px; }
#mobile-menu .gbtn-icon        { width: 48px !important; height: 48px !important; }
#mobile-menu .gbtn-icon svg    { width: 22px !important; height: 22px !important; }


/* ─────────────────────────────────────────────────────────────
   15. WHATSAPP WIDGET
───────────────────────────────────────────────────────── */
#wa-widget {
  position: fixed;
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 12px));
  right: max(28px, env(safe-area-inset-right));
  z-index: 9000;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  text-decoration: none;
}
#wa-widget:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
#wa-widget svg   { width: 28px; height: 28px; fill: #fff; }


/* ─────────────────────────────────────────────────────────────
   16. SHARED SECTION LABELS
───────────────────────────────────────────────────────── */
.sec-eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-purple-glow);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 76px;
}

/* Link "citește mai mult" — folosit în blog, contact, povestea */
.article-read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ec489ab2;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s;
}
.article-read-more:hover { gap: 14px; color: var(--c-purple-soft); }
.article-read-more svg   { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Swipe hint (mobil) */
.swipe-hint { display: none; }


/* ═══════════════════════════════════════════════════════════════
   ──  INDEX.HTML  ──
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   17. HERO BACKGROUND (video fix)
───────────────────────────────────────────────────────── */
#hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transform: translate3d(0, 0, 0); 
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(138deg, rgba(4,0,10,0.60) 0%, rgba(9,0,28,0.40) 45%, rgba(4,0,10,0.70) 100%);
}


/* ─────────────────────────────────────────────────────────────
   18. HERO — LOGO 3D MAGNETIC
───────────────────────────────────────────────────────── */
#hero-logo-container {
  position: fixed;
  top: 50%; left: 50%;
  width: min(320px, 75vw);
  height: min(320px, 75vw);
  transform: translate(-50%, -50%);
  z-index: 2;
  perspective: 1200px;
  pointer-events: auto;
  transform-origin: center center;
  will-change: transform;
  mix-blend-mode: screen;
}
@media (min-width: 768px) {
  #hero-logo-container { width: 440px; height: 440px; }
}

#magnetic-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

#hero-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}


/* ─────────────────────────────────────────────────────────────
   19. HERO WRAPPER & STICKY CONTENT
───────────────────────────────────────────────────────── */
#hero-wrapper { position: relative; height: 100vh; z-index: 3; }

#hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 9vw;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.71rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-purple-glow);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(26px);
  animation: revUp 0.9s cubic-bezier(0.16,1,0.3,1) 2s forwards;
}
.hero-title {
  font-family: 'Roboto', serif;
  font-size: clamp(3.8rem, 10.5vw, 11rem);
  font-weight: 900;
  line-height: 0.87;
  letter-spacing: -0.015em;
  background: linear-gradient(138deg, #ffffff 0%, #f5eeff 55%, #fbcfe8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(34px);
  animation: revUp 1s cubic-bezier(0.16,1,0.3,1) 2.15s forwards;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.85vw, 1.35rem);
  font-weight: 200;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  opacity: 0;
  transform: translateY(22px);
  animation: revUp 0.9s cubic-bezier(0.16,1,0.3,1) 2.3s forwards;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
  opacity: 0;
  transform: translateY(22px);
  animation: revUp 0.9s cubic-bezier(0.16,1,0.3,1) 2.46s forwards;
  pointer-events: all;
}
.hero-cta { padding: 14px 40px; font-size: 0.82rem; letter-spacing: 0.15em; }


/* ─────────────────────────────────────────────────────────────
   20. SCROLL HINT (animat mouse)
───────────────────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: calc(50% - 12px);
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: revUp 0.8s ease 2.85s forwards;
  pointer-events: none;
}
.mouse-icon {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  position: relative;
}
.mouse-wheel {
  width: 4px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.6s cubic-bezier(0.15,0.41,0.69,0.94) infinite;
}
@keyframes mouseScroll {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}


/* ─────────────────────────────────────────────────────────────
   21. VIDEO SECTION — pinned scroll (index)
───────────────────────────────────────────────────────── */
#video-wrapper { position: relative; height: 200vh; z-index: 10; }

#video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow: hidden;
  opacity: 0;
}
#video-sticky::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.vid-label {
  font-size: 0.67rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-purple-glow);
  position: relative; z-index: 1;
}
.vid-frame {
  position: absolute;
  inset: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
}
.vid-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--c-bg) 0%, transparent 15%, transparent 85%, var(--c-bg) 100%);
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────
   22. ABOUT SECTION (index)
───────────────────────────────────────────────────────── */
#about-section {
  position: relative; z-index: 10;
  background: linear-gradient(to bottom, transparent 0%, var(--c-bg) 50px, var(--c-bg) 100%);
  padding: 22vh 9vw 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible !important;
}
#about-section::before {
  content: '';
  position: absolute; top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.about-text {
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-weight: 300;
  color: var(--c-text-dim);
  line-height: 1.95;
  max-width: 720px;
  margin: 0 auto;
}


/* ─────────────────────────────────────────────────────────────
   23. PRESENTATION SECTION (index — teasers YouTube)
───────────────────────────────────────────────────────── */
#presentation-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 60px 9vw;
  overflow: hidden;
}
#presentation-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.pres-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
@media (max-width: 768px) { .pres-inner { grid-template-columns: 1fr; gap: 36px; } }

.pres-text .sec-title { margin-bottom: 24px; }
.pres-text p {
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 300;
  color: var(--c-text-dim);
  line-height: 1.9;
}
.pres-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-bd);
  background: rgba(124,58,237,0.06);
  aspect-ratio: 16/9;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.pres-video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ─────────────────────────────────────────────────────────────
   24. SERVICES SECTION — scroll fade-in / fade-out (index)
───────────────────────────────────────────────────────── */
#services-section {
  position: relative;
  z-index: 10;
  background: rgba(5,5,5,0.7) !important;
  /* Revenim la 300vh pentru a oferi timp tranzițiilor lente să se execute frumos */
  height: 300vh; 
}
#services-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to bottom, var(--c-bg) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
#services-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--c-bg) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

#services-text-container {
  /* Nu mai folosim sticky, JS-ul va bloca ecranul */
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
}

.srv-step {
  position: absolute; 
  top: 50%;
  left: 0;
  width: 100%;
  /* Starea "înainte să apară": stă mai jos pe ecran */
  transform: translateY(20%); 
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 9vw;
  
  opacity: 0;
  filter: blur(15px);
  pointer-events: none;
  /* Tranziție mai lungă și mai fină pentru toate elementele textului */
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Starea "ACTIVĂ": textul este pe centrul ecranului */
.srv-step.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-50%); 
  pointer-events: auto;
}

/* Starea "EXIT": textul a fost activ și acum iese în sus */
.srv-step.exit {
  opacity: 0;
  filter: blur(15px);
  transform: translateY(-120%); 
  pointer-events: none;
}

.srv-step-inner { max-width: 580px; }

/* Adăugăm mici întârzieri la elementele din interior pentru un efect de cascadă (paralllax text) */
.srv-num {
  font-size: 0.67rem; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--c-purple-glow);
  margin-bottom: 16px;
  transition: opacity 0.8s ease;
}
.srv-step.active .srv-num { opacity: 0.5; }

.srv-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900; line-height: 0.95;
  background: linear-gradient(138deg, #ffffff 0%, #f5eeff 55%, #fbcfe8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 20px;
}

.srv-desc {
  font-size: clamp(0.92rem, 1.5vw, 1.1rem);
  font-weight: 300; color: var(--c-text-dim); line-height: 1.85;
}


/* ─────────────────────────────────────────────────────────────
   25. REPERTOIRE SECTION (index)
───────────────────────────────────────────────────────── */
#repertoire-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 60px 9vw;
  overflow: hidden;
  text-align: center;
}
#repertoire-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.rep-pdf-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 44px; color: var(--c-text-dim);
  font-size: 0.88rem; font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid #ec489a34;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
  position: relative; z-index: 1;
}
.rep-pdf-link:hover { color: var(--c-purple-mid); border-color: var(--c-purple-mid); }
.rep-pdf-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }


/* ─────────────────────────────────────────────────────────────
   26. BAND MEMBERS SECTION (index)
───────────────────────────────────────────────────────── */
#members-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 50px 9vw 60px;
  overflow: hidden;
}
#members-section::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1380px;
  margin: 56px auto 0;
}
@media (max-width: 1100px) { .members-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 768px)  { .members-grid { display: none; } }

.member-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px #ec4899;
}
.member-photo {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(168,85,247,0.3);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%) !important;
}
.member-photo img { filter: grayscale(100%); transition: filter 0.4s ease; }
.member-card:hover .member-photo img { filter: grayscale(0%); }

.member-info { padding: 16px 18px 18px; }
.member-name { font-size: 1rem; font-weight: 600; color: var(--c-text); }
.member-role {
  font-size: 0.73rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-purple-glow); margin-top: 4px;
}

/* Carousel mobil — Membri */
.members-mob-carousel { display: none; }


/* ─────────────────────────────────────────────────────────────
   27. REVIEWS SECTION (index)
───────────────────────────────────────────────────────── */
#reviews-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 30px 9vw 60px;
  overflow: hidden;
  text-align: center;
}
#reviews-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* Desktop marquee */
.reviews-carousel {
  position: relative; z-index: 1;
  width: 100vw; max-width: none;
  left: 50%; transform: translateX(-50%);
  margin: 13px 0 -35px;
  overflow: hidden;
}
.rc-btn { display: none; }
.rc-track-wrap { overflow: hidden; width: 100%; will-change: transform; backface-visibility: hidden;}
.rc-track {
  display: flex; gap: 18px;
  width: max-content;
  padding: 35px 0 !important;
  animation: rv-marquee 38s linear infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.rc-track:has(.rv-card:hover) { animation-play-state: paused; }
.rc-track .rv-card { flex: 0 0 340px; }

@keyframes rv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.rv-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  padding: 20px 18px 18px;
  text-align: left;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.rv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(236,72,153,0.25); }

.rv-top { display: flex; align-items: center; gap: 11px; margin-bottom: 10px; }
.rv-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; color: #fff; flex-shrink: 0;
  object-fit: cover;
  background: linear-gradient(135deg, #050505 0%, #ec4899 100%) !important;
}
.rv-name { font-size: 0.86rem; font-weight: 600; color: var(--c-text); }
.rv-date { font-size: 0.68rem; color: var(--c-text-dim); margin-top: 1px; }
.rv-stars { display: flex; gap: 2px; margin-bottom: 9px; }
.rv-stars svg { width: 13px; height: 13px; fill: #f5a623; }
.rv-text { font-size: 0.81rem; font-weight: 300; color: var(--c-text); line-height: 1.72; }

.rv-see-all {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 44px; padding: 13px 34px;
  border-radius: 100px;
  color: var(--c-text); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.27s ease;
  position: relative; z-index: 1;
}
.rv-see-all svg { width: 14px; height: 14px; fill: currentColor; }


/* ═══════════════════════════════════════════════════════════════
   ──  SHARED VIDEO GRID (repertoriu / show sections)  ──
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   28. VERTICAL VIDEO GRID — desktop
───────────────────────────────────────────────────────── */
.vert-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 48px auto 0;
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .vert-video-grid { gap: 14px; } }
@media (max-width: 768px) { .vert-video-grid { display: none; } }

.vert-video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/15;
  height: auto;
  background: #000;
  cursor: pointer;
  border: 1px solid var(--glass-bd);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
/* --- DUPĂ: FIX SAFARI & OPTIMIZARE GPU --- */
.vert-video-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(40%);
  
  /* Forțăm placa video să mențină clipul încărcat vizual */
  -webkit-transform: scale(1) translate3d(0, 0, 0);
  transform: scale(1) translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
  transition: filter 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.vert-video-card:hover video { 
  filter: grayscale(0%) brightness(100%); 
  /* Păstrăm zoom-ul tău, dar adăugăm accelerația 3D */
  -webkit-transform: scale(1.04) translate3d(0, 0, 0);
  transform: scale(1.04) translate3d(0, 0, 0); 
}

.vert-video-overlay {
  position: absolute; inset: 0; z-index: 3 !important;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 40%);
  pointer-events: none;
}
.vert-video-title {
  font-size: 1.8rem; font-weight: 300; color: #fff;
  text-transform: uppercase; letter-spacing: 0.15em;
  text-align: center; padding: 0 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}
.vert-video-card:hover .vert-video-overlay { opacity: 0; }


/* ─────────────────────────────────────────────────────────────
   29. VIDEO POSTER (overlay pe video înainte de play)
───────────────────────────────────────────────────────── */
.video-poster {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.vert-video-card:hover .video-poster { opacity: 0; }
.rep-mob-card.playing .video-poster  { opacity: 0; }

/* overlay-ul stă mereu deasupra posterului */
.rep-mob-overlay { z-index: 3 !important; }


/* ─────────────────────────────────────────────────────────────
   30. MOBILE CAROUSEL — Repertoriu (.rep-mob-*)
───────────────────────────────────────────────────────── */
.rep-mob-carousel { display: none; }


/* ═══════════════════════════════════════════════════════════════
   ──  PAGINI SECUNDARE (faq / blog / landing / articole)  ──
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   31. PAGE HEADER — header comun pentru paginile secundare
───────────────────────────────────────────────────────── */
#page-header {
  position: relative; z-index: 10;
  padding: 160px 9vw 80px;
  text-align: center;
  overflow: hidden;
}
#page-header::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
#page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 9vw; right: 9vw; height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.18), transparent);
}

/* Pagina povestea.html are padding superior mai mic */
#page-header.story-header { padding-top: 140px; }

.page-eyebrow {
  font-size: 0.67rem; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--c-purple-glow);
  margin-bottom: 16px;
  opacity: 0; transform: translateY(24px);
  animation: revUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
.page-title {
  font-family: 'Roboto', serif;
  font-weight: 900; line-height: 1.05;
  background: linear-gradient(138deg, #ffffff 0%, #f5eeff 55%, #fbcfe8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(24px);
  animation: revUp 1s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
  /* Dimensiunea variază per pagină prin inline style / clasă */
  font-size: clamp(1.5rem, 3.5vw, 3rem);
}
.page-subtitle {
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
  font-weight: 300; color: var(--c-text-dim);
  opacity: 0; transform: translateY(24px);
  animation: revUp 0.8s cubic-bezier(0.16,1,0.3,1) 1s forwards;
  max-width: 640px; margin: 0 auto; line-height: 1.8;
}


/* ─────────────────────────────────────────────────────────────
   32. ARTICLE META BAR (articol1, articol2, povestea)
───────────────────────────────────────────────────────── */
.article-meta-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 28px;
  opacity: 0; transform: translateY(24px);
  animation: revUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}
.article-category {
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--c-purple-glow);
  background: rgba(236,72,153,0.1);
  border: 1px solid rgba(236,72,153,0.22);
  border-radius: 100px; padding: 4px 12px;
}
.article-date { font-size: 0.68rem; color: var(--c-text-dim); letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .article-meta-bar { flex-direction: column; gap: 12px; }
  .article-date { font-size: 0.75rem; }
}


/* ─────────────────────────────────────────────────────────────
   33. FAQ SECTION
───────────────────────────────────────────────────────── */
#faq-section {
  position: relative; z-index: 10;
  padding: 80px 9vw 120px;
  overflow: hidden;
}
#faq-section::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 1;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.open { border-color: #ec4899; box-shadow: 0 8px 32px #551a37; }

.faq-header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer; user-select: none;
  transition: background 0.2s ease;
}
.faq-header:hover, .faq-item.open .faq-header { background: rgba(102,102,102,0.1); }

.faq-num {
  font-size: 0.62rem; letter-spacing: 0.22em;
  color: var(--c-purple-glow); font-weight: 400;
  flex-shrink: 0; min-width: 24px;
}
.faq-question {
  flex: 1;
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 500; color: var(--c-text); line-height: 1.45;
}

.faq-arrow {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(25,25,25,0.72);
  border: 1px solid rgba(174,174,174,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), background 0.2s ease, border-color 0.2s ease;
}
.faq-arrow svg { width: 14px; height: 14px; fill: var(--c-purple-mid); transition: fill 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: #ec489a1d; border-color: #ec4899; }
.faq-item.open .faq-arrow svg { fill: var(--c-purple-soft); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-content {
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(192,132,252,0.1);
}
.faq-answer-content p {
  font-size: clamp(0.88rem, 1.4vw, 0.97rem);
  font-weight: 300; color: var(--c-text-dim); line-height: 1.88;
}
.faq-answer-content strong { color: var(--c-purple-soft); font-weight: 500; }

.faq-cta { text-align: center; margin-top: 64px; position: relative; z-index: 1; }
.faq-cta p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300; color: var(--c-text-dim); margin-bottom: 24px;
}
.faq-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 40px; font-size: 0.82rem; letter-spacing: 0.14em;
  border-radius: 100px; color: var(--c-text);
  text-decoration: none; font-family: 'Roboto', sans-serif;
  font-weight: 500; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-cta-btn svg { width: 16px; height: 16px; fill: currentColor; }


/* ─────────────────────────────────────────────────────────────
   34. BLOG SECTION
───────────────────────────────────────────────────────── */
#blog-section {
  position: relative; z-index: 10;
  padding: 80px 9vw 100px;
}

.article {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(192,132,252,0.1);
}
.article:last-child { border-bottom: none; margin-bottom: 0; }

.article-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}

.article-title-link {
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: block;
}
.article-title-link:hover { opacity: 0.75; }

.article-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 48px;
  background: linear-gradient(138deg, #ffffff 0%, #f5eeff 55%, #fbcfe8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Zig-zag rows */
.article-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.article-row:last-child { margin-bottom: 0; }
.article-row.reverse .article-img-wrap { order: 2; }
.article-row.reverse .article-text-wrap { order: 1; }

.article-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-bd);
  background: rgba(124,58,237,0.08);
  aspect-ratio: 4/3;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.article-img-wrap:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(124,58,237,0.22); }
.article-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.article-img-wrap:hover img { transform: scale(1.04); }

.article-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(236,72,153,0.08) 100%);
  color: rgba(168,85,247,0.35);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.article-img-placeholder svg { width: 36px; height: 36px; fill: rgba(168,85,247,0.28); }

.article-text-wrap { display: flex; flex-direction: column; gap: 16px; }
.article-lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500; color: var(--c-text); line-height: 1.65;
}
.article-body {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  font-weight: 300; color: var(--c-text-dim); line-height: 1.9;
}

.article-full-text { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

@media (max-width: 768px) {
  .article-row { grid-template-columns: 1fr; gap: 24px; }
  .article-row.reverse .article-img-wrap, .article-row.reverse .article-text-wrap { order: 0; }
}


/* ─────────────────────────────────────────────────────────────
   35. ARTICLE PAGES — povestea.html, articol1.html, articol2.html
───────────────────────────────────────────────────────── */
#article-section { position: relative; z-index: 10; padding: 60px 9vw 80px; }
.article-container { max-width: 820px; margin: 0 auto; }

.article-hero-img {
  width: 100%; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--glass-bd);
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, rgba(236,72,153,0.12) 0%, rgba(80,80,80,0.15) 100%);
  margin-bottom: 48px;
  display: flex; align-items: center; justify-content: center;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-mid-img {
  width: 100%; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--glass-bd);
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, rgba(80,80,80,0.15) 0%, rgba(236,72,153,0.08) 100%);
  margin: 48px auto;
  display: flex; align-items: center; justify-content: center;
}
.article-mid-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: rgba(236,72,153,0.4);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.img-placeholder svg { width: 48px; height: 48px; fill: rgba(236,72,153,0.3); }

.article-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500; color: var(--c-text); line-height: 1.7; margin-bottom: 28px;
}
.article-body {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  font-weight: 300; color: var(--c-text-dim); line-height: 1.95; margin-bottom: 24px;
}
.article-body strong { color: var(--c-text); font-weight: 500; }

.article-h2 {
  font-family: 'Roboto', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin: 48px 0 18px;
  background: linear-gradient(138deg, #ffffff 0%, #fbcfe8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.article-tip {
  background: rgba(236,72,153,0.07);
  border-left: 3px solid var(--c-purple-glow);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px; margin: 28px 0;
}
.article-tip p     { font-size: 0.92rem; font-weight: 300; color: var(--c-text-dim); line-height: 1.8; }
.article-tip strong { color: var(--c-purple-glow); font-weight: 600; }

.article-checklist {
  list-style: none; padding: 0; margin: 20px 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.article-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; font-weight: 300; color: var(--c-text-dim); line-height: 1.7;
}
.article-checklist li::before { content: '✦'; color: var(--c-purple-glow); flex-shrink: 0; margin-top: 2px; font-size: 0.75rem; }

.article-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.2), transparent);
  margin: 40px 0;
}

.article-cta-box {
  background: var(--glass-bg);
  border: 1px solid rgba(236,72,153,0.2);
  border-radius: 20px;
  padding: 40px 36px; text-align: center; margin: 48px 0;
}
.article-cta-box h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; color: var(--c-text); margin-bottom: 14px; }
.article-cta-box p  { font-size: 0.95rem; font-weight: 300; color: var(--c-text-dim); line-height: 1.75; margin-bottom: 24px; }
.article-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 34px; border-radius: 100px;
  color: var(--c-text); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  transition: all 0.27s ease;
}
.article-cta-btn:hover {
  background: linear-gradient(135deg, #050505 0%, #ec4899 100%) !important;
  border-color: #ec4899 !important;
  box-shadow: 0 8px 24px rgba(236,72,153,0.3) !important;
}


/* ─────────────────────────────────────────────────────────────
   36. INTRO SECTION — corporate.html, wedding.html, lansari.html
───────────────────────────────────────────────────────── */
#intro-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 80px 9vw;
  text-align: center; overflow: hidden;
}
#intro-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.intro-text {
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-weight: 300; color: var(--c-text-dim); line-height: 1.95;
  max-width: 720px; margin: 0 auto 44px;
}
.intro-features {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap; margin-top: 48px;
}
.intro-feature { text-align: center; }
.intro-feature-num {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900;
  background: linear-gradient(138deg, #ffffff 0%, #fbcfe8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1;
}
.intro-feature-label {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-text-dim);
  margin-top: 6px; display: block;
}


/* ─────────────────────────────────────────────────────────────
   37. SHOW SECTION — corporate.html, wedding.html, lansari.html
───────────────────────────────────────────────────────── */
#show-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 60px 9vw;
  overflow: hidden; text-align: center;
}
#show-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────
   38. BRANDS SECTION — corporate.html
───────────────────────────────────────────────────────── */
#brands-section {
  position: relative; z-index: 10;
  background: #000;
  padding: 60px 9vw;
  overflow: hidden;
}
#brands-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.15), transparent);
}
#brands-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.15), transparent);
}
.brands-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }

/* Containerul devine o "scenă" pe care se suprapun logo-urile */
.brands-static-container {
  position: relative;
  width: 100%;
  height: 140px; /* Înălțime mărită considerabil pentru logo-uri */
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toate logo-urile stau ascunse unele peste altele în centrul scenei */
.brand-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  /* Efectul "rapid și frumos" de Fade In / Fade Out (0.6 secunde) */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Clasa pe care o primește logo-ul vizibil */
.brand-item.active {
  opacity: 1;
  visibility: visible;
}

/* Imaginile vor fi mari și colorate implicit */
.brand-item img {
  height: 100%; /* Ocupă toți cei 140px */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* --- Specific Logo Sizing Fixes --- */
.brand-item img.img-bekaert {
  height: 60%; /* Reduces height relative to the 140px container */
}

.brand-item img.img-massmutual {
  height: 65%; /* Adjust percentage as needed */
}

.brand-item img.img-fortuna {
  height: 70%; /* Adjust percentage as needed */
}

/* Ajustare pentru mobil (le lăsăm destul de mari și aici) */
@media (max-width: 768px) {
  .brands-static-container { height: 80px; }
  
  /* Reset the custom heights on mobile so they don't get too small, 
     or adjust them specifically for mobile if needed */
  .brand-item img.img-bekaert,
  .brand-item img.img-massmutual,
  .brand-item img.img-fortuna {
    height: 85%; 
  }
}


/* ─────────────────────────────────────────────────────────────
   39. RELEASES SECTION — lansari.html
───────────────────────────────────────────────────────── */
.releases-container {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 9vw;
  display: flex; flex-direction: column; gap: 0;
}
.release-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}
.release-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.3), transparent);
}
.release-item.reverse .release-img-wrap { order: 2; }
.release-item.reverse .release-text-wrap { order: 1; }

.release-img-wrap {
  width: 100%; border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  position: relative;
}
.release-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

/* Stiluri pentru videoclipurile YouTube (Iframe) în secțiunea de lansări */
.release-img-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  border: 0; 
  display: block;
  z-index: 1;
}
.release-item:hover .release-img-wrap img { transform: scale(1.04); }

.release-text-wrap { display: flex; flex-direction: column; gap: 16px; }
.release-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1.2rem, 2.7vw, 2rem);
  font-weight: 700; color: var(--c-text); line-height: 1.15;
}
.release-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300; color: var(--c-text-dim); line-height: 1.8;
}
.release-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-purple-glow); text-decoration: none;
  transition: gap 0.25s ease, color 0.2s;
  align-self: flex-start;
}
.release-link:hover { gap: 14px; color: var(--c-purple-soft); }
.release-link svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

@media (max-width: 768px) {
  .releases-container { gap: 60px; }
  .release-item { grid-template-columns: 1fr; gap: 24px; }
  .release-item.reverse .release-img-wrap,
  .release-item.reverse .release-text-wrap { order: 0; }
}


/* ═══════════════════════════════════════════════════════════════
   ──  CONTACT SECTION (comun tuturor paginilor)  ──
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   40. CONTACT SECTION
───────────────────────────────────────────────────────── */
#contact-section {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 80px 9vw;
  overflow: hidden; text-align: center;
}
/* Aliniere formular stânga, info centrat */
#contact-section .cf,
#contact-section .cf-label,
#contact-section .cf-field { text-align: left; }
#contact-section .ci        { text-align: center; }
#contact-section .sf-a      { justify-content: center; }

#contact-section::before {
  content: '';
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cg {
  display: flex; flex-direction: column;
  align-items: center; gap: 64px;
  max-width: 760px; margin: 0 auto;
}

/* Formular */
.cf { width: 100%; display: flex; flex-direction: column; gap: 18px; }
.cf-label {
  display: block;
  font-size: 0.67rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-purple-soft);
  font-weight: 400; margin-bottom: 7px;
}
.cf-field {
  width: 100%; border-radius: 12px; padding: 13px 18px;
  color: var(--c-text); font-family: 'Roboto', sans-serif;
  font-size: 0.88rem; font-weight: 300; outline: none;
  background-color: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}
.cf-field::placeholder { color: rgba(240,232,255,0.24); }
.cf-field:focus {
  background-color: rgba(255,255,255,0.07) !important;
  border-color: #ec4899 !important;
  box-shadow: 0 0 0 3px rgba(236,72,153,0.2) !important;
}
textarea.cf-field { resize: vertical; min-height: 132px; }

.cf-submit { align-self: center; padding: 14px 40px; font-size: 0.82rem; letter-spacing: 0.14em; }

/* Select dropdown arrow */
select.cf-field {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23ec4899'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
select.cf-field option { background: #000000ed; color: #f0e8ff; }
input[type="date"].cf-field::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(3) hue-rotate(240deg);
  cursor: pointer;
}

/* Info panel dreapta */
.ci {
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; position: relative;
}
.ci::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../photos/logos/logomarion.png');
  background-position: center; background-repeat: no-repeat; background-size: contain;
  opacity: 0.05; pointer-events: none; z-index: 0;
}
.ci > div { position: relative; z-index: 1; }
@media (max-width: 780px) { .ci { grid-template-columns: 1fr; gap: 36px; } }

.ci-body { font-size: 0.95rem; font-weight: 300; color: var(--c-text-dim); line-height: 1.88; }

/* Social links (info panel) */
.sf { display: flex; flex-direction: column; gap: 9px; }
.sf-a {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 15px; border-radius: 12px;
  border: 1px solid transparent;
  color: var(--c-text-dim); font-size: 0.84rem; font-weight: 300;
  text-decoration: none;
  transition: all 0.27s cubic-bezier(0.34,1.56,0.64,1);
}
.sf-a svg { width: 18px; height: 18px; fill: var(--c-purple-glow); flex-shrink: 0; }
.sf-a:hover {
  color: var(--c-text);
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(236,72,153,0.8) 100%) !important;
  border-color: rgba(236,72,153,0.4) !important;
  transform: translateX(6px);
}

/* Link-ul pentru Politica de confidențialitate de sub formular */
.form-disclaimer-link {
  color: var(--c-purple-glow);
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 72, 153, 0.3);
  transition: border-color 0.2s ease;
}

.form-disclaimer-link:hover {
  border-color: var(--c-purple-glow);
}


/* ═══════════════════════════════════════════════════════════════
   ──  FOOTER  ──
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   41. FOOTER
───────────────────────────────────────────────────────── */
#site-footer {
  position: relative; z-index: 10;
  background: var(--c-bg);
  padding: 22px 9vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.03) !important;
}
.f-left { display: flex; flex-direction: column; gap: 3px; }
.f-copy  { font-size: 0.69rem; color: rgba(240,232,255,0.28); letter-spacing: 0.08em; }
.f-soc   { display: flex; gap: 8px; align-items: center; }
.f-soc .gbtn-icon     { width: 30px; height: 30px; }
.f-soc .gbtn-icon svg { width: 12px; height: 12px; }

.f-credit {
  font-size: 0.65rem;
  color: rgba(240,232,255,0.22);
  letter-spacing: 0.07em;
  font-family: 'Roboto', sans-serif;
}
.f-credit a {
  color: rgba(240,232,255,0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,132,252,0.18);
  transition: color 0.2s, border-color 0.2s;
}
.f-credit a:hover { color: #ec4899; border-color: #ec4899; }


/* ═══════════════════════════════════════════════════════════════
   ──  SUPRASCRIERI TEMĂ (Alb/Negru + Roz)  ──
   Aceste reguli suprascriu culorile mov implicite din
   componente, aplicând paleta finală Negru + Roz.
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   42. GLOW-URI SECȚIUNI — toate transformate în alb subtil
───────────────────────────────────────────────────────── */
#page-header::before,
#about-section::before,
#members-section::before,
#presentation-section::before,
#repertoire-section::before,
#reviews-section::before,
#contact-section::before,
#faq-section::before,
#video-sticky::before {
  top: -250px !important;
  height: 500px !important;
  width: 100vw !important;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 65%) !important;
  z-index: -1 !important;
}


/* ─────────────────────────────────────────────────────────────
   43. BUTOANE — stare normală (gri neutru)
───────────────────────────────────────────────────────── */
.gbtn, .cf-submit, .faq-cta-btn, .rv-see-all, .hero-cta {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}

/* Butonul activ din meniu (pagina curentă) */
.gbtn.active-page {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.3) !important;
  box-shadow: none !important;
}

/* Butoane iconițe carusel, play video */
.rc-btn, .pres-play-circle {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
}


/* ─────────────────────────────────────────────────────────────
   44. BUTOANE — hover (Negru → Roz)
───────────────────────────────────────────────────────── */
.gbtn:hover, .cf-submit:hover, .faq-cta-btn:hover, .rv-see-all:hover {
  background: linear-gradient(135deg, #050505 0%, #ec4899 100%) !important;
  border-color: #ec4899 !important;
  box-shadow: 0 8px 24px rgba(236,72,153,0.3) !important;
  color: #ffffff !important;
  transform: scale(1.05) translateY(-2px);
}

/* Butoane iconițe rotunde — hover separat (fără gradient, cu glow roz) */
.gbtn-icon:hover {
  background: rgba(236,72,153,0.18) !important;
  border-color: rgba(236,72,153,0.45) !important;
  box-shadow: 0 0 14px rgba(236,72,153,0.4) !important;
  transform: scale(1.1) translateY(-1px) !important;
}


/* ─────────────────────────────────────────────────────────────
   45. AVATAR RECENZII — gradient roz
───────────────────────────────────────────────────────── */
.rv-avatar { background: linear-gradient(135deg, #050505 0%, #ec4899 100%) !important; }


/* ─────────────────────────────────────────────────────────────
   46. TRANZIȚII FINE ÎNTRE SECȚIUNI — overflow vizibil
───────────────────────────────────────────────────────── */
#about-section, #members-section, #presentation-section,
#repertoire-section, #reviews-section, #contact-section,
#faq-section {
  overflow: visible !important;
}


/* ═══════════════════════════════════════════════════════════════
   ──  RESPONSIVE — MOBILE & TABLET  ──
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   47. SUB 1350px — header wrap pe 2 rânduri dacă e prea lat
───────────────────────────────────────────────────────── */
@media (min-width: 1051px) and (max-width: 1350px) {
  #site-header {
    flex-wrap: wrap !important;
    white-space: normal !important;
    max-width: calc(100vw - 450px) !important;
    gap: 8px !important;
  }
  .hdr-sep { display: none !important; }
}


/* ─────────────────────────────────────────────────────────────
   48. SUB 1050px — afișăm hamburger, ascundem header desktop
───────────────────────────────────────────────────────── */
@media (max-width: 1050px) {
  #site-header    { display: none !important; }
  #hamburger-btn  { display: flex !important; }
  #lang-container { display: none !important; }

  #site-logo      { left: 18px !important; top: 18px !important; }
  #site-logo img  { width: 150px !important; }
}


/* ─────────────────────────────────────────────────────────────
   49. SUB 768px — ajustări mobile generale
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Logo */
  #site-logo     { left: 18px !important; top: max(18px, env(safe-area-inset-top)) !important; }
  #site-logo img { width: 160px !important; }
  #lang-container { display: none !important; }

  /* Mobile menu */
  #mobile-menu {
    gap: 29px !important;
    padding: 100px 20px 40px !important;
    justify-content: center !important;
  }
  #mobile-menu.open { display: flex !important; }

  .mob-nav-link {
    font-family: 'Roboto', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--c-text) !important;
    text-decoration: none !important;
    -webkit-font-smoothing: antialiased !important;
  }

  #mobile-menu .gbtn-icon     { width: 40px !important; height: 40px !important; }
  #mobile-menu .gbtn-icon svg { width: 18px !important; height: 18px !important; }
  .mob-soc-row { gap: 16px !important; justify-content: center !important; }

  #lang-btn-mobile {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-top: 5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
  }

  /* Membri — carousel mobil */
  #members-section {
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .members-mob-carousel {
    display: block;
    overflow: visible;
    margin: 32px 0 0;
    width: 100vw;
    position: relative;
    left: 50%; transform: translateX(-50%);
  }
  .members-mob-wrap {
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 55px 10vw !important;
    margin: -30px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .members-mob-wrap::-webkit-scrollbar { display: none; }
  .members-mob-wrap:active { cursor: grabbing; }
  .members-mob-track {
    display: flex; gap: 14px;
    width: max-content;
    transform: none !important; /* CSS nativ, fără JS */
  }

  /* Carduri inactve */
  .members-mob-track .member-card {
    flex: 0 0 80vw;
    scroll-snap-align: center; /* FIXEAZĂ PE CENTRU */
    opacity: 0.4;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s; /* adaugă box-shadow aici */
  }
  /* Anulăm efectul hover desktop pe carduri inactive mobil */
  .members-mob-track .member-card:hover {
    box-shadow: none;
    transform: scale(0.95);
  }
  .members-mob-track .member-card:hover .member-photo img { filter: grayscale(100%); }
  /* Card activ */
  .members-mob-track .member-card.mob-active {
    opacity: 1;
    transform: scale(1) !important;
    box-shadow: 0 8px 24px rgba(236,72,153,0.4) !important;
  }
  .members-mob-track .member-card.mob-active .member-photo img { filter: grayscale(0%) !important; }
  .members-mob-track .member-photo { aspect-ratio: 3/4; }

  /* Recenzii — carousel mobil nativ (Scroll Snap) */
  #reviews-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .reviews-carousel {
    margin: 32px 0 0;
    width: 100vw; 
    left: 50%; transform: translateX(-50%);
  }
  .rv-mob-wrap {
    overflow-x: auto; /* Permite scroll orizontal nativ */
    overflow-y: hidden;
    scroll-snap-type: x mandatory; /* Snap nativ */
    scroll-behavior: smooth;
    padding: 55px 10vw !important;
    margin: -30px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Ascunde scrollbar */
  }
  .rv-mob-wrap::-webkit-scrollbar { display: none; }
  
  .rc-track-wrap { overflow: visible !important; width: auto; }
  .rc-track {
    animation: none !important;
    width: max-content;
    padding: 0 !important;
    display: flex; gap: 18px; /* Spațiu între carduri */
    transform: none !important; /* JS nu mai mișcă track-ul pe mobil */
  }
  .rc-track .rv-card {
    flex: 0 0 80vw;
    max-height: none; overflow: visible;
    scroll-snap-align: center; /* Fixează fiecare card pe centru */
    opacity: 0.4;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  
  /* Culoarea se activează nativ pe cardul central */
  .rc-track .rv-card.rv-active {
    opacity: 1; transform: scale(1);
    box-shadow: 0 8px 24px rgba(236,72,153,0.4);
  }
  .rv-card .rv-text { max-height: none; overflow: visible; }

  /* Repertoriu — carousel mobil (index) */
  #repertoire-section {
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .rep-mob-carousel {
    display: block;
    overflow: visible;
    margin: 32px 0 0;
    position: relative;
    width: 100vw;
    left: 50%; transform: translateX(-50%);
  }
  .rep-mob-wrap {
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 40px 10vw; /* Mai mult spațiu */
    margin: -40px 0;
    width: 100%;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    will-change: transform;
  }
  .rep-mob-wrap::-webkit-scrollbar { display: none; }
  .rep-mob-wrap:active { cursor: grabbing; }
  .rep-mob-track {
    display: flex; gap: 14px;
    width: max-content;
    transform: none !important; /* CSS nativ, fără JS */
    will-change: transform;
  }
  .rep-mob-card {
    flex: 0 0 80vw;
    position: relative;
    border-radius: 12px; overflow: hidden;
    height: 65vh;
    scroll-snap-align: center;
    background: #000; cursor: pointer;
    border: 1px solid var(--glass-bd);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    opacity: 0.4; transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
    will-change: opacity, transform;
  }
  .rep-mob-card.mob-active { opacity: 1; transform: scale(1); }
  /* --- DUPĂ: FIX SAFARI MOBIL & OPTIMIZARE GPU --- */
.rep-mob-card video {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(40%);
  
  /* Aceleași comenzi pentru performanță fluidă */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
  transition: filter 0.5s ease;
}
  .rep-mob-card.playing video { filter: grayscale(0%) brightness(100%); }

  .rep-mob-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    padding-bottom: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 45%);
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .rep-mob-card.playing .rep-mob-hint { opacity: 0; }

  .rep-mob-title {
    font-size: 1.5rem; font-weight: 300; color: #fff;
    text-transform: uppercase; letter-spacing: 0.15em;
    text-align: center; padding: 0 14px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
    margin-bottom: 10px;
  }
  .rep-mob-hint {
    font-size: 0.7rem; font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em; text-transform: uppercase;
    background: rgba(0,0,0,0.4); padding: 5px 13px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.18);
  }

  /* Show section (corporate / wedding / lansari) — carousel */
  #show-section {
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Swipe hint */
  .swipe-hint {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
    font-size: 0.75rem;
    color: var(--c-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .swipe-hint svg {
    width: 14px; height: 14px; fill: currentColor;
    animation: swipeLeft 1.5s infinite ease-in-out;
  }
  @keyframes swipeLeft {
    0%,100% { transform: translateX(0); opacity: 0.8; }
    50%      { transform: translateX(-6px); opacity: 1; }
  }
}


/* ─────────────────────────────────────────────────────────────
   50. DESKTOP FIX — Recenzii (tăiere umbră sus/jos)
───────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  .rc-track { padding: 35px 0 !important; }
  .reviews-carousel { margin-top: 13px !important; margin-bottom: -35px !important; }
}

/* ─────────────────────────────────────────────────────────────
   51. LEGAL LINKS (FOOTER - CENTRATE SUB STICKERE)
───────────────────────────────────────────────────────── */
.f-legal-link-item {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: rgba(240,232,255,0.3);
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: center;
  max-width: 140px; /* Previne întinderea exagerată a textului */
}
.f-legal-link-item:hover {
  color: var(--c-text);
}

@media (max-width: 768px) {
  .f-right { justify-content: center !important; width: 100%; margin-top: 14px; }
}

/* ─────────────────────────────────────────────────────────────
   52. COOKIE CONSENT BANNER (STÂNGA, BUTON JOS)
───────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px; /* L-am ancorat din nou în stânga */
  width: calc(100% - 48px);
  max-width: 580px; /* Lățime compactă și elegantă */
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  padding: 20px 24px;
  
  display: flex;
  flex-direction: column; /* Forțează butonul pe rândul următor */
  align-items: flex-start;
  gap: 20px; /* Spațiul dintre text și buton */
  
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
  
  /* Animația de intrare de jos în sus */
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--c-text-dim);
}

.cookie-content a {
  color: var(--c-purple-glow);
  text-decoration: none;
  border-bottom: 1px solid rgba(236,72,153,0.3);
  transition: border-color 0.2s;
}

.cookie-content a:hover {
  border-color: var(--c-purple-glow);
}

.cookie-banner .gbtn {
  padding: 10px 32px !important;
  font-size: 0.75rem !important;
  margin: 0 !important;
  align-self: flex-start; /* Aliniază butonul în stânga, sub text */
}

/* Fallback pentru mobil: spațiere corectă pe ecrane mici */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    padding: 16px 20px;
  }
  .cookie-banner .gbtn {
    width: 100% !important; /* Buton pe toată lățimea pe mobil */
  }
}

/* ─────────────────────────────────────────────────────────────
   53. AJUSTĂRI FOOTER MOBIL
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Centrarea textelor din partea stângă a footer-ului pe mobil */
  .f-left {
    align-items: center;
    text-align: center;
    max-width: 100% !important; /* Îi permitem să se întindă pe tot ecranul */
    width: 100%;
    margin-bottom: 16px; /* Adăugăm puțin spațiu sub ele */
  }
}

/* ==========================================================================
   54. CSS EXTRAS DIN INDEX.HTML (CURĂȚARE INLINE STYLES)
========================================================================== */

/* --- Utilitare Globale --- */
.noscript-banner { background-color: #ec4899; color: white; text-align: center; padding: 20px; position: fixed; top: 0; left: 0; width: 100%; z-index: 999999; }
.z-relative { position: relative; z-index: 1; }
.txt-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-18 { margin-bottom: 18px; }
.mb-24 { margin-bottom: 24px; }
.mt-25 { margin-top: 25px; }
.txt-purple { color: var(--c-purple-glow); }
.svg-margin-right { margin-right: 6px; }
.svg-margin-right-lg { margin-right: 10px; }

/* --- Secțiunea About (Trust Badge / Google Reviews) --- */
.trust-wrapper { display: flex; flex-direction: column; align-items: center; gap: 16px; margin: 60px 0; }
.trust-stars { display: flex; gap: 8px; }
.trust-stars svg { width: 28px; height: 28px; fill: #f5a623; }
.trust-score { font-family: 'Roboto', serif; font-size: 1.8rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.trust-score-dim { font-size: 1.2rem; font-weight: 300; color: var(--c-text-dim); }
.trust-score-dot { color: #ffffff; font-size: 1.2rem; margin: 0 6px; }
.trust-score-text { font-size: 1rem; font-weight: 300; color: var(--c-text-dim); }
.trust-divider { width: min(300px, 80%); height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0; }
.trust-avatars-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.trust-avatars-group { display: flex; position: relative; }
.trust-avatar { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--c-bg); object-fit: cover; position: relative; }
.trust-avatar.z5 { z-index: 5; }
.trust-avatar.z4 { z-index: 4; margin-left: -15px; }
.trust-avatar.z3 { z-index: 3; margin-left: -15px; }
.trust-avatar.z2 { z-index: 2; margin-left: -15px; }
.trust-avatar.z1 { z-index: 1; margin-left: -15px; }
.trust-count-wrap { display: flex; align-items: center; gap: 10px; text-align: left; }
.trust-count-num { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.trust-count-lbl { font-size: 0.75rem; color: var(--c-text-dim); }
.pointer-all { pointer-events: all; }

/* --- Secțiunea de Prezentare (Video iframe) --- */
#presentation-section { padding: 10px 9vw 60px; overflow: hidden; }
.pres-container { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pres-iframe-wrap { width: 100%; padding-bottom: 56.25%; position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-bd); background: rgba(124,58,237,0.06); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.pres-iframe-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* --- Pozele Membrilor Trupei --- */
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.obj-right { object-position: right; }
.obj-right-center { object-position: right center; }
.obj-top-center { object-position: top center; }
.obj-top-right { object-position: top right; }

/* --- Secțiunea Contact --- */
.contact-btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; justify-content: center; }
.contact-disclaimer-wrap { text-align: center; margin-top: 18px; }
.contact-disclaimer-txt { font-size: 0.8rem; color: rgba(240,232,255,0.4); line-height: 1.5; font-weight: 300; }
.contact-direct-wrap { text-align: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; }
.contact-direct-txt { font-size: 0.95rem; color: var(--c-text-dim); margin-bottom: 16px; font-weight: 300; }
.btn-phone { font-size: 1.15rem !important; padding: 16px 42px !important; font-weight: 500 !important; letter-spacing: 0.08em !important; margin-bottom: 36px !important; }
.btn-email { font-size: 1.05rem !important; padding: 14px 36px !important; font-weight: 400 !important; letter-spacing: 0.08em !important; background: rgba(255,255,255,0.02) !important; }

/* --- Extra Utilitare (Corporate & Wedding) --- */
.mb-32 { margin-bottom: 32px; }
.mt-48 { margin-top: 48px; }
.brands-title { 
  font-family: 'Roboto', serif; 
  font-size: clamp(1.6rem, 3.5vw, 3rem); 
  font-weight: 700; 
  line-height: 1; 
  color: var(--c-text); 
  text-align: center; 
}

/* --- Mărire texte secțiunea Servicii (doar pe mobil) --- */
@media (max-width: 768px) {
  .srv-num {
    font-size: 0.8rem; /* mărit de la 0.67rem */
  }
  .srv-title {
    font-size: 2.3rem; /* mărit de la 1.8rem */
    line-height: 1.05; /* un pic mai aerisit pentru citire ușoară */
  }
  .srv-desc {
    font-size: 1.1rem; /* mărit de la 0.92rem */
    line-height: 1.7;
  }
}

/* --- FIX: Margine dreapta tăiată la caruselele de pe mobil --- */
@media (max-width: 768px) {
  .rc-track::after,
  .members-mob-track::after,
  .rep-mob-track::after {
    content: '';
    display: block;
    flex: 0 0 1px;
    margin-right: 10vw; /* Forțează spațiul gol la final */
  }
}

/* ==========================================================================
   55. CORPORATE SECTION DETAILS (Process & Checklist)
========================================================================== */
.corporate-details-wrap {
  margin-top: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.corp-section-block {
  padding-bottom: 20px;
  margin-bottom: 80px;
}
.corp-section-block.pb-0 {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Grid-ul cu "Ce ne diferențiază" */
.intro-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; 
}

.intro-checklist-title {
  font-family: 'Roboto', serif;
  font-size: clamp(1rem, 1.8vw, 2.3rem); /* Aceeași mărime ca la sec-title */
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 36px; /* Spațiu generos sub titlu */
  margin-top: 86px; /* Spațiu generos sub titlu */
}

.intro-checklist-title .check {
  color: var(--c-purple-glow);
}

.intro-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 20px; 
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  padding: 36px 32px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.intro-checklist li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(236,72,153,0.15);
  border-color: rgba(236,72,153,0.3);
}

.ic-icon {
  color: var(--c-purple-glow);
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.ic-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text);
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.4;
}

.ic-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--c-text-dim);
  line-height: 1.85; 
  margin: 0;
}

/* Process Grid - "Cum arată colaborarea" */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 carduri late în loc de 4 înguste */
  gap: 24px;
}

.process-step {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(236,72,153,0.15);
}

.process-num {
  font-family: 'Roboto', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(236,72,153,0.2);
  line-height: 1;
  margin-bottom: 24px;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 14px;
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-text-dim);
  line-height: 1.8;
}

/* Ajustări pentru Mobil */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr; /* Trece direct pe 1 coloană pt a nu le înghesui */
  }
}

@media (max-width: 768px) {
  .corporate-details-wrap { margin-top: 60px; }
  .corp-section-block { margin-bottom: 60px; }
  .intro-checklist { grid-template-columns: 1fr; gap: 20px; }
  .intro-checklist li { padding: 28px 20px; }
  .process-step { padding: 32px 24px; }
}

/* --- Gradient Dividers --- */
#page-header::after,
#show-section::after {
  content: '';
  position: absolute; 
  bottom: 0; 
  left: 9vw; 
  right: 9vw; 
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(236,72,153,0.35), transparent); /* Stronger pink gradient */
  z-index: 5;
}