/* Global Styles - Humanist Modernism */
:root {
  --primary-blue: #0056b3;
  /* Coopac Blue - Trustworthy & Deep */
  --secondary-blue: #4dabf7;
  /* Lighter, friendly blue */
  --accent-orange: #e67e22;
  /* Earthy Orange - Community & Warmth */
  --text-dark: #2c3e50;
  --text-light: #555;
  --white: #ffffff;
  --light-bg: #f9fafb;
  --border-radius: 20px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
.card-header {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-blue);
  text-align: center;
  position: relative;
  display: block;
  border: none;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-orange);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left::after {
  margin: 15px 0 0;
}

.bg-light {
  background-color: var(--light-bg);
}

.highlight {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Header */
header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 10px 0;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo img {
  height: 80px;
  border-radius: 0;
  transition: var(--transition);
}

/* Invert logo color when header is transparent (assuming logo is dark) */
header:not(.scrolled) .logo img {
  /* filter: brightness(0) invert(1); */
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 600;
  color: var(--white);
  /* White text on transparent header */
  font-size: 1rem;
  position: relative;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header.scrolled .nav-links a {
  color: var(--text-dark);
  /* Dark text on scrolled header */
  text-shadow: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-orange);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  /* White burger on transparent */
  margin: 5px;
  transition: var(--transition);
  border-radius: 3px;
}

header.scrolled .burger div {
  background-color: var(--primary-blue);
  /* Blue burger on scrolled */
}

/* Hero Section (Carousel) */
#hero {
  margin-top: 0;
  /* Remove margin to allow header overlay */
  position: relative;
  height: 100vh;
  /* Full screen height */
  min-height: 600px;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  display: flex;
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  z-index: 5;
}

.custom-shape-divider-bottom-1678901234 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-1678901234 .shape-fill {
  fill: #ffffff;
}

/* Hero Overlay & Controls */
.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 80%;
  max-width: 800px;
}

.hero-text-item {
  display: none;
}

.hero-text-item.active {
  display: block;
}

.hero-text-item.active h1 {
  animation: slideUpFade 0.8s ease forwards;
}

.hero-text-item.active p {
  animation: slideUpFade 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-text-item.active .btn-cta {
  animation: slideUpFade 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-text-item h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-text-item p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--accent-orange);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
  transition: var(--transition);
}

.btn-cta:hover {
  background-color: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
}

#prevBtn,
#nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

#prevBtn:hover,
#nextBtn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--primary-blue);
}

#prevBtn {
  left: 30px;
}

#nextBtn {
  right: 30px;
}

.carousel-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
  width: 40px;
  background-color: var(--accent-orange);
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Us */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text .lead-text {
  font-size: 1.25rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 30px;
  color: var(--text-light);
}

.btn-text {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-text:hover {
  gap: 15px;
  color: #d35400;
}

.about-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.about-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.02);
}





@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  border-bottom: 4px solid transparent;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--accent-orange);
}

.icon-box {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: var(--transition);
}

.about-card:hover .icon-box {
  background-color: var(--primary-blue);
  color: var(--white);
}

.about-card h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.values-list {
  text-align: left;
  margin-top: 10px;
}

.values-list li {
  margin-bottom: 10px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.values-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent-orange);
  font-size: 1rem;
  position: static;
}

/* Activities */
.activities-intro {
  margin: 0 auto 50px;
  max-width: 900px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.activity-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  border-top: 5px solid transparent;
  cursor: pointer;
}

.activity-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-top-color: var(--accent-orange);
}

.activity-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 86, 179, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-blue);
  font-size: 2rem;
  transition: var(--transition);
}

.activity-card:hover .activity-icon {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: rotateY(180deg);
}

.activity-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.activity-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Gallery */
.gallery-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  height: 520px;
  /* Fixed height for perfect alignment */
  margin-bottom: 80px;
}

.gallery-feature {
  position: relative;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.gallery-feature-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-feature:hover .gallery-feature-img img {
  transform: scale(1.05);
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
}

.feature-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--accent-orange);
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.photo-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  /* Fill grid cell */
  cursor: pointer;
  box-shadow: var(--card-shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 86, 179, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

.photo-card:hover .photo-overlay i {
  transform: scale(1);
}

.photo-card:hover img {
  transform: scale(1.1);
}



@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.contact-info-box {
  background-color: var(--primary-blue);
  padding: 50px 40px;
  color: var(--white);
}

.contact-info-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-info-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-form-box {
  padding: 50px 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.contact-form-box .btn-cta {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-box {
    padding: 40px 30px;
  }

  .contact-form-box {
    padding: 40px 30px;
  }
}

/* Footer */
footer {
  background-color: var(--white);
  border-top: none;
  padding: 0;
}

.partners-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 50px;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(100%);
  border-radius: 0;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.main-footer {
  background-color: #1a252f;
  color: #ecf0f1;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  /* filter: brightness(0) invert(1); Removed to preserve original logo colors */
  border-radius: 0;
}

.footer-col p {
  color: #bdc3c7;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bdc3c7;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--accent-orange);
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #bdc3c7;
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--accent-orange);
  width: 20px;
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--accent-orange);
  transform: translateY(-3px);
  color: var(--white);
}

.copyright {
  background-color: #151e26;
  padding: 25px 0;
  text-align: center;
  color: #7f8c8d;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: zoomIn 0.3s ease;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: var(--accent-orange);
  text-decoration: none;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Activity Modal */
.activity-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  padding: 20px;
}

.activity-modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 0;
  border-radius: var(--border-radius);
  max-width: 800px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
  position: relative;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--text-dark);
  font-size: 35px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--accent-orange);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  padding: 50px 40px 40px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  text-align: center;
  color: var(--white);
}

.modal-icon {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 3rem;
  backdrop-filter: blur(10px);
}

.modal-header h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--white);
}

.modal-body {
  padding: 40px;
  color: var(--text-dark);
  line-height: 1.8;
}

.modal-body h3 {
  color: var(--primary-blue);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 10px;
  display: inline-block;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body ul li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.modal-body ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--accent-orange);
  position: absolute;
  left: 0;
  top: 2px;
}

.modal-body p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.modal-body strong {
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .activity-modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-header {
    padding: 40px 30px 30px;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 30px 25px;
  }

  .modal-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-content {
    width: 95%;
  }

  .nav-links {
    position: absolute;
    right: 0px;
    height: 100vh;
    top: 0;
    /* Full height from top */
    background-color: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding-top: 100px;
    /* Space for close button/header */
    z-index: 999;
  }

  .nav-links li {
    opacity: 0;
    margin-bottom: 20px;
  }

  .nav-links a {
    color: var(--text-dark);
    /* Always dark on mobile menu */
  }

  .burger {
    display: block;
    z-index: 1001;
    /* Above nav */
  }

  /* Ensure burger is visible on white menu */
  .nav-active ~ .burger div,
  .toggle .line1,
  .toggle .line2,
  .toggle .line3 {
    background-color: var(--primary-blue);
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-feature {
    height: 300px;
  }

  .gallery-photos {
    grid-template-rows: auto;
  }

  .photo-card {
    height: 200px;
  }

  .section-title {
    font-size: 2rem;
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}
