html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #eee;
  background: #010f0e;
  margin: 0;
  line-height: 1.8; /* Added for consistent text spacing */
}

* { box-sizing: border-box; }

#navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: #010f0e;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 999; /* Ensure it's above other content */
}


#navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

#navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#navbar a.active {
    color: #0F52BA;
    border-bottom: 2px solid #0F52BA;
  }
  

#navbar.scrolled { background: #111; }

#nav-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  padding: 0.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
  color: #0F52BA;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* === RESPONSIVE NAVIGATION (DROPDOWN) === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px 1rem 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  /* Center nav items */
  .nav-links ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    display: flex;
  }

  .nav-links ul li {
    text-align: center;
    padding: 1rem;
    width: 100%;
  }

  .nav-links ul li a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
  }

  .nav-links ul li a:hover,
  .nav-links ul li a.active {
    color: #0F52BA;
  }

  .nav-links > .social-links {
    margin-top: auto; /* forces to bottom */
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .nav-links .social-links a svg {
    width: 28px;
    height: 28px;
    fill: white;
  }

  .nav-links .social-links a:hover svg {
    transform: scale(1.15);
  }
}

/* Hide social icons in desktop navbar */
.nav-links > .social-links {
  display: none;
}

    

.nav-links .social-links a:hover svg {
  fill: #ff4081; /* Accent color on hover, can be Instagram pink for example */
}

.facebook-icon:hover svg {
  fill: #1877F2;
}
.instagram-icon:hover svg {
  fill: #E1306C;
}
.tiktok-icon:hover svg {
  fill: #69C9D0;
}
.youtube-icon:hover svg {
  fill: #FF0000; /* YouTube red */
}



.site-logo {
  height: 40px;      /* Adjust size as needed */
  width: auto;
  display: block;
}


.hero-content {
  text-align: center;
  padding: 10rem 1rem 5rem;
}

.btn {
  background: #1c2e4a;
  padding: 0.75rem 1.5rem;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.image-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}


.image-overlay-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.about-overlay-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Initially hidden text */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  max-width: 90%;
}

/* Show on hover */
.image-overlay-container:hover .overlay-text {
  opacity: 1;
  visibility: visible;
}

.overlay-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.overlay-text p {
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .overlay-text h2 {
    font-size: 1.5rem;
  }

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

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.album-card {
  padding: 2rem;
}

.album-card img {
  width: 100%;
  border-radius: 8px;
  height:250px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.album-card iframe {
  width: 100%;
  height: 200px;
  margin-top: 1rem;
  border-radius: 8px;
}

.image-row {
  display: grid;
  gap: 1rem;
  max-width: 1000px;
  justify-content: center;
  margin: 0 auto;
  grid-template-columns: repeat(2,1fr);
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.image-row img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .image-row {
    grid-template-columns: 1fr;  /* One image per row on smaller screens */
  }
}


.page-section {
  padding: 5rem 1rem;
}

.about-section {
  position: relative;
  padding: 7rem 5vw 3rem; /* Increased top padding to avoid navbar overlap */
  max-width: 100%;
}

/* Top image left-aligned, larger */
.about-image-top img {
  width: 300px;
  border-radius: 12px;
  float: left;
  margin: 0 2rem 1.5rem 0;
  object-fit: cover;
}

/* Bottom image right-aligned, larger */
.about-image-bottom {
  text-align: right;
  margin-top: 2.5rem;
}

.about-image-bottom img {
  width: 300px;
  border-radius: 12px;
  object-fit: cover;
}

/* Paragraph formatting inside the about section */
.about-section p {
  text-align: justify;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Responsive: Stack layout on smaller screens */
@media (max-width: 768px) {
  .about-image-top img,
  .about-image-bottom img {
    float: none;
    display: block;
    margin: 1rem auto;
    width: 90%;
  }

  .about-image-bottom {
    text-align: center;
  }

  .album-grid {
    gap: 0.5rem;
    padding: 1rem;
  }

}

  
  .gallery-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1c2e4a;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
  }

  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }

  .tour-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
  }

  .tour-image-container {
    text-align: center;
    margin-top: 2rem;
  }
  
  .tour-image-container img {
    max-width: 600px;
    width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .tour-image-container img:hover {
    transform: scale(1.02);
  }
  
  .download-text {
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }

  .tour-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  background-color: #1c2e4a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.tour-button:hover {
  background-color: #1c2e4a;
  transform: translateY(-2px);
}
  
  .contact-section {
    text-align: center;
    padding: 5rem 2rem;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: #222;
    color: #eee;
  }
  
  .contact-form button {
    padding: 0.9rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background-color: #1c2e4a;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #1c2e4a;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .social-links a svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
  }
  
  .social-links a:hover svg {
    transform: scale(1.15);
  }

  /* Specific brand colors */
  .facebook-icon svg path {
    fill: #1877F2; /* Official Facebook blue */
  }
  
  .instagram-icon svg path {
    fill: #E1306C; /* Instagram pink */
  }
  
  .tiktok-icon svg path {
    fill: #69C9D0; /* TikTok turquoise */
  }

  .youtube-icon svg path {
    fill: #FF0000; /*Youtube red */
  }

  @media (max-width: 768px) {
    .contact-form {
      padding: 1rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 1rem;
    }
  
    .social-links {
      gap: 1rem;
    }
  }

  @media (max-width: 768px) {
    .thank-you-section {
      padding: 4rem 1rem;
    }
  
    .thank-you-section h1 {
      font-size: 1.8rem;
    }
  
    .thank-you-section p {
      font-size: 1rem;
    }
  }


  /* Hide/show gallery sections based on screen size */
.desktop-gallery {
  display: grid;
}

.mobile-gallery {
  display: none;
}

@media (max-width: 768px) {
  .desktop-gallery {
    display: none;
  }

  .mobile-gallery {
    display: block;
    padding: 1rem;
  }
}

/* Swiper specific styling */
.swiper-container {
  width: 100%;
  height: auto;
  padding: 1rem 0;
}

.swiper-slide img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.swiper-pagination-bullet {
  background: #1c2e4a;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

/* Optional: Reduce slide height on smaller devices */
@media (max-width: 500px) {
  .swiper-slide img {
    max-height: 300px;
  }
}


/* Hide social icons in desktop navbar */
.nav-links > .social-links {
  display: none; /* Hide by default */
}



