body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  z-index: 999;
}


/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 56px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* MOBILE ADJUST */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    line-height: 52px;
    bottom: 16px;
    right: 16px;
  }
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #3E2723;
}

/* NAV */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #1C1C1C;
  font-size: 15px;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #8D6E63;
}

/* CTA */
.nav-cta {
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .nav.active {
    display: flex;
  }
}

/* FOOTER */
footer {
  background: #1C1C1C;
  color: #aaa;
  text-align: center;
  padding: 15px;
}