@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Aesthetics Colors - Updated for Premium Light Theme */
  --primary: #4a6650;
  --primary-light: #6da57a;
  --text-dark: #0a140d;
  --text-muted: #5a6b5e;
  --bg-gradient: linear-gradient(135deg, #fcfdfc 0%, #f4f8f4 50%, #eff3f1 100%);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(109, 165, 122, 0.15);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --border-radius: 20px;
  --shadow-lux: 0 15px 35px rgba(0, 0, 0, 0.04), 0 2px 5px rgba(0,0,0,0.02);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0,0,0,0.03);
  
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shared Layout Spacing */
  --header-spacing: 4rem;
  --header-spacing-mobile: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-gradient);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

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

/* Base Classes */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center { text-align: center; }

/* Large Premium Header */
.main-header {
  padding: 1rem 0 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-center img {
  height: 140px; /* Immensely visible logo */
  width: auto;
}

/* Glass Navbar */
.navbar-wrapper {
  position: sticky;
  top: 1rem;
  z-index: 1000;
  padding: 0 2rem;
  margin-top: -20px;
}

.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 1rem 3rem;
  box-shadow: var(--shadow-lux);
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
}

/* Hero Section */
.hero {
  padding: var(--header-spacing) 0 64px;
  position: relative;
}

.hero-img-container {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lux);
  height: 500px;
  margin-top: 10px;
}

.hero-img-container img,
.hero-img-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.hero-overlay h1 {
  color: white;
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19.2px;
  max-width: 800px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Typography & Layouts */
.section-title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Glassmorphism Cards */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-lux);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Image Cards (for activities) */
.img-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
  background: white;
  transition: transform var(--transition);
}

.img-card:hover {
  transform: translateY(-8px);
}

.event-row:hover {
  background: rgba(0, 0, 0, 0.04) !important;
}

/* Redesigned Event Row with Thumbnail */
.event-row {
  display: flex !important;
  gap: 2.5rem;
  align-items: center;
}

.event-thumb {
  flex: 0 0 160px;
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  flex: 1;
}

@media (max-width: 600px) {
  .event-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .event-thumb {
    width: 100%;
    flex: 0 0 200px;
    height: 200px;
  }
}

/* FAQ Styling */
.faq-question {
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
  line-height: 1.3;
}

/* Unify Event Typography */
.event-row * {
  font-family: var(--font-body) !important;
}

.event-row h4 {
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.img-card-img {
  height: 250px;
  overflow: hidden;
}

.img-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.img-card:hover .img-card-img img {
  transform: scale(1.05);
}

.img-card-body {
  padding: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.85rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(74, 102, 80, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(74, 102, 80, 0.3);
}

.btn-outline {
  background-color: white;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background-color: #f8faf8;
  transform: translateY(-3px);
}

.inner-header {
  text-align: center;
  padding: var(--header-spacing) 0 2rem;
}

.inner-header h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.inner-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 0 0 4rem;
  margin-top: -3rem;
  text-align: center;
}

.footer img {
  height: 140px;
  margin: 0 auto 0.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.social-icon {
  color: var(--primary);
  opacity: 0.6;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: var(--secondary);
}

.social-links svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
}

.mobile-nav {
  display: none;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .main-header {
    padding: 1.5rem 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .logo-center img { height: 140px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 1rem 0 4rem; }
  .hero-overlay h1 { font-size: 3rem; }
  .hero-overlay { padding: 2rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .navbar { display: none; } /* On mobile, we trigger a dedicated menu */
  
  .navbar-wrapper {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lux);
    color: var(--text-dark);
    z-index: 3000;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.nav-open .mobile-menu-btn {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.8);
  }

  .mobile-nav {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(244, 248, 244, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .mobile-nav.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-nav a {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
  }
  
  .close-menu {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none; border: none; font-size: 2rem; cursor: pointer;
  }

  /* Full width hero on mobile/tablet */
  .hero .container {
    max-width: none;
    padding: 0 !important;
  }
  
  .hero-img-container {
    border-radius: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
  }
  
  .hero {
    padding-top: var(--header-spacing-mobile) !important;
  }

  .hero-overlay {
    padding: 2rem 1.5rem !important;
  }

  .hero-overlay h1 {
    font-size: 2.8rem !important;
  }
}
