/* ══════════════════════════════════════════════════════════════
   GataDeDrum — Premium Serif Theme
   Include DUPĂ css/style.css pentru a activa tema premium.
   Fiecare pagină adaugă:
     <link rel="stylesheet" href="../css/serif-theme.css">
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variabile CSS (override palette premium) ────────────────── */
:root {
  /* Navy palette */
  --navy:        #0D1B2A;
  --navy-hover:  #070F17;
  --navy-deep:   #070F17;
  --navy-mid:    #1B2D3E;

  /* Gold palette */
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dim:    rgba(201, 168, 76, 0.35);

  /* Cream palette */
  --cream:       #F7F5F0;
  --cream-dark:  #EFEDE6;
  --cream-border:#D4CDBE;

  /* Text */
  --text-dark:   #1a1a2e;
  --text-muted:  #6B7280;
  --text-light:  #B8C5D0;

  /* Typography stacks */
  --font-display:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body-serif:  'Cormorant Garamond', Georgia, serif;
  --font-ui:          'Jost', 'Inter', sans-serif;

  /* Transitions */
  --transition: .2s ease;
}

/* ── Base body ───────────────────────────────────────────────── */
body { font-family: var(--font-ui); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
header {
  background: var(--navy);
  border-bottom: none;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

/* Linia aurie de sub navbar */
header::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.logo-text {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-weight: 600;
}
.logo-de { font-style: italic; color: var(--gold); }

.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #B8C5D0;
  border-radius: 24px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, .08);
}

.btn-parteneri {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  border-radius: 24px;
  padding: 9px 18px;
}
.btn-parteneri:hover {
  background: var(--gold);
  color: var(--navy);
  transform: none;
}

/* ══════════════════════════════════════════════════════════════
   BUTOANE
   ══════════════════════════════════════════════════════════════ */

/* Buton gold fill (primar) */
.btn-dark,
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-dark:hover,
.btn-gold:hover {
  background: #b8963c;
  box-shadow: 0 6px 20px rgba(201, 168, 76, .3);
  transform: translateY(-2px);
  color: var(--navy);
}

/* Buton ghost gold (secundar) */
.btn-gold-outline,
.btn-ghost-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-gold-outline:hover,
.btn-ghost-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Buton navy cu border gold (service cards) */
.service-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 12px;
  cursor: pointer;
  border-radius: 24px;
  box-shadow: none;
  transition: background .2s, color .2s;
}
.service-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: none;
  box-shadow: none;
}

