/* ====================================
   CSS Reset (Minimal)
==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  /* ====================================
     Base Styles
  ==================================== */
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #111;
    color: #fff;
  }
  
  /* ====================================
     Header (Hero Section with background + overlay)
  ==================================== */
  .hero-header {
    background: url('images/Hero_Banner.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 1rem;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #fff;
    z-index: 1;
    animation: bounce 1.5s infinite;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
  }
  
  .hero-header h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: #FF0000;
    margin-bottom: 0.5rem;
  }
  .hero-header p {
    font-size: 1.5rem;
    color: #f0f0f0;
  }
  
  /* ====================================
     Sections
  ==================================== */
  section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ====================================
     Buttons
  ==================================== */
  .cta {
    margin-top: 1.5rem;
    background: #FF0000;
    color: #111;
    padding: 1rem 2rem;
    border: none;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta:hover {
    background: #FFA500;
    transform: scale(1.05);
    box-shadow: 0 0 10px #FF0000;
  }
  
  /* ====================================
     Footer
  ==================================== */
  footer {
    background: #000;
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.875rem;
  }
  
  .powered-by {
    margin-top: 1rem;
    font-size: 0.95rem;
  }

  .powered-by span {
    color: #fff;
  }

  /* Keep exactly the same color/value as before */
  .powered-by .clickavate {
    color: #00D6Df;
    text-decoration: none;    /* remove default underline */
    cursor: pointer;
  }

  /* (Optional) If you’d like a subtle hover effect without changing size/color: */
  .powered-by .clickavate:hover,
  .powered-by .clickavate:focus {
    text-decoration: underline;
    
  }

  .terms-and-conditions a {
    font-size: 0.95rem;
    text-decoration: none;
    color: blue
  }
  
  .terms-and-conditions a:hover,
  .terms-and-conditions a:focus {
    text-decoration: underline;
    color: #FF0000;
  }
  /* ====================================
     Feature Grid (About Section)
  ==================================== */

  #about h2 {
    text-align: center; /* Centers the heading */
    margin-bottom: 2rem;
    font-size: 2rem;
    margin: 2rem 0 1rem;
  }

  .about-section p {
  margin-bottom: 2rem; /* space below each paragraph */
  line-height: 1.6;
  }

  .about-section div {
  margin-bottom: 2rem;
  line-height: 1.6;
  }

  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .feature-card {
    background-color: #161616;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.4);
  }
  
  .feature-card .emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
  }
  
  /* ====================================
     Event Cards (Events Section)
  ==================================== */

  #events h2 {
    text-align: center; /* Centers the heading */
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .event-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .event-card {
    background-color: #b5b5b5;
    color: #111;
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 280px;
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.3);
    transition: background 0.3s, transform 0.3s;
    text-align: left;
  }
  
  .event-card:hover {
    background-color: #e0e0e0;
    transform: scale(1.03);
  }
  
  .event-card h4 {
    margin-bottom: 0.5rem;
    color: #FF0000;
  }
  
/* ====================================
   Join Section Enhancements
==================================== */
.join-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .join-section h2 {
    font-size: 2rem; 
  }
  
  .subheading {
    font-style: italic;
    color: #FF4500;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .testimonial {
    background-color: #1c1c1c;
    border-left: 4px solid #FFD700;
    padding: 1.5rem;
    max-width: 320px;
    font-style: italic;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(255, 62, 0, 0.2);
    color: #eee;
  }
  
  .testimonial span {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #bbb;
  }
  
  .meaty-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  
  .metric {
    font-size: 1.1rem;
    background-color: #1a1a1a;
    color: #FFD700;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
    font-weight: bold;
    min-width: 200px;
    text-align: center;
  }
  
  /* ====================================
     Gear Section Grid
  ==================================== */
  #shop {
    text-align: center; 
  }
  
  #shop h2 {
    margin-bottom: 1rem;
    font-size: 2rem; 
  }
  
  #shop p {
    margin-bottom: 2rem;
    font-size: 1.25rem; 
  }
  
  #shop .cta {
    margin-top: 1rem;
    padding: 1rem 2rem; 
    background-color: #FF0000; 
    color: #000000;
    border: none;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  #shop .cta:hover {
    background: #FFA500; /* Hover effect */
    transform: scale(1.05);
  }
  
  /* Center the gear grid and ensure it aligns nicely */
  .gear-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap; /* Ensures the items wrap nicely */
  }
  
  /* Gear card adjustments */
  .gear-card {
    background-color: #161616;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    width: 180px;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
    margin-bottom: 1.5rem; /* Adds space between the items */
  }
  
  .gear-card img {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .gear-card p {
    color: #fff;
    font-weight: bold;
    font-size: 0.95rem;
  }
  
  /* ====================================
     Responsive Design
  ==================================== */
  @media (max-width: 768px) {
    header h1 {
      font-size: 2.5rem;
    }
  
    header p {
      font-size: 1rem;
    }
  
    .cta {
      font-size: 1rem;
      padding: 0.75rem 1.5rem;
    }
  
    .feature-grid,
    .event-grid,
    .testimonial-grid,
    .meaty-metrics,
    .gear-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-card,
    .event-card,
    .testimonial,
    .metric,
    .gear-card {
      max-width: 90%;
    }
  }

/* ====================================
   About Us Page Styles
==================================== */

/* General Reset and Styles for About Us Page */
#about-page .about-header *,
#about-page .values-section *,
#about-page .testimonial-grid *,
#about-page .faq-section *,
#about-page .social-media * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* preserve smooth scrolling on the whole page */
#about-page {
  scroll-behavior: smooth;
}

