@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/* ==========================================================
   GLOBAL STYLES
========================================================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('images/hero-bg.png') center/cover no-repeat;
  color: white;
}

h1, h2, h3 { margin: 0; }
a { text-decoration: none; }

/* ==========================================================
   NAVBAR
========================================================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #000;
  border-bottom: 2px solid #f4b400;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 55px;
  filter: drop-shadow(0 0 10px rgba(255,200,0,0.6))
          drop-shadow(0 0 20px rgba(255,100,0,0.4));
  transition: 0.4s ease;
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #f4b400;
}

.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  color: white;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #f4b400;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #f4b400;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #f4b400;
}
/* ==========================================================
   HERO SECTION
========================================================== */
.hero {
  position: relative;
  padding: 160px 60px;
  padding-top: 30px; /* was probably 120–140px */
  background: url('images/hero-bg.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

/* DESKTOP DEFAULT — TRUE LEFT/RIGHT SPLIT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* clean left/right separation */
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE (logo + text + buttons) */
.hero-left {
  flex: 1 1 50%; /* true 50/50 split */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* RIGHT SIDE (slideshow) */
.hero-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  max-height: 700px;
}

/* Fade-in animation */
.hero-left,
.hero-right {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
}

.hero-right { animation-delay: 0.3s; }

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Logo inside hero-left */
.hero-logo {
  width: 480px;
  max-width: 100%;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.8));
}

/* ==========================================================
   HERO TEXT
========================================================== */
/* HERO TEXT — Archivo Black */
.hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}

.hero-text h2,
.hero-text h3,
.hero-text h4 {
  font-family: "Archivo Black", sans-serif;
  text-shadow:
    0 0 8px #f4b400,
    0 0 16px #f4b400,
    0 0 24px #000;
  margin: 0;
}
.hero-text h2 {
  font-size: clamp(1.6rem, 6vw, 4rem);
}

.hero-text h3 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
}

.hero-text h4 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
}

/* ==========================================================
   HERO SLIDESHOW
========================================================== */
.hero-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.2s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
  transform: translateX(0);
}

.slideshow-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slideshow-indicators span {
  width: 10px;
  height: 10px;
  background: #ffffff88;
  border-radius: 50%;
  transition: 0.3s;
}

.slideshow-indicators span.active {
  background: #f4b400;
  transform: scale(1.4);
}

/* ==========================================================
   BUTTONS
========================================================== */
.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  color: #f4b400;
}

.primary {
  background: #f4b400;
  color: black;
}

.secondary {
  border: 2px solid #f4b400;
  color: #f4b400;
}

.small {
  padding: 8px 15px;
}

/* ==========================================================
   INFO GRID
========================================================== */
.info-grid {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.info-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #111;
  border-left: 4px solid #f4b400;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(244,180,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(244,180,0,0.7);
}

.info-box h3 {
  color: #f4b400;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-box p {
  line-height: 1.6;
  color: #ddd;
}

.info-right img.info-poster {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(244,180,0,0.5);
}

/* ==========================================================
   ABOUT SECTION
========================================================== */
.about {
  text-align: center;
  padding: 60px 20px;
}

.about-vipers {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("logo/abouttheme.png") center/cover no-repeat;
  color: white;
  padding: 100px 40px;
  text-align: center;
  background-attachment: fixed;
}

.about-vipers h2 {
  color: #f4b400;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-vipers p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.about-vipers strong {
  display: block;
  margin-top: 15px;
  color: #f4b400;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================
   EVENTS
========================================================== */
.events {
  padding: 40px 20px;
}

.events ul {
  list-style: none;
  padding: 0;
}

.events li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

/* ==========================================================
   SPONSORS
========================================================== */
.sponsors {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sponsors h2 {
  color: #000;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.sponsor-slider {
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
}

.sponsor-slider::-webkit-scrollbar {
  display: none;
}

.sponsor-track {
  display: inline-flex;
  gap: 40px;
  cursor: grab;
}

.sponsor-track img {
  height: 80px;
  object-fit: contain;
  transition: transform 0.25s;
}

.sponsor-track img:hover {
  transform: scale(1.1);
}

.sponsor-placeholder {
  width: 180px;
  height: 120px;
  background: #111;
  border: 2px solid #f4b400;
  border-radius: 10px;
  color: #f4b400;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ==========================================================
   CTA + BOTTOM INFO
========================================================== */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #111;
}

.bottom-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 20px;
  background: #111;
  border-top: 2px solid #f4b400;
}

.bottom-info h2 {
  color: #f4b400;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bottom-info p {
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 15px;
}

.bottom-logo {
  width: 160px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.7));
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.social-row img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  transition: 0.25s;
}

