/* ── Variables ── */
:root {
  --green:      #3d6b4f;
  --green-dark: #2e5340;
  --green-light:#e8f0eb;
  --gold:       #c9a84c;
  --cream:      #faf7f2;
  --dark:       #1e1e1e;
  --mid:        #555;
  --radius:     10px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

p { color: var(--mid); line-height: 1.8; }

img { max-width: 100%; }

/* ── Navbar ── */
.navbar {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 0;
}
.navbar .container { height: 68px; }
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green) !important;
  letter-spacing: -.5px;
}
.navbar-brand span { color: var(--gold); }
.nav-link {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  transition: color .2s;
}
.nav-link:hover,
.nav-link.active { color: var(--green) !important; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/new1.jpg') center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,50,35,.65) 0%, rgba(10,20,15,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 40px;
  padding: 5px 18px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i { display: block; font-size: 1.2rem; margin-top: 6px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn-primary-custom {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary-custom:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-custom {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  padding: 12px 34px;
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

/* ── Sections ── */
section { padding: 80px 0; }
section.bg-cream { background: var(--cream); }
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--green);
  color: #fff;
  padding: 0;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; display: block; }
.stat-item strong { display: block; font-size: 1.1rem; }
.stat-item span { font-size: .82rem; opacity: .75; }

/* ── Feature cards ── */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.11);
}
.feature-card .icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card .icon i { color: var(--green); font-size: 1.3rem; }
.feature-card h5 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-grid .g-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-grid .g-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s, filter .35s;
}
.gallery-grid .g-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(30,50,35,0);
  transition: background .3s;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); filter: brightness(.85); }
.gallery-grid .g-item:hover::after { background: rgba(30,50,35,.35); }

/* ── Lightbox ── */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox-overlay.open { display: flex; }
#lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
  cursor: default;
}
#lb-prev, #lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.25); }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }
#lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: .7;
}
#lb-close:hover { opacity: 1; }

/* ── Map ── */
.map-frame {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

/* ── Contact ── */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ede8;
}
.info-row:last-child { border-bottom: none; }
.info-row .icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row .icon-wrap i { color: var(--green); }
.info-row a { color: var(--green); text-decoration: none; font-weight: 600; }
.info-row a:hover { text-decoration: underline; }

.booking-option {
  background: var(--cream);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.booking-option i { color: var(--gold); font-size: 1.1rem; }
.booking-option strong { display: block; font-size: .95rem; }
.booking-option span { font-size: .85rem; color: var(--mid); }

/* ── Area cards ── */
.area-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 24px;
}
.area-card-body { padding: 24px; }
.area-card-body h5 { font-family: 'Playfair Display', serif; color: var(--green); }

/* ── Page hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; }

/* ── Carousel (home) ── */
#homeCarousel .carousel-inner { border-radius: var(--radius); overflow: hidden; }
#homeCarousel img { height: 420px; object-fit: cover; }
#homeCarousel .carousel-control-prev,
#homeCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

/* ── Award strip ── */
.award-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.award-strip img { height: 55px; width: auto; }

/* ── Footer ── */
footer {
  background: #111;
  color: #888;
  padding: 56px 0 24px;
}
footer h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
footer a {
  color: #888;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color .2s;
}
footer a:hover { color: var(--gold); }
footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #aaa;
  margin-right: 8px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
footer .social-link:hover { background: var(--green); color: #fff; }
.footer-bar {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: .82rem;
  text-align: center;
  color: #555;
}

/* ── Utility ── */
.text-green { color: var(--green) !important; }
.text-gold  { color: var(--gold) !important; }
.bg-green   { background: var(--green) !important; }
.rounded-custom { border-radius: var(--radius); }

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { min-height: 92vh; }
  #homeCarousel img { height: 260px; }
}
