:root{
  --bg: #fff7ef;
  --soft: #f6eee6;

  --brown-900:#2a1a12;
  --brown-800:#3a2318;
  --brown-700:#4b2e1e;
  --brown-600:#6b3e27;
  --brown-500:#8b5e3c;

  --cream:#fff3e6;
  --white:#ffffff;
  --text:#1b1b1b;
  --muted:#6d6a68;

  --radius:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow2: 0 8px 20px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: inherit;
  min-width: 240px;
}
.brand-logo{
  height: 90px;
  width:auto;
  display:block;
}
.brand-name{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .4px;
  color: var(--brown-800);
  line-height: 1.1;
}

.brand-tagline{
  font-size: 14px;
  color: var(--brown-600);
  font-weight: 700;
  opacity: .95;
  margin-top: 3px;
}


.nav{
  display:flex;
  align-items:center;
  gap:18px;
}

/* Link normal */
.nav-link{
  text-decoration:none;
  color: var(--brown-800);
  font-weight: 800;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}

/* Hover */
.nav-link:hover{
  background: rgba(75,46,30,.08);
}

/* ACTIV (aprins) */
.nav-link.active{
  background: var(--brown-800);
  color: var(--white);
}

/* Contact ca "button", DAR nu aprins permanent */
.nav-cta{
  padding: 10px 14px;
  border: 1px solid rgba(75,46,30,.18);
  background: transparent;
  color: var(--brown-800);
}

/* Hover pe Contact */
.nav-cta:hover{
  background: rgba(75,46,30,.08);
}

/* Contact activ (aprins) */
.nav-cta.active{
  background: var(--brown-800);
  color: var(--white);
  border-color: transparent;
}


/* Mobile nav button */
.nav-toggle{
  display:none;
  border:0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor:pointer;
}
/* Hero */
.hero{
  padding: 52px 0 40px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 22px;
  align-items: start;
}

