/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-image: url('../images/camo-bg2.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  line-height: 1.6;
}

/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #7A3E1D;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.logo {
  height: 100px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

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

/* HERO SECTION */
.hero {
  padding: 5rem 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #7A3E1D;
  color: #fff;
  font-size: 0.9rem;
}

/* PAGE SECTIONS */
.section {
  padding: 3rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  margin: 2rem auto;
  max-width: 1000px;
  border-radius: 8px;
}

/* SPONSORS */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* desktop: 3 across */
  gap: 30px;
  justify-items: center;
}

.sponsor-card img {
  max-width: 250px; /* larger logos */
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.sponsor-card img:hover {
  transform: scale(1.1);
}

/* Tablet: 2 across */
@media (max-width: 900px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 across */
@media (max-width: 600px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}


/* PRODUCT GRID */
.product-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.product-flex > div {
  flex: 0 1 300px;
}

/* CONTACT FORM */
.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  color: white;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: bold;
  color: white;
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background-color: #2c2c2c;
  color: white;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ff6600;
}

.contact-form button {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #ff6600;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e65c00;
}

/* LOGO SECTION */
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}

.center-logo {
  max-width: 600px;
  width: 90%;
  height: auto;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
}

/* FADE-IN ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* -------------------- */
/* RESPONSIVE MOBILE */
/* -------------------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    padding-top: 0.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .product-flex > div {
    flex: 1 1 100%;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .center-logo {
    max-width: 90%;
  }

  .logo {
    height: 80px;
  }
}




/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Responsive nav links */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.show {
    max-height: 500px;
  }

  .hamburger {
    display: block;
  }
}



/* Make hamburger menu top-right */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 1000;
}

.hamburger span {
  height: 4px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    display: none;
    padding: 1rem 2rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }
}

/* Ensure navbar positioning for absolute elements */
.navbar {
  position: relative;
}


/* Ensure navbar sits above everything */
.navbar {
  position: relative;
  z-index: 1000;
}

/* Make nav dropdown appear on top */
.nav-links {
  z-index: 1001;
}

/* Ensure the center logo stays underneath */
.center-logo {
  position: relative;
  z-index: 1;
}

.countdown-timers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 800px;
  margin: 2rem auto;
  color: #ff6600; /* Hunter's Orange */
}

.timer-box {
  margin: 1rem 0;
}

.timer-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.timer-box p {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6600; /* Hunter's Orange */
}




.countdown-section {
  text-align: center;
  padding: 3rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
}

.countdown-text {
  font-size: 2rem;
  color: #ff6600; /* Hunter Orange */
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.register-button {
  display: inline-block;
  margin: 0 auto;
  padding: 1rem 2rem;
  background-color: #ff6600; /* Hunter Orange */
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.register-button:hover {
  background-color: #e65c00;
}


.register-button:hover {
  background-color: #e65c00;
}






/* Countdown Timer Styling */
.countdown-timers {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  max-width: 700px;
}

.countdown-timers h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.countdown-timers span {
  color: #ff6600; /* Hunter orange */
  font-size: 1.8rem;
  font-weight: bold;
}

/* Centered Register Button */
.register-button-wrapper {
  margin-top: 2rem;
}

.register-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.register-button:hover {
  background-color: #e65c00;
}


.flyer-img {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  border: 3px solid #ff6600; /* Hunter orange border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flyer-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}


/* Store section wrapper if you want extra spacing */
.store-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
}


/* Lightbox Styling */
#lightbox {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 5px solid white;
  border-radius: 8px;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}


/* --- Lightbox (force hidden by default) --- */
.lightbox { 
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  padding: 60px 16px 16px;
  align-items: center;
  justify-content: center;
}

/* Only show when explicitly opened */
.lightbox[aria-hidden="false"] {
  display: flex !important;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Logos clickable */
.sponsor-logo {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
  transition: transform .2s ease;
}
.sponsor-logo:hover { transform: scale(1.05); }

/* Keep grid below overlay if any stacking context exists */
.sponsor-grid { position: relative; z-index: 1; }

/* Prevent background scroll when modal open */
body.modal-open { overflow: hidden; }


/* Big Orange Register Button */
.register-now-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center; /* Centers horizontally */
}

.register-now-btn {
  display: inline-block;
  background-color: #ff6600; /* Hunter’s Orange */
  color: white;
  padding: 18px 32px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-now-btn:hover {
  background-color: #e65c00; /* Darker orange on hover */
  transform: scale(1.05);
}









.shopify-buy__collection{ position: relative; z-index: 1; }