#about-page body {
  font-family: 'Roboto', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Hero Section */
#about-page .about-header {
  background: url('images/Hero_Banner.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#about-page .about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#about-page .about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1rem;
}

#about-page header h1 {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: #FF0000;
  margin-bottom: 0.5rem;
}

#about-page header p {
  font-size: 1.5rem;
  color: #f0f0f0;
}

/* About Section */
#about-page section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 0;
}

#about-page section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Values Section (Cards) */
#about-page .values-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

#about-page .value-card {
  background-color: #161616;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

#about-page .value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.4);
}

#about-page .value-card .emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* Call-to-Action Button */
#about-page .cta-button {
  margin-top: 1.5rem;
  background: #FF0000;
  color: #111;
  padding: 1rem 2rem;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#about-page .cta-button:hover {
  background: #FFA500;
  transform: scale(1.05);
  box-shadow: 0 0 10px #FF0000;
}

/* Testimonials Section */
#about-page .testimonial-section {
  margin-top: 4rem;
}

#about-page .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

#about-page .testimonial {
  background-color: #1c1c1c;
  border-left: 4px solid #FFD700;
  padding: 1.5rem;
  max-width: 320px;
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(255, 62, 0, 0.2);
  color: #eee;
}

#about-page .testimonial span {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 0.5rem;
  color: #bbb;
}

/* FAQ Section */
#about-page .faq-section {
  margin-top: 4rem;
}

#about-page .faq-item {
  margin-bottom: 1rem;
}

#about-page .faq-item h3 {
  font-size: 1.25rem;
  color: #FF0000;
}

#about-page .faq-item p {
  font-size: 1rem;
  color: #fff;
}

/* Social Media Section */
#about-page .social-media {
  text-align: center;
  margin-top: 4rem;
}

#about-page .social-media h2 {
  font-size: 2rem;
  color: #fff;
}

#about-page .social-media p {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

#about-page .social-links a {
  margin: 0 1rem;
  color: #00D6Df;
  text-decoration: none;
  font-weight: bold;
}

#about-page .social-links a:hover {
  color: #FF0000;
}

/* Footer */
#about-page footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.875rem;
}

#about-page .powered-by {
  margin-top: 1rem;
  font-size: 0.9rem;
}

#about-page .powered-by span {
  color: #fff;
}

#about-page .powered-by .clickavate {
  color: #00D6Df;
}

/* ====================================
   Events Page
==================================== */

/* Reset & basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #111;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
}

/* Main content */
.events-page {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}

.events-page {
  scroll-behavior: smooth;
}

.events-page h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;               /* full white */
  text-shadow: 0 0 6px #f33; /* same glow as your h2s */
}
.events-page .intro {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* 1) Define each date’s height for the line-calc */
/* Timeline & Events Styling */
/*
.timeline {
  position: relative;
  margin-left: 2rem;
  padding-left: 2rem;
  /* full border removed 
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;               
  top:    2.5rem;        
  bottom: 2.5rem;        
  border-left: 2px solid #300;
  z-index: 1;
}
*/
.event {
  display: flex;
  margin-bottom: 2rem;
  position: relative;
}
.event:last-child {
  margin-bottom: 1rem;
}

.date {
  position: absolute;
  left: -4.5rem;
  top: 1.8rem;
  width: 5.1rem;
  height: 6rem;         /* total box height */
  text-align: center;
  background: #111;
  padding: 0.5rem;
  border: 2px solid #300;
  border-radius: 8px;
  box-shadow: 0 0 12px #300;
  z-index: 2;
}
.date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}
.date .month {
  text-transform: uppercase;
  font-size: 0.9rem;    
}
.date .year {
  font-size: 0.8rem;
  opacity: 0.7;
}