.hero-card{
  background: linear-gradient(135deg, rgba(75,46,30,.92), rgba(42,26,18,.96));
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 60%);
  transform: rotate(20deg);
}
.hero-card h1{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.accent{ color: #ffd7b1; }
.hero-card p{
  opacity: .95;
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.badge{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.hero-side .info-card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 20px;
  border: 1px solid rgba(0,0,0,.06);
}
.info-card h3{
  color: var(--brown-800);
  margin-bottom: 6px;
}
.muted{ color: var(--muted); }
.small{ font-size: 12px; }
.contact-big{
  display:inline-block;
  margin: 8px 0 10px;
  font-weight: 900;
  font-size: 20px;
  text-decoration:none;
  color: var(--brown-700);
}
.divider{
  height:1px;
  background: rgba(0,0,0,.08);
  margin: 14px 0;
}

/* Sections */
.section{ padding: 52px 0; }
.section-soft{
  background: linear-gradient(180deg, var(--soft), #ffffff);
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  color: var(--brown-800);
  font-size: 28px;
  margin-bottom: 6px;
}

/* Cards & grids */
.card{
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
  border: 1px solid rgba(0,0,0,.06);
}
.card.alt{
  background: linear-gradient(135deg, rgba(255,243,230,.95), rgba(255,255,255,.95));
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card h3{
  color: var(--brown-800);
  margin-bottom: 8px;
}
.card p{
  line-height: 1.6;
}

.list{
  margin-top: 12px;
  padding-left: 18px;
}
.list li{ margin: 6px 0; }

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.kpi{
  background: rgba(75,46,30,.06);
  border: 1px solid rgba(75,46,30,.12);
  border-radius: 14px;
  padding: 12px;
  text-align:center;
}
.kpi-num{
  font-size: 22px;
  font-weight: 900;
  color: var(--brown-800);
}
.kpi-label{
  color: var(--brown-600);
  font-weight: 800;
  font-size: 12.5px;
  margin-top: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  text-decoration:none;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  cursor:pointer;
  border: 1px solid transparent;
  user-select:none;
}
.btn.primary{
  background: #ffd7b1;
  color: var(--brown-900);
}
.btn.primary:hover{ filter: brightness(.98); }
.btn.ghost{
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
}
.btn.ghost:hover{ background: rgba(255,255,255,.16); }

.btn.small{ padding: 10px 14px; border-radius: 12px; }
.btn.yt{
  width:100%;
  background: rgba(139,94,60,.10);
  border: 1px solid rgba(139,94,60,.22);
  color: var(--brown-800);
}
.btn.yt:hover{ background: rgba(139,94,60,.14); }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item{
  border-radius: 16px;
  min-height: 160px;
  background:
    linear-gradient(135deg, rgba(75,46,30,.12), rgba(255,215,177,.20));
  border: 1px solid rgba(75,46,30,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--brown-800);
}
.gallery-actions{ margin-top: 14px; }

/* Form */
.form label{
  display:block;
  font-weight: 900;
  color: var(--brown-800);
  margin-bottom: 10px;
}
.form input, .form textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  outline: none;
  font: inherit;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(75,46,30,.45);
  box-shadow: 0 0 0 4px rgba(75,46,30,.12);
}
.form button{ width:100%; margin-top: 10px; }

/* Footer */
.footer{
  background: var(--brown-900);
  color: rgba(255,255,255,.88);
  padding: 18px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer a{
  color: rgba(255,255,255,.88);
  text-decoration:none;
  font-weight: 800;
}
.footer a:hover{ text-decoration: underline; }
.footer-links{ display:flex; gap: 14px; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-block; }
  .nav{
    position:absolute;
    right: 4%;
    top: 70px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    box-shadow: var(--shadow2);
    padding: 10px;
    display:none;
    flex-direction: column;
    min-width: 220px;
  }
  .nav.open{ display:flex; }
  .nav-link{ padding: 12px 12px; }
  .nav-cta{ width:100%; justify-content:center; }

  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .kpis{ grid-template-columns: 1fr; }
}
.lang{
  display:flex;
  gap:8px;
  align-items:center;
}
.lang-link{
  text-decoration:none;
  font-weight:900;
  padding:8px 10px;
  border-radius:12px;
  color: var(--brown-800);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
}
.lang-link.active{
  background: var(--brown-700);
  color: white;
  border-color: transparent;
}

.social{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.social-link{
  display:inline-block;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(75,46,30,.15);
  text-decoration:none;
  font-weight:900;
  color: var(--brown-800);
  background: rgba(75,46,30,.06);
}
.social-link:hover{
  background: rgba(75,46,30,.10);
}
.lang{
  display:flex;
  gap:8px;
  align-items:center;
}

.lang-link{
  text-decoration:none;
  font-weight:900;
  padding:8px 12px;
  border-radius:14px;
  color: var(--brown-800);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
  transition: .2s ease;
}

.lang-link.active{
  background: var(--brown-700);
  color: #fff;
  border-color: transparent;
}
/* About Highlight Premium Box */

.about-highlight{
  margin-top: 40px;
  padding: 35px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #5a3b2e, #3d2a22);
  color: #fff;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.highlight-stars{
  font-size: 20px;
  letter-spacing: 6px;
  color: #f5d7a1;
  margin-bottom: 10px;
}

.highlight-roof{
  width: 120px;
  height: 3px;
  background: #f5d7a1;
  margin: 0 auto 20px auto;
  position: relative;
}

.highlight-roof::before,
.highlight-roof::after{
  content:"";
  position:absolute;
  top:-6px;
  width:20px;
  height:20px;
  border-top:3px solid #f5d7a1;
}

.highlight-roof::before{
  left:-18px;
  transform:rotate(-45deg);
}

.highlight-roof::after{
  right:-18px;
  transform:rotate(45deg);
}

.about-highlight h3{
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 800;
}

.highlight-quote{
  font-style: italic;
  opacity: .9;
  font-size: 15px;
}
.about-grid{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-highlight{
    order: 2;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 200px; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
}
/* Show only first 6 in gallery by default */
.gallery-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.is-open { display: block; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.lightbox-content {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
}

#lightboxImg {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 44px;
  line-height: 1;
  background: rgba(255,255,255,0.90);
  color: #111;
  display: grid;
  place-items: center;
  z-index: 10001;
}

.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 14px;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact-small {
  font-size: 14px;
  color: #6b4b3e;
  text-decoration: none;
  white-space: nowrap;
}

.contact-small:hover {
  text-decoration: underline;
}
.contact-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.contact-call {
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-whatsapp {
  font-size: 14px;
  text-decoration: none;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-whatsapp:hover {
  text-decoration: underline;
}

.icon {
  font-size: 16px;
}
:root{
  --header-offset: 95px; /* ajustezi dacă e nevoie */
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

section[id]{
  scroll-margin-top: var(--header-offset);
}

@media (max-width: 720px){
  :root{ --header-offset: 160px; }
}
/* ===== FINAL BURGER (single source of truth) ===== */

/* Desktop: burger ascuns */
.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  width:44px;
  height:44px;
  cursor:pointer;
}

/* Liniile burger (mereu definite o singură dată) */
.nav-toggle span{
  display:block;
  width:26px;
  height:3px;
  background: var(--brown-800);
  border-radius:3px;
  margin:6px auto;
}

@media (max-width: 768px){
  /* Mobil: burger vizibil */
  .nav-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
  }

  /* Mobil: meniul dropdown */
  .nav{
    display:none;
    position:absolute;
    right:12px;
    top:70px;
    background:#fff;
    padding:12px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    flex-direction:column;
    gap:8px;
    min-width:200px;
    z-index:9999;
  }
  .nav.open{ display:flex; }
}
/* ===== HEADER MOBILE OPTIMIZATION ===== */
@media (max-width: 768px){

  /* Logo mai mic */
  .brand-logo{
    height: 48px;   /* era 55-60 */
  }

  /* Text logo puțin mai compact */
  .brand-name{
    font-size: 18px;
  }

  .brand-tagline{
    font-size: 11px;
  }

  /* Header mai compact */
  .site-header{
    padding: 10px 12px;
  }

  /* Container header mai apropiat */
  .header-inner{
    gap: 8px;
  }

  /* Butoanele limbă mai mici */
  .lang-link{
    padding: 4px 8px;
    font-size: 13px;
  }

  /* Burger puțin mai aproape */
  .nav-toggle{
    margin-left: 4px;
  }
}
/* YouTube brand button */
.btn.yt,
.social-link.youtube-btn {
  background: #FF0000;
  color: #fff !important;
  border: 0;
}

.btn.yt:hover,
.social-link.youtube-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* doar ca să fie consistent ca “buton” și în Social */
.social-link.youtube-btn {
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
/* YouTube red everywhere */
.btn.yt,
a.youtube-btn,
a.social-link.youtube-btn {
  background: #FF0000 !important;
  color: #ffffff !important;
  border: none !important;
}

.btn.yt:hover,
a.youtube-btn:hover,
a.social-link.youtube-btn:hover {
  background: #cc0000 !important;
  transform: translateY(-2px);
}

/* make the contact/social link look like a real button */
a.youtube-btn,
a.social-link.youtube-btn {
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}