/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global body styles */
body {
  padding-top: 80px;
  font-family: 'Open Sans', sans-serif;
  background-color: #FAFAFA;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

/* Fixed header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo-link {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 11;
}

.logo {
  height: 50px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navbar */
.navbar {
  background-color: #ffffff;  /* White background */
  padding: 15px 20px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow */
}

.navbar a {
  color: #4A4A4A;  /* Dark grey */
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-size: 1.15rem;
}

.navbar a:hover {
  background-color: #F2B950; /* warm gold on hover */
  color: #fff;
  border-radius: 4px;
}

/* Hero video section */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video video,
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-video::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.overlay-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.overlay-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: #f5f5f5;
  margin-top: 10px;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #333;
  color: #f2b950;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #f2b950;
  color: #333;
}

/* Section styles */
.intro,
.content,
.overview,
.gallery,
.contact {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.intro { background-color: #F5E6C5; }
.overview { background-color: #ffffff; }
.gallery { background-color: #E0F2F1; }
.contact { background-color: #2C98A0; color: white; }

.intro h2,
.content h1,
.overview h2,
.gallery h2,
.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro p,
.content p,
.overview p,
.gallery p,
.contact p {
  font-size: 1.1rem;
}

/* Gallery grid */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-container img,
.gallery-container video,
.gallery-container iframe {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-container {
    flex-direction: column;
    align-items: center;
  }
  .gallery-container img,
  .gallery-container video,
  .gallery-container iframe {
    width: 90%;
    height: auto;
  }
}

/* Social icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  background: #F2B950;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d19f45;
  transform: scale(1.1);
}

/* Aesthetic gallery */
.aesthetic-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.aesthetic-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.aesthetic-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Activities Section Background Video */
.video-bg-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-bg-container iframe.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
  pointer-events: none;
}

/* Overlay Text */
.activities-content {
  position: absolute; /* make overlay sit on top of video */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  background: rgba(242, 185, 80, 0.85); /* warm semi-transparent gold */
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  color: #333;
  text-align: center;
}

.activities-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.activities-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* Gallery Videos inside activities */
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-container .gallery-video {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.gallery-container iframe {
  width: 100%;
  height: 315px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .activities-content {
    width: 90%;
    padding: 30px 20px;
  }

  .gallery-container {
    flex-direction: column;
    align-items: center;
  }

  .gallery-container iframe {
    width: 100%;
    height: auto;
  }
}
