@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Sirivennela:wght@400;600&family=Work+Sans:wght@300;400;600&display=swap');

:root {
  /* Palette drawn from logo: amber blooms, deep greens, warm cream */
  --amber: #e7a12d;
  --amber-deep: #c87f11;
  --cream: #f4eddd;
  --cream-soft: #efe4cd;
  --forest: #2f4523;
  --moss: #486d38;
  --olive: #6f8c4f;
  --charcoal: #1f1a16;
  --accent: var(--amber);
  --line: rgba(239, 228, 205, 0.20);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.10);
  --font-heading: 'Sirivennela', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --transition: 200ms ease;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 18% 12%, rgba(231, 161, 45, 0.28), transparent 34%),
              radial-gradient(circle at 82% 6%, rgba(111, 140, 79, 0.20), transparent 38%),
              linear-gradient(160deg, #182c18 0%, #223c1f 52%, #2c4623 100%);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-deep); }

img { max-width: 100%; height: auto; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(69, 111, 55, 0.92); /* slightly deeper leafy green */
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(239, 228, 205, 0.22);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--cream);
}

.brand-logo {
  width: 88px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  font-size: 0.98rem;
  z-index: 50;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
  color: var(--cream);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(239, 228, 205, 0.4);
  color: #f4eddd;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

main { min-height: 70vh; }

.section {
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(244, 237, 221, 0.10), rgba(244, 237, 221, 0.05));
}

.intro-welcome {
  background: linear-gradient(135deg, rgba(26, 46, 28, 0.65), rgba(47, 92, 58, 0.52));
  padding: 38px 22px;
}

.intro-copy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text {
  max-width: 860px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f4eddd;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.feature-bg {
  background: linear-gradient(155deg, rgba(24, 46, 28, 0.34), rgba(24, 46, 28, 0.26));
  position: relative;
  overflow: hidden;
}

.feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("Assets/Background.webp") repeat;
  background-size: auto 80%; /* slightly smaller pattern */
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.035;
  mix-blend-mode: screen;
  pointer-events: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #0f2115;
  color: #f8f6f1;
  isolation: isolate;
  padding: 0 0 5vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 92, 58, 0.20), rgba(24, 46, 28, 0.20)); /* gentle 20% overlay */
  z-index: 1;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transform: scale(1.02);
  z-index: 0;
}


.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 90vw);
  padding: 16px 20px 0;
  margin-top: 0;
  animation: fadeInUp 900ms ease forwards;
  opacity: 0;
  transform: translateY(12px);
}

.logo-floating {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 390px;
  height: 390px;
  display: grid;
  place-items: center;
  z-index: 3;
  animation: fadeIn 1200ms ease 120ms forwards;
  opacity: 0;
}

.logo-floating img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 3px rgba(0, 0, 0, 0.95))  /* stronger outline */
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.85));
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 18px auto 12px;
  max-width: 720px;
  color: #f7f2e9;
  letter-spacing: 0.4px;
  text-shadow:
    0 0 3px rgba(0, 0, 0, 0.95),
    0 12px 26px rgba(0, 0, 0, 0.65);
}

.hero p {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.04rem;
  color: #f1ede5;
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 16px;
  text-shadow:
    0 0 22px rgba(0, 0, 0, 0.95),
    0 0 36px rgba(0, 0, 0, 0.90),
    0 0 48px rgba(0, 0, 0, 0.75),
    0 12px 28px rgba(0, 0, 0, 0.85);
}

.hero p::before {
  content: '';
  position: absolute;
  inset: -10px -14px;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(18px);
  border-radius: 24px;
  z-index: -1;
}

.hero-alt {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 6vh;
  color: #f8f6f1;
  isolation: isolate;
}

.hero-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 92, 58, 0.20), rgba(24, 46, 28, 0.45));
  z-index: 1;
}

.hero-alt::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-img, url("Assets/hero.jpg")) center/cover no-repeat;
  filter: brightness(0.78);
  z-index: 0;
}

.hero-alt .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1100px, 90vw);
  padding: 24px 20px 0;
  margin: 0;
}

.hero-alt h1 {
  margin: 0 0 10px;
  text-shadow:
    0 0 3px rgba(0, 0, 0, 0.85),
    0 12px 26px rgba(0, 0, 0, 0.65);
}

.hero-alt p {
  margin: 0 auto 18px;
  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.82),
    0 0 20px rgba(0, 0, 0, 0.55),
    0 10px 22px rgba(0, 0, 0, 0.58);
}

.primary-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background 220ms ease, color var(--transition);
}

.btn-primary {
  background: #d8891d;
  color: #1b140f;
  box-shadow: 0 12px 26px rgba(216, 137, 29, 0.36);
}