.details {
  background: #111;
  padding: 1rem;
  border: 2px solid #300;
  border-radius: 8px;
  box-shadow: 0 0 12px #300;
  flex: 1;
  margin-left: 2rem;
}
.details h2 {
  margin-bottom: 0.3rem;
  text-shadow: 0 0 6px #f33;
}
.details p {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.85;
}
.details a {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #FF0000;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 0 8px #f33;
  transition: transform 0.2s;
}
.details a:hover {
  transform: scale(1.05);
} */

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem 0;
  background: #111;
  border-top: 2px solid #300;
  margin-top: 4rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ====================================
   Responsive Design
==================================== */
@media (max-width: 768px) {
  #hero-header h1 {
    font-size: 2.5rem;
  }

  #hero-header p {
    font-size: 1rem;
  }

  #about-page .cta-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  #about-page .values-section {
    flex-direction: column;
    align-items: center;
  }

  #about-page .value-card {
    max-width: 90%;
  }

  #about-page .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ────────────────────────────────────────────────────────────
   UNIFIED SITE-WIDE NAVBAR
   This will override any per-page nav rules
───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  z-index: 1000;
}

/* logo always on the left */
nav .logo {
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 4px #f33;
  letter-spacing: 0.04em;
}

/* push all link-containers (nav-links, main-nav, events-nav, site-nav) to the right */
nav .nav-links,
nav .main-nav,
nav .events-nav,
nav .site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* unify link styling */
nav a {
  color: #ddd;
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.2s;
}
nav a:hover,
nav a.active {
  color: #fff;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f33;
  border-radius: 2px;
  transition: width 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ────────────────────────────────────────────────────────────
   Force uniform nav text sizing site-wide
───────────────────────────────────────────────────────────── */
nav .logo {
  font-size: 1.4rem;    /* same on both pages */
}

nav .nav-links a {
  font-size: 1.1rem;      /* locks all link text to 1rem (16px by default) */
}

/* ────────────────────────────────────────────────────────────
   Force nav to fill full width and pad its contents
───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;           /* snap to left edge */
  right: 0;          /* snap to right edge */
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 2rem;/* 2rem inset on left & right */
  display: flex;
  align-items: center;
  z-index: 1000;
}

/* push your links to the right but leave the 2rem padding intact */
nav .nav-links {
  margin-left: auto;
}

/* ====================================
   Shop Page Overrides
==================================== */

/* make room for the fixed nav */
.shop-page {
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Page title */
.shop-page h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 0 6px #f33;
  margin-bottom: 0.5rem;
}

/* Subheading/style copied from index */
.shop-page .subheading {
  font-style: italic;
  color: #FF4500;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Gear grid layout */
.gear-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* 3-column grid, cards fill their column */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

/* let cards grow to fill the column */
.gear-card {
  background-color: #161616;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 100%;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gear-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.gear-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.gear-card p {
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* reuse .cta from main.css */
.gear-card .cta {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-page {
    padding-top: 8rem;
  }
  .gear-grid {
    flex-direction: column;
    align-items: center;
    grid-template-columns: 1fr;
  }
  .gear-card {
    width: 90%;
  }
}

/* ====================================
   Contact Page – Styles
==================================== */

/* Base & Reset */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background-color: #000000;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensure content sits below fixed header */
main {
  padding-top: 50px;
}

/* Hero Section */
.contact-hero {
  text-align: center;
  padding: 120px 0 60px;
}
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(255,255,255,0.2);
}
.contact-hero .tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #FF0000;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 0;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.form-group input,
.form-group textarea {
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 0.75rem;
  color: #fff;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF0000;
}
.btn-submit {
  display: inline-block;
  background: #FF0000;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-submit:hover {
  background: #FFA500;
  transform: scale(1.05);
  box-shadow: 0 0 10px #FF0000;
}

/* Footer */
.site-footer {
  background: #111;
  border-top: 1px solid #222;
  text-align: center;
  padding: 1.5rem 0;
}
.site-footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #666;
}
.site-footer a {
  color: #00D6Df;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

.contact-hero,
.contact-form-section {
  opacity: 1 !important;
  transform: none !important;
}

/* Hide checkbox */
.nav-toggle {
  display: none;
}

/* Hamburger icon */
body { margin: 0; font-family: Roboto, sans-serif; }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}
.logo { font-family: 'Anton', sans-serif; font-size: 1.5rem; }
.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
}
.nav-links li { margin-left: 1.5rem; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
}

/* Hamburger styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  background: #FF0000;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  position: relative;
  transition: transform 0.3s ease;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Toggle animation */
