/* ========================================
   CSS RESET AND VARIABLES
   ======================================== */
* {
  box-sizing: border-box;
}

:root {
  --color-green-dark: #2f3f2d;
  --color-green-mint: #d5e3d2;
  
  /* Typography Variables */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--leading-normal);
  color: #1f2937;
}

/* ========================================
   BACKGROUND
   ======================================== */
body {
  height: 100%;
  overflow-y: auto;
  position: relative;
  margin-left: 1rem;
  margin-right: 1rem;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/photo/backround9.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transform: translateZ(0);
}

/* ========================================
   HEADER COMPONENTS
   ======================================== */
.main-header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 120px;
  background: rgba(209, 231, 209, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  z-index: 9999;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.main-nav {
  display: flex;
  align-items: center;
  position: absolute;
}

.nav-left {
  left: 20%;
  transform: translateX(-50%);
}

.nav-right {
  right: 20%;
  transform: translateX(50%);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem; /* Reduced from 1.5rem 2.5rem */
  margin-right: 1.5rem; /* Reduced from 2rem */
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  font-family: var(--font-primary);
  font-size: var(--text-lg); /* Reduced from var(--text-xl) */
  font-weight: var(--font-weight-semibold);
  color: var(--color-green-dark);
  text-decoration: none;
  height: 50px; /* Fixed height for consistency */
  box-sizing: border-box;
}

.nav-button:hover {
  color: #2f3f2d;
  background: rgba(240, 240, 240, 0.7);
}

.nav-button.active {
  color: #fff;
  background: #2f3f2d;
  box-shadow: 0 2px 8px rgba(47,63,45,0.15);
}

/* Social button specific styling */
.nav-button.social-button {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */
.mobile-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: none;
}

.mobile-nav.left {
  left: 1rem;
}

.mobile-nav.right {
  right: 1rem;
}

.mobile-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-green-dark);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-nav-button:active {
  transform: scale(0.95);
  background-color: rgba(240, 240, 240, 0.9);
}

/* ========================================
   LOGO
   ======================================== */
.logo-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  height: 100%;
  cursor: pointer;
}