.social-row a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 0 8px rgba(244,180,0,0.7);
}

/* ==========================================================
   SUBSCRIBERS TICKER
========================================================== */
.subscribers {
  display: flex;
  align-items: center;
  background: #fff8e6;
  padding: 20px;
  border-radius: 6px;
}

.subscribers-box {
  background: #d9d9d9;
  color: #000;
  padding: 15px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px 0 0 4px;
}

.subscribers-slider {
  overflow: hidden;
  flex: 1;
  background: #fff8e6;
}

.subscribers-track {
  display: flex;
  gap: 40px;
  animation: scrollSubscribers 30s linear infinite;
}

.subscribers-track span {
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

@keyframes scrollSubscribers {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================
   FOOTER
========================================================== */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #aaa;
}

/* ==========================================================
   SCROLL ANIMATIONS
========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   PARALLAX
========================================================== */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ==========================================================
   SECTION DIVIDERS
========================================================== */
.section-divider {
  width: 100%;
  height: 60px;
  background: url('images/divider-wave.svg') center/cover no-repeat;
  margin-top: -20px;
}

/* ==========================================================
   FLOATING PARTICLES
========================================================== */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #f4b400;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ==========================================================
   ANIMATED LOGO SYSTEM
========================================================== */
.logo-animated {
  position: relative;
  width: 80px;
  display: inline-block;
  filter: drop-shadow(0 0 25px #f4b400aa);
}

.logo-animated img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  transform: perspective(800px) translateZ(40px);
}

.logo-animated .mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  -webkit-mask-image: url("logo/mainlogo.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("logo/mainlogo.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  overflow: hidden;
}

.logo-animated .shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shineSweep 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shineSweep {
  0% { left: -150%; opacity: 0; }
  20% { opacity: 1; }
  50% { left: 150%; opacity: 1; }
  80% { opacity: 1; }
  100% { left: 150%; opacity: 0; }
}
/* ==========================================================
   RESPONSIVE — TABLET (900px–600px)
   Keep left/right layout but tighten spacing
========================================================== */
@media (max-width: 900px) and (min-width: 600px) {
  .hero-content {
    flex-direction: row;       /* still side-by-side */
    gap: 20px;                 /* smaller gap for tablets */
  }

  .hero-left {
    flex: 1 1 50%;
  }

  .hero-right {
    flex: 1 1 50%;
    height: 500px;             /* slightly smaller slideshow */
    align-items: stretch;  /* ← makes slideshow fill the height */
  }

  .hero-text {
    text-align: left;          /* keep desktop alignment */
  }
}

/* ==========================================================
   RESPONSIVE — PHONE (<600px)
   Stack everything vertically
========================================================== */
@media (max-width: 600px) {

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .hero-left {
    order: 1;
    width: 100%;
    align-items: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-right {
    order: 2;
    width: 100%;
    margin-top: 20px;
    height: 250px;
  }

  /* MOBILE NAV MENU */
  .mobile-menu-btn {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      background: #000;
      position: absolute;
      top: 70px;
      right: 20px;
      padding: 20px;
      border-radius: 10px;
      width: 200px;
      z-index: 9999;
  }

  .nav-links.active {
      display: flex;
  }
}
/* ==========================================================
   NEXT GAME BOX — MATCH POSTER STYLE (2 GAMES)
========================================================== */
.next-game-box {
  text-align: left;
  padding: 20px;
}

.next-game-box h3 {
  color: #f4b400;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.next-game-item {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

.next-game-date {
  font-size: 1.6rem;
  font-weight: 900;
  color: #f4b400;
  margin-bottom: 6px;
}

.next-game-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.next-game-team {
  font-weight: 700;
  text-transform: uppercase;
}

.next-game-game {
  color: #ccc;
}

.next-game-location {
  color: #999;
}

.next-game-time {
  color: #f4b400;
  margin-top: 3px;
}

