

@font-face {
  font-family: "Bootzy";
  src: url("../fonts/BootzyTM.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body,
html {
  height: 100%;
  font-family: "Inter", sans-serif;
}


.site-header {
  font-family: "Bootzy", sans-serif;
  letter-spacing: 0.12em;
}

.nav-links li a {
  font-size: 1.20rem;
  letter-spacing: 0.12em;
}

.section-title,
.hero-title,
.about-window h1 {
  font-family: "Bootzy", sans-serif;
  letter-spacing: 0.15em;
}

.content-window h1 {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .content-window h1 {
    letter-spacing: 0.16em;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* FADE IN ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero-logo {
  max-width: 600px;
  width: 80%;
  margin-bottom: 40px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.event-btn.disabled {
  pointer-events: none; /* no clicks */
  opacity: 0.4; /* looks disabled */
  cursor: not-allowed;
}

/* FOOTER */

footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

footer a {
  color: #fff;
  margin: 0 10px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

footer a:hover {
  opacity: 1;
}

/* ABOUT */

.about {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  text-align: center;
}

.about h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about ul {
  text-align: left;
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}

.about ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-img {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  display: block;
  border-radius: 12px;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0));
}


.header-inner {
  position: relative;
  width: 100%;
  padding: 20px 40px;
}

.header-logo {
  height: 32px; /* THIS defines logo size */
  width: fit-content;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 100%; /* 🔥 image follows box height */
  width: auto;
  display: block;
}
/* NAVIGATION */

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.2s;
}

.nav-links li a:hover {
  opacity: 0.7;
}

.nav {
  position: absolute;
  right: 40px;
  top: 26px;
  display: flex;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column-reverse;
  cursor: pointer;
  gap: 5px;
  margin-left: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
    border-radius: 0 0 5px 5px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}



/* HERO OVERLAY (center content) */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 5;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 0.5em;
}

.hero-sub {
  font-size: 1.5rem;
  margin-bottom: 2em;
  opacity: 0.9;
}

/* HERO BUTTONS */
.hero-overlay .btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 0 10px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
}

.hero-overlay .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.overlay-about {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 40px 60px;
  overflow-y: auto;
}

.overlay-event {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  flex-direction: column; /* 👈 THIS */
  align-items: center; /* center horizontally */
  justify-content: flex-start; /* start from top */
  padding: 120px 40px 60px;
  overflow-y: auto;
}

.events-wrapper {
  width: 100%;
  max-width: 1000px;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.events-page {
  padding-top: 80px; /* match header height */
}

@media (max-width: 768px) {
  .events-page {
    padding-top: 96px;
  }
}
.events-wrapper {
  max-width: 1200px;
  margin: 80px auto 0; /* only top margin */
  padding: 0 20px;
}

.events-wrapper + .events-wrapper {
  margin-top: 80px; /* space between Next & Past */
}

.event-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

.event-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.event-info {
  padding: 20px;
}

.event-info h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.event-info p {
  opacity: 0.8;
  margin-bottom: 6px;
}

.event-info span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

.event-btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transition: 0.2s;
}

.event-btn:hover {
  background: #fff;
  color: #000;
}
.page-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px; /* pushes below header */
}

.content-window {
  max-width: 720px;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: 18px;
  color: white;
  text-align: center;
}



.content-window p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
   ABOUT WINDOW
   ========================= */

.about-window {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 160px auto 80px;
  padding: 64px;

  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);

  color: #ffffff;
  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Headings */

.about-window h1 {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 32px;
 letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-window h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 48px 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* Text */

.about-window p {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 22px;
  opacity: 0.92;
}

/* Charter list */

.about-window ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.about-window li {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
  padding-left: 18px;
  position: relative;
  opacity: 0.95;
}

.about-window li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.5;
}

/* =========================
     MOBILE
     ========================= */

@media (max-width: 768px) {
  .about-window {
    margin: 120px 20px 80px;
    padding: 40px 26px;
  }

  .about-window h1 {
    font-size: 30px;
    margin-bottom: 24px;
    
  }

  .about-window h2 {
    font-size: 18px;
    margin-top: 36px;
  }

  .about-window p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-window li {
    font-size: 15px;
  }
}

/* OVERLAY FOR VOLUNTEER PAGE */
.overlay-volunteer {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 20px 60px;
  overflow-y: auto;
  flex-direction: column;
  text-align: left;
}

/* CONTENT WINDOW */
.content-window {
  max-width: 720px;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  padding: 48px;
  border-radius: 18px;
  color: white;
}


.content-window p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

/* VOLUNTEER BUTTON */
.volunteer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.volunteer-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}



/* HEADER ABOVE VIDEO */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}



.hero {
  position: relative;
  height: 100vh;
  width: 100%;

  background: url("../images/background.png") center / cover no-repeat;

  overflow-x: hidden;
}

/* =========================
   NOTIFY PAGE CLEANUP
   ========================= */

.notify-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  width: 100%;
  position:  absolute;
  inset:0;
  z-index: 5;
   overflow-y: auto;
}


.notify-page {
  position: absolute;
  inset: 0;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 140px 24px 80px;
  overflow-y: auto;
}
/* Box container */
.notify-box {
  width: 100%;
  max-width: 960px;
}

/* Title & subtitle */
.notify-title {
  font-family: "Bootzy", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}

.notify-sub {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 48px;
  color: #fff;
}

/* OPTIONS CONTAINER */
.notify-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
    z-index: 7;

}

/* INDIVIDUAL OPTION */
.notify-option {
  flex: 1 1 300px;
  background: rgba(0,0,0,0.4); /* semi-transparent black */
  padding: 36px 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
  z-index: 7;

}

/* Hover effect */
.notify-option:hover {
  transform: translateY(-3px);
}

/* Option headings & text */
.notify-option h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 16px;

  color: #fff;
}

.notify-option p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.5;
}

/* FORM */
.notify-option form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

/* Email input */
.notify-option form input[type="email"] {
  flex: 1 1 auto;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  background: rgba(255,255,255,0.05); /* slightly transparent */
  color: #fff;
  outline: none;
}

.notify-option form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Email button */
.notify-option form button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.notify-option form button:hover {
  background: #f0f0f0;
}

/* WhatsApp button */
.notify-option .notify-btn {
  background: #25d366; /* WhatsApp green */
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.notify-option .notify-btn:hover {
  background: #1ebe57; /* darker green on hover */
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .notify-options {
    flex-direction: column;
    gap: 20px;
  }

  .notify-option form {
    flex-direction: column;
    gap: 12px;
  }

  .notify-option .notify-btn {
    width: 100%;
    text-align: center;
  }

  .notify-title {
    font-size: 2.2rem;
  }
}