.logo-wrapper {
  height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  height: 100%;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: auto;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.social-icon {
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-image {
  width: 2.5rem;
  height: 2.5rem;
}

.social-image.large {
  width: 5rem;
  height: 5rem;
}

/* ========================================
   MAIN CONTENT LAYOUT
   ======================================== */
.main-content {
  margin-top: 160px;
  position: relative;
  z-index: 1;
}

.content-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-container {
  position: relative;
  width: 100%;
  margin-bottom: 0.75rem;
}

.gallery-video-container {
  margin-bottom: 0;
  aspect-ratio: 1 / 1;
}

.intro-video {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: block;
}

.gallery-video {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Remove background overlay for gallery-video-1 only */
  background: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Keep overlay for other videos */
.gallery-video-container:not(:has(#gallery-video-1)) .play-button-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-video-container .play-button-overlay {
  border-radius: 8px;
}

.play-button-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.custom-play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-video-container .custom-play-button {
  width: 50px;
  height: 50px;
}

.custom-play-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.custom-play-button svg {
  width: 28px;
  height: 28px;
  color: #2f3f2d;
  margin-left: 3px; /* Slight offset to center the triangle visually */
}

.gallery-video-container .custom-play-button svg {
  width: 18px;
  height: 18px;
}

.video-controls-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.fullscreen-button {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.fullscreen-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.fullscreen-button svg {
  width: 20px;
  height: 20px;
  color: white;
}

.intro-text-box {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.intro-text {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-relaxed);
  margin: 0;
  color: var(--color-green-dark);
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events-section {
  width: 100%;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.events-title {
  text-align: center;
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-green-dark);
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
}

.event-item {
  width: 100%;
  margin-bottom: 1rem;
}

.event-toggle {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color-green-dark);
  border: none;
  outline: none;
  padding: 1rem;
  text-align: left;
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-normal);
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  white-space: normal;
  word-break: break-word;
}

.event-toggle:hover {
  background-color: rgba(240, 240, 240, 0.7);
}

.event-arrow {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.event-content {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 0.5rem;
  width: 100%;
}

.event-content img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.event-button {
  background-color: var(--color-green-dark);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.event-button:hover {
  background-color: #274026;
}

/* ========================================
   DONATION SECTION
   ======================================== */
.donation-info {
  min-height: 180px;
  width: 100%;
  margin-bottom: 1rem;
}

.donation-content {
  display: block;
  min-height: 260px;
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 0.5rem;
  width: 100%;
}

.donation-text {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-relaxed);
  text-align: center;
  margin: 0;
  color: var(--color-green-dark);
}

.centered-text {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  color: var(--color-green-dark);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-wrapper {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.gallery-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  display: block;
  transition: transform 0.2s, opacity 0.3s ease;
}

/* Lazy loading styles */
.gallery-image.lazy-load {
  opacity: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.gallery-image.loaded {
  opacity: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.gallery-video {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  min-height: 500px;
  gap: 2rem;
  padding: 2rem 0;
}

.contact-map {
  position: relative;
  z-index: 1;
  width: 60%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Desktop map popup redesign */
.contact-map .leaflet-popup-content-wrapper {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0 !important;
  max-width: 320px !important;
  min-width: 280px !important;
}

.contact-map .leaflet-popup-content {
  margin: 0 !important;
  padding: 1.25rem !important;
  font-family: var(--font-primary) !important;
  line-height: 1.4 !important;
  color: var(--color-green-dark) !important;
  text-align: center !important;
}

.contact-map .leaflet-popup-content b {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--color-green-dark) !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}

.contact-map .leaflet-popup-content br + br {
  display: none !important;
}

.contact-map .leaflet-popup-content img {
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
  max-height: 160px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  margin-top: 0.75rem !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
  display: block !important;
}

.contact-map .leaflet-popup-tip-container {
  display: none !important;
}

.contact-map .leaflet-popup-close-button {
  background: rgba(47, 63, 45, 0.8) !important;
  color: white !important;
  border-radius: 50% !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  font-weight: bold !important;
  line-height: 1 !important;
  top: -10px !important;
  right: -10px !important;
  padding: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
  transition: all 0.3s ease !important;
}

.contact-map .leaflet-popup-close-button:hover {
  background: rgba(47, 63, 45, 1) !important;
  transform: scale(1.1) !important;
}

.contact-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 40%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  min-height: 400px;
}

.contact-title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  color: var(--color-green-dark);
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-item:hover {
  background: rgba(240, 240, 240, 0.7);
}

.contact-item.space-between {
  justify-content: space-between;
}

.contact-label {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  margin-right: 1rem;
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-link {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-green-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #2563eb;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-social-link {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.contact-social-link:hover {
  transform: scale(1.1);
}

.contact-social-image {
  width: 2rem;
  height: 2rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  padding: 3rem 0;
}

.about-container {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-toggle {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color-green-dark);
  border: none;
  outline: none;
  padding: 1rem;
  text-align: left;
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.about-toggle:hover {
  background-color: rgba(240, 240, 240, 0.7);
}

.about-content {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  margin-top: 0.5rem;
  width: 100%;
  min-height: 400px;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}

/* ========================================
   SUPPORT SECTION
   ======================================== */
.support-section {
  width: 100%;
  margin-top: 1rem;
}

.support-content {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.25rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.support-main-text {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--leading-relaxed);
  color: var(--color-green-dark);
  margin: 0 0 1rem 0;
  text-align: justify;
}

.bank-details-subtle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(47, 63, 45, 0.15);
  gap: 1rem;
}

.org-name-clickable,
.bank-account-clickable {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-green-dark);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  opacity: 0.7;
  position: relative;
}

.org-name-clickable:hover,
.bank-account-clickable:hover {
  background: rgba(47, 63, 45, 0.1);
  opacity: 1;
}

.bank-account-clickable {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
}

/* Copy notification styles */
.copy-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-green-dark);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.copy-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   FOOTER
   ======================================== */
.main-footer {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 4rem;
}

.footer-text {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-normal);
  text-align: center;
  color: var(--color-green-dark);
}

/* ========================================
   RESPONSIVE BREAKPOINTS (DESKTOP ONLY)
   ======================================== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
  display: none;
}

.lg-backdrop,
.lg-outer {
  z-index: 9999 !important;
}