@charset "utf-8";
/* CSS Document */
/* RESET */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#e5e7eb;
  background:#0b0b0b;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; }
li{ list-style:none; }

:root{
  --dark:#0b0b0b;
  --dark2:#121212;
  --card:#0f0f0f;
  --accent:#c9a24d;     /* auriu */
  --accent2:#d7b25c;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line: rgba(255,255,255,.10);
  --alt:#0f1116;
}

.container{
  width:min(1200px, 100%);
  margin:0 auto;
  padding:0 16px;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background: rgba(11,11,11,.92);
  backdrop-filter: blur(6px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-weight:900;
  font-size:20px;
  letter-spacing:.2px;
  color: var(--text);
}
.logo span{ color: var(--accent); }

/* NAV mobile */
.nav{ position:relative; }
.hamburger,.close-btn{
  background:none; border:0; cursor:pointer;
  font-size:26px; line-height:1;
}
.hamburger{ display:block; color: var(--text); }
.close-btn{
  display:none;
  position:fixed; top:18px; right:18px;
  color:#fff; z-index:1100;
}
.nav-menu{
  position:fixed; inset:0;
  background: linear-gradient(180deg, #0b0b0b, #070707);
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  gap:18px;
  transform: translateY(-100%);
  transition: transform .35s ease;
  z-index:1050;
  padding:90px 18px 40px;
  min-height:100vh;
}
.nav-menu a{
  color:#fff;
  font-weight:800;
  font-size:20px;
  padding:10px 14px;
  border-radius:12px;
}
.nav-menu a.active{
  color:#111;
  background: rgba(201,162,77,.95);
}
.nav-cta{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}

/* stare open */
.nav.is-open .nav-menu{ transform: translateY(0); }
.nav.is-open .hamburger{ display:none; }
.nav.is-open .close-btn{ display:block; }

main{ padding-top:66px; }

/* HERO */
.hero{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(201,162,77,.20), transparent 55%),
              linear-gradient(135deg, #0b0b0b, #111827);
  color:#fff;
  padding:56px 0 46px;
}
.hero-inner{ display:grid; gap:16px; }
.badge{
  display:inline-block;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  padding:6px 10px;
  border-radius:999px;
  margin:0 0 12px;
  font-weight:700;
  font-size:13px;
}
.hero h1{ margin:0 0 10px; font-size:34px; line-height:1.12; }
.lead{ margin:0 0 16px; color: rgba(255,255,255,.92); max-width:70ch; }
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:14px; }
.hero-list{ display:grid; gap:8px; margin-top:10px; }
.hero-list li{ color: rgba(255,255,255,.92); }

.hero-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:16px;
}
.callout{
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:10px;
  margin-bottom:12px;
}
.callout p{ margin:0; }

/* SECTIUNI */
.section{ padding:46px 0; }
.section.alt{ background: var(--alt); }
.section h2{ margin:0 0 12px; font-size:26px; color: var(--text); }
.muted{ color: var(--muted); margin: 0 0 16px; }
.center{ text-align:center; margin-top:16px; }

/* CARDS */
.cards{ display:grid; gap:14px; }
.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.card h3{ margin:0 0 8px; color: var(--text); }
.card p{ margin:0; color: rgba(229,231,235,.92); }

/* BUTOANE */
.btn{
  display:inline-block;
  background: rgba(201,162,77,.95);
  color:#1b1407;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover{ transform: translateY(-2px); filter: brightness(.98); }
.btn-ghost{
  background: transparent;
  border:2px solid rgba(255,255,255,.75);
  color:#fff;
}
.btn-small{ padding:10px 14px; font-size:14px; }

/* PREVIEW GRID */
.grid-preview{
  display:grid;
  grid-template-columns: repeat(1, 1fr);
  gap:10px;
}
.thumb img{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* CTA */
.section.cta{
  background: linear-gradient(180deg, #0b0b0b, #070707);
  color:#fff;
  text-align:center;
}
.section.cta h2{ color:#fff; }
.section.cta p{ margin:0 0 14px; opacity:.92; }

/* FOOTER */
.site-footer{
  border-top:1px solid rgba(255,255,255,.12);
  padding:18px 0;
  background:#0b0b0b;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  text-align:center;
}
.footer-inner p{ margin:0; color: rgba(229,231,235,.9); }
.footer-inner a{
  font-weight:800;
  color: var(--text);
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
}





/* GALERIE */
.gallery{
  display:grid;
  grid-template-columns: repeat(1, 1fr);
  gap:10px;
}
.g-item img{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: transform .2s ease;
}
.g-item:hover img{ transform: scale(1.02); }

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index: 2000;
}
.lightbox.is-open{ display:flex; }
.lb-img{
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.25);
}
.lb-close{
  position: fixed;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size: 22px;
  border-radius: 12px;
  padding: 8px 12px;
  cursor:pointer;
}







/* servicii - pret */
.price{
  margin: 10px 0 12px;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent2);
}

.bullets{
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.bullets li{
  list-style: none;
  color: rgba(229,231,235,.92);
}
.card{ display: flex; flex-direction: column; }
.card .center{ margin-top: auto; }
#preturi{ scroll-margin-top: 80px; }





/* FORM */
.label{ display:block; font-weight:800; margin: 12px 0 6px; color: var(--text); }
.field{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
.field:focus{
  border-color: rgba(201,162,77,.55);
  box-shadow: 0 0 0 4px rgba(201,162,77,.18);
}
textarea.field{ resize: vertical; min-height: 140px; }

.form-note{ margin: 12px 0 0; color: var(--muted); font-size: 14px; }
.honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form-msg{ margin: 0 0 14px; font-weight: 900; }
.form-msg.ok{ color: #34d399; }
.form-msg.warn{ color: #fbbf24; }
.form-msg.err{ color: #f87171; }






























/* DESKTOP */
@media (min-width:768px){
  .hamburger,.close-btn{ display:none !important; }
  .nav-menu{
    position: static;
    inset:auto;
    background: transparent;
    transform:none;
    transition:none;
    min-height:auto;
    padding:0;
    flex-direction:row;
    gap:18px;
    justify-content:flex-end;
    align-items:center;
  }
  .nav-menu a{ color: var(--text); font-size:16px; }
  .nav-menu a.active{ background: transparent; color: var(--accent2); }
  .hero{ padding:72px 0 60px; }
  .hero-inner{
    grid-template-columns: 1.15fr .85fr;
    align-items:start;
    gap:22px;
  }
  .hero h1{ font-size: 46px; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .grid-preview{ grid-template-columns: repeat(2, 1fr); }
  .footer-inner{
    flex-direction:row;
    justify-content:space-between;
    text-align:left;
  }
	
	
	
	
	.gallery{ grid-template-columns: repeat(2, 1fr); }
	
	
	
	
	
	
}









@media (min-width:1024px){
  .cards{ grid-template-columns: repeat(3, 1fr); }
	.grid-preview{ grid-template-columns: repeat(4, 1fr); }
	
	.gallery{ grid-template-columns: repeat(3, 1fr);
	
	
	
}






