/* Buttons doar în HERO (light) */
.hero--light .hero-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 5px 10px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;

  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hero--light .hero-actions .btn.primary{
  background: #0b1220;
  color: #fff;
  border: 1px solid #0b1220;
  box-shadow: 0 10px 22px rgba(11,18,32,.12);
}

.hero--light .hero-actions .btn.ghost{
  background: rgba(255,255,255,.9);
  color: #0b1220;
  border: 1px solid rgba(11,18,32,.16);
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
}

.hero--light .hero-actions .btn:hover{
  transform: translateY(-1px);
}

.hero--light .hero-actions .btn.primary:hover{
  box-shadow: 0 14px 30px rgba(11,18,32,.16);
}

.hero--light .hero-actions .btn.ghost:hover{
  border-color: rgba(11,18,32,.22);
  box-shadow: 0 14px 30px rgba(11,18,32,.10);
}

.hero--light .hero-actions .btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(246,211,107,.35), 0 14px 30px rgba(11,18,32,.14);
}






/* =========================================================
   HERO SYSTEM (FINAL)
   - hero--light   : alb, clean, premium (default pages)
   - hero--gradient: gradient cinematic (Book the Bar / Testimonials)
   ========================================================= */

/* shared */
.hero{ width:100%; margin:0; }
.hero .hero-inner{ position:relative; }

/* =========================================================
   1) HERO LIGHT (alb, curat, premium)
   ========================================================= */
.hero.hero--light{
  padding: 110px 0 70px;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(246,211,107,.20), rgba(246,211,107,0) 60%),
    linear-gradient(180deg, #fff 0%, #fff 70%, #fff 100%);
  border-bottom: 1px solid rgba(10,12,20,.06);
}
.hero.hero--light .hero-inner{
  text-align:center;
}
.hero.hero--light .badge{
  display:inline-flex;
  padding: 8px 14px;
  border: 1px solid rgba(10,12,20,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: rgba(15,18,32,.70);
  font-size: 13px;
  
}
.hero.hero--light h1{
  margin: 14px 0 10px;
  
  
  line-height: 1.05;
  
  font-weight: 600;
  font-size: clamp(32px, 4vw, 54px);     /* mai mic */
  letter-spacing: -0.6px;
  
}
.hero.hero--light .lead{
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  
  font-size: 15px;                        /* mai mic */
  line-height: 1.75;
}
.hero.hero--light .hero-actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero.hero--light .hero-tags{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero.hero--light .hero-tags span{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,12,20,.10);
  background: rgba(255,255,255,.8);
  color: rgba(15,18,32,.65);
}

/* =========================================================
   2) HERO GRADIENT (ca în screenshot Book the Bar)
   - fără imagine obligatorie
   - opțional: dacă există .hero-bg[data-bg="..."] îi poți da și poză
   ========================================================= */
.hero.hero--gradient{
  position:relative;
  min-height:60vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-bottom: 1px solid rgba(10,12,20,.06);
}

/* layer 1: “background” (fără poză, look cinematic) */
.hero.hero--gradient .hero-bg{
  position:absolute; inset:0;
  
  transform: scale(1.02);
}

/* dacă vrei poză mai târziu, doar adaugi style="background-image:url(...)" pe .hero-bg
   și o să se combine frumos cu overlay-ul. */
.hero.hero--gradient .hero-bg[style*="background-image"]{
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  filter:saturate(1.05) contrast(1.05);
}

/* layer 2: overlay gold + dark ca în vechiul site */
.hero.hero--gradient .hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1100px 520px at 50% 36%, rgba(246,211,107,.28), rgba(246,211,107,0) 62%),
    linear-gradient(to bottom, rgba(12,12,14,.78) 0%, rgba(12,12,14,.52) 55%, rgba(12,12,14,.24) 82%, rgba(16,18,24,.04) 100%);
}

/* conținut */
.hero.hero--gradient .hero-inner{
  position:relative;
  text-align:center;
  padding: 1px 0 0;
  max-width: 860px;
  color: #fff;
}

.hero.hero--gradient h1{
  margin:0;
  
  
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 50px);    /* mai mic */
  letter-spacing: -0.02em;
}

.hero.hero--gradient .lead{
  margin: 12px auto 0;
  max-width: 58ch;
  color: rgba(255,255,255,.78);
  
  
  font-size: 14px;
  line-height: 1.55;
}

/* stats pills */
.hero.hero--gradient .hero-stats{
  margin: 22px auto 0;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
}

.hero.hero--gradient .stat{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,19,26,.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 14px;
  border-radius: 999px;
  display:flex;
  align-items:baseline;
  gap: 10px;
}

.hero.hero--gradient .stat-num{
  font-weight: 700;
  color: #FBBC04;
   font-weight: 600;
  font-size: 13px;
}

.hero.hero--gradient .stat-label{
  color: rgba(255,255,255,.72);
  font-size: 11.5px;
}


.hero.hero--gradient .hero-tags{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap:wrap;
  background: transparent;
}
.hero.hero--gradient .hero-tags span{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.8);
  color: rgba(255,255,255,.92);
  background: transparent;
}


