:root {
  --green-deep: #1b5e20;
  --green-fresh: #2e7d32;
  --green-accent: #a5d6a7;
  --sand: #faf7f0;
  --dark-text: #212529;
}
html,
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--dark-text);
  background: var(--sand);
}
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--green-deep);
}
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .hero {
  background: linear-gradient(
    180deg,
    rgba(26, 87, 22, 0.05),
    rgba(165, 214, 167, 0.03)
  );
  padding: 6rem 0;
} */
/* HERO with Carousel */
.hero {
  height: 100vh; /* Full viewport */
  position: relative;
  overflow: hidden;
}

.hero .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(27, 94, 32, 0.6);
}

.hero .container {
  z-index: 2;
}

.hero h1,
.hero p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Buttons */
.hero .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
}

.villa-card {
  border: 1px solid rgba(33, 37, 41, 0.06);
  background: #f0ebdc;
}
.villa-badge {
  background: var(--green-accent);
  color: var(--green-deep);
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 10px;
}
.logo-mark {
  display: inline-block;
  font-weight: 700;
  font-family: "Playfair Display";
  color: var(--green-deep);
}

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

.cta-btn {
  background: var(--green-deep);
  color: white;
  border: none;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-links {
  display: flex;
  gap: 1rem;
  /* justify-content: center; */
  margin-bottom: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-green);
  color: var(--primary-green);
  transform: translateY(-3px);
}

footer {
  background: #f3efe9;
}
.gallery-img {
  object-fit: cover;
  width: 100%;
  height: 220px;
}

.gallery-modal-img {
  width: 100%;
  height: auto;
  display: block;
}

.map-iframe {
  border: 0;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .hero {
    padding: 3rem 0;
  }
}