/* Buton accent (CTA) */
.btn-accent {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  letter-spacing: 1.5px;
  border-radius: 24px;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-accent:hover { background: #b8963c; }

.btn-outline-white {
  border-color: rgba(201, 168, 76, .4);
  color: var(--gold-light);
  border-radius: 24px;
  font-family: var(--font-ui);
  letter-spacing: 1.5px;
}
.btn-outline-white:hover {
  background: rgba(201, 168, 76, .1);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   ORNAMENT SEPARATOR (◆ auriu cu linii)
   Folosit ca: <div class="gold-divider"><span>◆</span></div>
   ══════════════════════════════════════════════════════════════ */
.gold-divider,
.hero-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px 28px;
  background: var(--navy);
}
.gold-divider::before,
.gold-divider::after,
.hero-separator::before,
.hero-separator::after {
  content: '';
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: var(--gold-dim);
}
.gold-divider span,
.hero-sep-diamond {
  color: var(--gold);
  font-size: 10px;
  margin: 0 18px;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   EYEBROW TEXT (text mic uppercase auriu)
   Folosit ca: <span class="section-eyebrow">Titlu secțiune</span>
   ══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Tag eyebrow cu background (ex: "Avantaje") */
.section-tag {
  display: inline-block;
  background: rgba(201, 168, 76, .12);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 24px;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════════
   SECȚIUNI UTILITARE
   ══════════════════════════════════════════════════════════════ */

/* Secțiune navy (dark) */
.section-navy {
  background: var(--navy);
  color: #F0EBE0;
}
.section-navy h2,
.section-navy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #F0EBE0;
}
.section-navy h2 em,
.section-navy h3 em { font-style: italic; color: var(--gold); }
.section-navy p {
  font-family: var(--font-body-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #6B8090;
}
.section-navy p a { color: var(--gold-light); }
.section-navy p a:hover { color: var(--gold); }

/* Secțiune cream (light) */
.section-cream,
.section-light {
  background: var(--cream-dark);
}

/* Titluri și descrieri comune în secțiuni */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
}
.section-desc {
  font-family: var(--font-body-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (secțiune hero reutilizabilă pentru pagini interioare)
   Folosit ca:
     <section class="page-hero">
       <div class="page-hero-inner">
         <span class="section-eyebrow">Eyebrow text</span>
         <h1>Titlu pagină</h1>
         <p class="page-hero-desc">Descripție</p>
       </div>
     </section>
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 80px 40px 60px;
}
.page-hero-inner {
  max-width: 700px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: #F0EBE0;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-family: var(--font-body-serif);
  font-size: 1.2rem;
  color: #8A9BAA;
  font-style: italic;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════════════
   STATS BANNER
   ══════════════════════════════════════════════════════════════ */
.stats-banner {
  background: var(--navy-mid);
  padding: 36px 40px;
  border-bottom: 1px solid rgba(201, 168, 76, .1);
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; height: 70%;
  width: 1px;
  background: rgba(201, 168, 76, .2);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B8090;
}

/* ══════════════════════════════════════════════════════════════
   CARD AVANTAJE
   ══════════════════════════════════════════════════════════════ */
.advantage-card {
  background: var(--cream);
  border-color: var(--cream-border);
  border-radius: 16px;
}
.advantage-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.cta-section { background: var(--navy-deep); }
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #F0EBE0;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer { background: var(--navy-deep); }

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #8A9BAA;
  text-transform: uppercase;
}
.footer-col ul li a {
  font-size: 12px;
  color: #4A5E6E;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom { border-top-color: rgba(255, 255, 255, .05); }
.footer-legal a,
.footer-bottom > span { color: #2E4050; font-size: 11px; }
.footer-legal a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   IMAGINI HERO (overlay gradient)
   ══════════════════════════════════════════════════════════════ */
.hero-image-wrap {
  border: 2px solid var(--gold);
}
.hero-image-wrap::after {
  background: linear-gradient(to right,
    rgba(13, 27, 42, 0.92) 0%,
    rgba(13, 27, 42, 0.2) 100%);
}
.hero-overlay-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: #F0EBE0;
}
.hero-overlay-text h2 em { font-style: italic; color: var(--gold); }
.hero-overlay-text p {
  font-family: var(--font-body-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #8A9BAA;
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   FORM ELEMENTS — border-radius global (8px)
   ══════════════════════════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea {
  border-radius: 8px;
}

button,
.btn-gold,
.btn-ghost-gold,
.btn-gold-outline,
.btn-dark,
.btn-submit {
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════════════
   LANGUAGE SWITCH (slide animat RO / EN)
   ══════════════════════════════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #6B8090;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}
.lang-switch-label.active { color: var(--gold); }
.lang-switch-track {
  width: 40px;
  height: 20px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.lang-switch-track:hover { background: rgba(201, 168, 76, 0.25); }
.lang-switch-thumb {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-switch.en .lang-switch-thumb {
  transform: translateX(20px);
}
.lang-switch.en .lang-switch-label[data-lang="en"] { color: var(--gold); }
.lang-switch.en .lang-switch-label[data-lang="ro"] { color: #6B8090; }
.lang-switch:not(.en) .lang-switch-label[data-lang="ro"] { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item + .stat-item::before { display: none; }
  .hero { padding: 60px 24px 44px; }
  .page-hero { padding: 60px 24px 44px; }
  .gold-divider,
  .hero-separator { padding: 16px 24px 22px; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.9rem; }
  .stats-banner { padding: 28px 20px; }
  .gold-divider,
  .hero-separator { padding: 14px 16px 18px; }
}
