/* General Reset and Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 999;
}

.logo {
  height: 40px;
  max-width: 150;
  object-fit: contain;
}

.hamburger {
  font-size: 30px;
  color: white;
  cursor: pointer;
  display: none;
}

/* Banner Sections */
.banner-section {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
}

.banner-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

.banner-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2rem;
}

/* Responsive Text */
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
/* Background Images */
#banner1 { background-image: url("/images/banner1.PNG"); }
#banner2 { background-image: url("/images/banner2.PNG"); }
#banner3 { background-image: url("/images/banner3.PNG"); }
#banner4 { background-image: url("/images/banner4.PNG"); }
#banner5 { background-image: url("/images/banner5.PNG"); }
#banner6 { background-image: url("/images/banner6.PNG"); }
#banner7 { background-image: url("/images/banner7.PNG"); }
#banner8 { background-image: url("/images/banner8.PNG"); }
#banner9 { background-image: url("/images/banner9.PNG"); }

/* Optional: Smooth Scroll Snapping */
html {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

.banner-section {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

/* Always show hamburger */
.hamburger {
  display: block;
  font-size: 28px;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 200;
}

/* Only hide hamburger on desktop */
@media (min-width: 768px) {
  #menu {
    display: flex !important;
    position: static;
  }

  .hamburger {
    display: none !important;
  }
}

  #menu ul {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
    background-color: transparent;
    border-radius: 0px;
    padding: 0px;
    position: static;
    right: auto;
    top: auto;
    z-index: auto;
  }

  #menu ul li {
    list-style: none;
  }

  #menu ul li a {
    color: white;
    padding: 0;
    text-decoration: none;
  }

/* Hide nav by default on mobile */
.hidden {
  display: none;
}

/* Show nav when toggled */
#menu ul {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  position: absolute;
  right: 15px;
  top: 60px;
  padding: 10px 0;
  z-index: 100;
}

#menu ul li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

#menu ul li a:hover {
  background-color: #444;
}

.mission-section {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.65);
  padding: 60px 20px;
}

.mission-section h1 {
  font-family: 'Georgia', serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: gold;
  text-shadow: 1px 1px 4px #000;
}

.mission-section .lead-text {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.mission-section .sub-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.explore-btn {
  display: inline-block;
  background: #c49b0d;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #e0b000;
}

#menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 60px;
  z-index: 100;
}
/* 🔧 MOBILE FIX: vertical menu, hidden by default */
@media (max-width: 768px) {
  #menu {
    display: none; /* Hide menu by default */
    flex-direction: column !important;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 15px;
    padding: 10px;
    border-radius: 6px;
    z-index: 100;
  }

  #menu.show {
    display: flex !important; /* Show when toggled */
  }

  #menu ul {
    flex-direction: column !important;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  .hamburger {
    display: block !important;
    cursor: pointer;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto;
}

.site-footer {
  background-color: #1d1d1d;
  color: #fff;
  padding: 100x 20px;
  font-size: 14px;
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f5f5f5;
}

.footer-column a {
  display: block;
  color: #aaa;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-credit {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
  color: #888;
}

section.banner-section {
  width: 100%;
  display: block;
}

.banner-text p {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.banner-text ul {
  list-style: none;
  padding-left: 0;
}

.banner-text ul {
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 20px;
}

.banner-text ul li::before {
  content: '';
  margin-right: 0;
}

.banner-text blockquote {
  font-style: italic;
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 10px;
}

.swiper-pagination {
  display: none;
}

.swiper-pagination,
.swiper-pagination-bullet {
  display: none !important;
}

.subscribe-section {
  text-align: center;
  padding: 40px;
  background-color: #111;
  color: white;
}

.subscribe-section input[type="email"] {
  padding: 10px;
  width: 280px;
  max-width: 90%;
  margin: 10px 0;
  border: none;
}

.subscribe-section button {
  background-color: #e67e22;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.subscribe-section button:hover {
  background-color: #cf711f;
}