.btn-secondary {
  background: rgba(244, 237, 221, 0.26);
  color: #f7f2e9;
  border-color: rgba(244, 237, 221, 0.45);
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit; /* keep text readable on hover */
}

.lede {
  font-family: var(--font-body);
  font-size: 1.2rem;
  margin: 0 0 18px;
  color: var(--cream);
  font-weight: 700;
}

.section p { margin: 0 0 12px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.card {
  background: rgba(34, 51, 33, 0.82);
  border: 1px solid rgba(239, 228, 205, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  color: var(--cream);
  letter-spacing: 0.08em;
  font-weight: 800;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(239, 228, 205, 0.12);
}

.muted { color: #5a574f; }

blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: rgba(47, 92, 58, 0.05);
  border-radius: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.feature-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 800ms ease forwards;
}

.feature-card {
  position: relative;
  border-radius: 22px;
  padding: 26px;
  background: rgba(26, 46, 28, 0.55);
  border: 1px solid rgba(239, 228, 205, 0.12);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 10%, rgba(216, 137, 29, 0.12), transparent 40%),
              radial-gradient(circle at 80% 90%, rgba(111, 140, 79, 0.10), transparent 36%);
  pointer-events: none;
}

.feature-copy {
  display: grid;
  gap: 10px;
}

.feature-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  letter-spacing: 0.08em;
  color: var(--cream);
  font-weight: 800;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
}

.feature-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, rgba(216, 137, 29, 0.8), rgba(216, 137, 29, 0.2));
}

.sublede {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(244, 237, 221, 0.92);
}

.feature-copy .pill {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px;
  display: grid;
  gap: 6px;
}

.feature-points li {
  position: relative;
  padding-left: 16px;
}

.feature-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.feature-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239, 228, 205, 0.16);
}

.feature-image.fixed {
  height: 340px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  border: 1px solid rgba(244, 237, 221, 0.3);
  box-shadow: inset 0 0 0 1px rgba(216, 137, 29, 0.18);
}

.feature-image:hover img { transform: scale(1.03); }

.meta-bar {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
  color: #5a574f;
  margin-top: 10px;
}

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

footer {
  border-top: 1px solid rgba(239, 228, 205, 0.22);
  padding: 28px 22px 34px;
  background: rgba(69, 111, 55, 0.92); /* match header leafy tone */
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--cream);
}

footer a { color: var(--accent); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.gallery-4x3 {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}

.gallery-4x3 figure {
  aspect-ratio: 4 / 3;
}

.gallery-4x3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-2x2 figure {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .gallery-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-4x3 figure { aspect-ratio: 4 / 3; }
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 14, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox-backdrop.active { display: flex; }

.lightbox-frame {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #f7f2e9;
  border: 1px solid rgba(247, 242, 233, 0.25);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 160ms ease;
}

.lightbox-close {
  top: -12px;
  right: -12px;
  transform: none;
}

.lightbox-prev { left: -54px; }
.lightbox-next { right: -54px; }

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.65);
}

@media (max-width: 720px) {
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 8px; right: 8px; }
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(239, 228, 205, 0.16);
  box-shadow: var(--shadow);
  background: rgba(34, 51, 33, 0.9);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery figure:hover img { transform: scale(1.04); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(231, 161, 45, 0.22);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.94rem;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.contact-item {
  background: rgba(34, 51, 33, 0.82);
  border: 1px solid rgba(239, 228, 205, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.contact-item:hover { transform: translateY(-3px); }

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(231, 161, 45, 0.18);
  display: grid;
  place-items: center;
  color: var(--amber-deep);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(231, 161, 45, 0.15);
  border-radius: 12px;
  color: var(--cream);
  font-weight: 600;
}

.page-hero {
  padding: 80px 22px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(231, 161, 45, 0.16), rgba(47, 92, 58, 0.12));
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 12px;
  color: var(--cream);
}

.page-hero p { max-width: 720px; margin: 0 auto; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .logo-floating { width: 170px; height: 170px; top: 18%; }
  .hero h1 { margin-top: 120px; }
}

@media (max-width: 720px) {
  .navbar { flex-direction: row; align-items: center; }
  .nav-toggle { display: inline-flex; margin-left: auto; z-index: 2001; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 22px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: rgba(26, 46, 28, 0.92);
    border: 1px solid rgba(239, 228, 205, 0.18);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(0,0,0,0.28);
    width: min(260px, 90vw);
    z-index: 2000;
  }
  .nav-links a { width: 100%; }
  .nav-links.open { display: flex; }
  .logo-floating { width: 160px; height: 160px; top: 12%; }
  .hero { min-height: 70vh; padding: 0 0 8vh; }
  .hero-inner { padding: 20px 18px 0; margin-top: 110px; }
  .hero h1 { margin: 14px auto 10px; }
  .section { padding: 28px 18px; }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-panel .feature-image { order: -1; }
}
