:root {
  --ivory: #f9f6f0;
  --cream: #efe8da;
  --gold: #bfa36f;
  --dark: #333333;
  --white: #ffffff;
}

/* RESET */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--ivory);
  color: var(--dark);
  font-size: 18px;
  line-height: 1.7;
}

/* ================= HEADER ================= */
.site-header {
  background-color: var(--cream);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--gold);
}

/* ================= PAGE / CONTAINER ================= */
.page-section {
  padding: 0 40px;
}

.page-container {
  max-width: 1000px;
  margin: 20px auto 80px auto;
  background-color: var(--cream);
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ================= TITLURI ================= */
h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 30px;
}

/* INDEX – BINE ATI VENIT */
.welcome-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 40px;
}

/* ================= HERO INDEX ================= */
.hero-content {
  display: flex;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text p {
  margin-bottom: 20px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* TEXT FULL WIDTH DUPA POZA */
.hero-full-text {
  margin-top: 30px;
}

/* ================= CONTACT ================= */
.contact-contents {
  display: flex;
  gap: 40px;
}

.contact-left {
  flex: 1;
  padding-right: 40px;
  border-right: 2px solid var(--gold);
}

.contact-left h2 {
  margin-bottom: 20px;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-left input,
.contact-left textarea {
  padding: 14px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}

.contact-left button {
  background-color: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.contact-left button:hover {
  opacity: 0.85;
}

/* CONTACT – DREAPTA */
.contact-right {
  flex: 1;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-right h2 {
  margin-bottom: 15px;
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.social-icons a img {
  width: 52px;
  height: 52px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social-icons a img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ================= FOOTER ================= */
footer {
  background-color: var(--cream);
  padding: 20px;
  text-align: center;
  border-top: 2px solid var(--gold);
  font-size: 16px;
}

/* ================= WHATSAPP ================= */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 100;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  .hero-content,
  .contact-contents {
    flex-direction: column;
  }

  .contact-left {
    border-right: none;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 40px;
    margin-bottom: 40px;
    padding-right: 0;
  }

  .contact-right {
    padding-left: 0;
    align-items: flex-start;
  }

  .contact-right h2 {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  nav {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.faq-item p {
    display: none;
    margin-top: 10px;
}
.services {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-block {
  display: flex;
  gap: 40px;
  align-items: center;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 15px;
}

.service-text p,
.service-text li {
  line-height: 1.7;
  color: #444;
}

/* CARUSEL */
.carousel {
  position: relative;
  width: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel img {
  width: 400px;
  height: 500px;
  object-fit: cover;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  cursor: pointer;
}

.carousel .prev { left: 10px; }
.carousel .next { right: 10px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
  }

  .carousel,
  .carousel img {
    width: 100%;
    height: 400px;
  }
}

/* ================= HAMBURGER MENU – FIX FINAL ================= */

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* DOAR PE MOBIL */
@media (max-width: 768px) {

  /* ascunde meniul normal */
  nav.main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--cream);
    border-bottom: 2px solid var(--gold);
  }

  /* afiseaza hamburger */
  .hamburger {
    display: block;
  }

  /* meniu deschis */
  nav.main-nav.active {
    display: flex;
  }

  nav.main-nav a {
    padding: 15px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
}

/* ================= MOBILE FIX FINAL ================= */
@media (max-width: 768px) {

  /* PREVINE SCROLL ORIZONTAL */
  body {
    overflow-x: hidden;
    font-size: 16px; /* text mai mic */
  }

  /* HEADER MAI MIC */
  .header-inner {
    padding: 12px 16px;
  }

  .logo img {
    max-height: 45px;
  }

  /* MENIU MOBIL */
  nav.main-nav {
    left: 0;
    right: 0;
    width: 100%;
  }

  /* PAGE FULL WIDTH */
  .page-section {
    padding: 0; /* fara margini exterioare */
  }

  .page-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 25px 20px;
    border-radius: 0; /* look curat pe mobil */
  }

  /* TITLURI MAI MICI */
  h2 {
    font-size: 26px;
  }

  .welcome-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  /* HERO */
  .hero-content {
    gap: 25px;
  }

  /* CONTACT */
  .contact-left input,
  .contact-left textarea {
    font-size: 16px;
  }

  .contact-left button {
    font-size: 16px;
    padding: 12px;
  }

  /* FOOTER */
  footer {
    font-size: 14px;
  }

  /* WHATSAPP MAI MIC */
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}