.nav-toggle.toggle .hamburger {
  background: transparent;
}
.nav-toggle.toggle .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.toggle .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #FF0000;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .nav-links.nav-open { max-height: 300px; }
  .nav-links li { margin: 1rem 0; text-align: right; margin-right: 1rem; }
}

/* ====================================
   Terms & Conditions Page – Styles
==================================== */

/* Ensure the black background and text styling on #terms-page */
body#terms-page {
  background-color: #000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Center the main heading on the Terms page */
main > h1 {
  text-align: center;
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 10px #e60000;
  margin: 40px 20px 20px;
}

/* Container surrounding all T&C text */
.terms-container {
  background-color: #111;
  border: 2px solid #e60000;
  border-radius: 8px;
  padding: 30px 25px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* “Last updated” line */
.last-updated {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Section headings (e.g., “1. Definitions”) */
.terms-container h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 0 6px #e60000;
  margin-bottom: 12px;
}

/* Sub-headings (e.g., “2.1 Age Requirement”) */
.terms-container h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 4px #e60000;
  margin-bottom: 8px;
}

/* Paragraphs inside terms-container */
.terms-container p {
  color: #ddd;
  margin-top: 8px;
}

/* Bullet lists inside terms-container */
.terms-container ul {
  margin-left: 20px;
  margin-top: 8px;
  list-style-type: disc;
  color: #ddd;
}

.terms-container ul li {
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Links within the Terms container */
.terms-container a {
  color: #e60000;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}

/* Final “Thank you” note at the bottom */
.closing-note {
  margin-top: 30px;
  font-style: italic;
  color: #ccc;
}

/* ============================
   Privacy Policy (privacy-page)
   ============================ */

/* Ensure the dark background and text styling on #privacy-page */
body#privacy-page {
  background-color: #000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Center the main heading on the Privacy page */
main > h1 {
  text-align: center;
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 10px #e60000;
  margin: 40px 20px 20px;
}

/* Container surrounding all Privacy Policy text */
.privacy-container {
  background-color: #111;
  border: 2px solid #e60000;
  border-radius: 8px;
  padding: 30px 25px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* “Last updated” line */
.privacy-container .last-updated {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Section headings (e.g., “1. Introduction”) */
.privacy-container h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 0 6px #e60000;
  margin-bottom: 12px;
}

/* Sub-headings where used (e.g., “2.1 Email Address”) */
.privacy-container h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 4px #e60000;
  margin-bottom: 8px;
}

/* Paragraphs inside privacy-container */
.privacy-container p {
  color: #ddd;
  margin-top: 8px;
}

/* Bullet lists inside privacy-container */
.privacy-container ul {
  margin-left: 20px;
  margin-top: 8px;
  list-style-type: disc;
  color: #ddd;
}

.privacy-container ul li {
  margin-bottom: 6px;
  line-height: 1.5;
}

/* Links within the Privacy container */
.privacy-container a {
  color: #e60000;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

/* Final “Thank you” note at the bottom */
.closing-note {
  margin-top: 30px;
  font-style: italic;
  color: #ccc;
}

/* ===================================================
   MODAL OVERLAY & CONTENT
   (Paste these into main.css)
   =================================================== */

/* 1) Overlay (hidden by default) */
.modal {
  display: none;              /* hidden until JS shows it */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  justify-content: center;     /* for centering .modal-content */
  align-items: center;
}

/* 2) Inner white box */
.modal-content {
  background-color: #000000;
  padding: 1.5rem;
  border-radius: 6px;
  width: 90%;
  max-width: 400px;
  position: relative;         /* so .close-btn can be absolute */
  box-shadow: 0px 2px 10px rgba(255, 0, 0, 0.362);
}

/* 3) Close “×” button */
.close-btn {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff0000;
}

/* 4) Modal heading */
.modal-heading {
  margin-bottom: 1rem;
  text-align: center;
}

/* ===================================================
   FORM & INPUT STYLES INSIDE MODAL
   =================================================== */

.modal-content label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.modal-content input[type="email"] {
  width: 100%;
  background-color: #e4e4e4;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ff0000;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* 5) Checkbox + label line */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 0.6rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.checkbox-wrapper label {
  font-size: 0.95rem;
  color: #333;
}

.checkbox-wrapper a {
  color: #007bff;
  text-decoration: none;
}

.checkbox-wrapper a:hover {
  text-decoration: underline;
}

/* 6) Subscribe button inside modal */
.modal-content button[type="submit"] {
  background: #FF0000;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.modal-content button[type="submit"]:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

.modal-content button[type="submit"]:not(:disabled):hover {
  background: #f29d00;
}

@media (max-width: 768px) {
  .hero-header {
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  .hero-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 8rem; /* or 6rem — adjust based on where you want it */
  }
}
