/* GLOBAL RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

/* NAVIGATION BAR*/
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: transparent;
  transition: background-color 0.4s ease;
  z-index: 1000;
}

#navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #FFD700;
}

.nav-logo {
  font-size: 28px;
  font-weight: 900;
  color: #FFD700;
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FFD700;
}

.nav-links a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 4px;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFD700;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* OPEN STATE - transforms into an X */
.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO SECTION */

#hero {
  background-color: #1a0533;
  background-image: 
    linear-gradient(
      to bottom,
      rgba(45, 10, 94, 0.45),
      rgba(10, 10, 10, 0.75)
    ),
    url('images/hero-bg1.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  padding: 120px 20px;
  padding-top: 230px;
}

/* #hero {
  background-color: #1a0533;
  background-image: 
    linear-gradient(
      to bottom,
      rgba(45, 10, 94, 0.92),
      rgba(10, 10, 10, 0.98)
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 215, 0, 0.30) 40px,
      rgba(255, 215, 0, 0.30) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255, 215, 0, 0.30) 40px,
      rgba(255, 215, 0, 0.30) 41px
    );
  text-align: center;
  padding: 120px 20px;
  padding-top: 140px;
} */

#hero h1 {
  font-size: 72px;
  font-weight: 900;
  color: #FFD700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

#hero h2 {
  font-size: 22px;
  color: #ffffff;
  margin-top: 16px;
  font-weight: 400;
  letter-spacing: 3px;
}

#hero p {
  font-size: 16px;
  color: #aaaaaa;
  margin-top: 10px;
  letter-spacing: 2px;
}

#hero a {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 48px;
  background-color: #FFD700;
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
#hero a:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}


/* STATS SECTION */
#stats {
  padding: 80px 20px;
  text-align: center;
  background-color: #0a0a0a;
}

#stats h2 {
  font-size: 36px;
  color: #FFD700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  background-color: #1a0533;
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 40px 20px;
}

.stat-box h3 {
  font-size: 32px;
  color: #FFD700;
  font-weight: 900;
}

.stat-box p {
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* VIDEO SECTION */
#video {
  padding: 80px 20px;
  text-align: center;
  background-color: #0f0f0f;
}

#video h2 {
  font-size: 36px;
  color: #FFD700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #FFD700;
  border-radius: 8px;
}


/* GALLERY SECTION*/
#gallery {
  padding: 80px 20px;
  text-align: center;
  background-color: #0a0a0a;
}

#gallery h2 {
  font-size: 36px;
  color: #FFD700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2d0a5e;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item.placeholder {
  background-color: #1a0533;
  background-image: linear-gradient(
    135deg,
    #2d0a5e 0%,
    #1a0533 50%,
    #0a0a0a 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item.placeholder::after {
  content: '📸';
  font-size: 48px;
  opacity: 0.4;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    transparent
  );
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-overlay p {
  color: #FFD700;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}


/*SOCIAL LINKS SECTION*/
#social {
  padding: 80px 20px;
  text-align: center;
  background-color: #0f0f0f;
}

#social h2 {
  font-size: 36px;
  color: #FFD700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-links a {
  padding: 14px 32px;
  border: 2px solid #FFD700;
  color: #FFD700;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background-color: #FFD700;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

/*CONTACT SECTION*/
#contact {
  padding: 100px 20px;
  text-align: center;
  background-image: linear-gradient(
    to top,
    #2d0a5e,
    #0a0a0a
  );
}

#contact h2 {
  font-size: 36px;
  color: #FFD700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#contact p {
  font-size: 18px;
  color: #aaaaaa;
  margin-bottom: 40px;
}

#contact a {
  display: inline-block;
  padding: 16px 48px;
  background-color: #FFD700;
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
#contact a:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}


/* MOBILE - TABLETS (max 768px) */
@media (max-width: 768px) {

  #hero {
    padding: 100px 20px;
  }

  #hero h1 {
    font-size: 48px;
    letter-spacing: 3px;
  }

  #hero h2 {
    font-size: 18px;
  }

  /* SHOW HAMBURGER ON MOBILE */
  .hamburger {
    display: flex;
  }

  /* HIDE NAV LINKS BY DEFAULT ON MOBILE */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px 0;
    border-bottom: 1px solid #FFD700;
    gap: 0;
  }

  /* SHOW NAV LINKS WHEN OPEN CLASS IS ADDED */
  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 1px solid #2d0a5e;
  }

  .nav-links a {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

}

/* MOBILE - PHONES (max 480px)*/

@media (max-width: 480px) {

  #hero {
    padding-top: 100px;
  }

  #hero h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  #hero h2 {
    font-size: 16px;
  }

  #hero a {
    padding: 14px 32px;
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-box h3 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-wrapper {
    max-width: 100%;
  }

  #stats h2,
  #video h2,
  #gallery h2,
  #social h2,
  #contact h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-links a {
    width: 80%;
    text-align: center;
  }

  #contact a {
    padding: 14px 32px;
    font-size: 16px;
  }

}