/* General Styles and Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #222;
  }
  img {
    max-width: 100%;
    display: block;
  }
  img, .category-card, .goodie-item {
    transition: transform 0.3s ease;
  }
  img:hover, .category-card:hover, .goodie-item:hover {
    transform: scale(1.03);
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  section {
    max-width: 1280px;
    padding: 60px 20px;
  }
  h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
  }
  h1 { font-size: 2.2em; margin-bottom: 0.2em; }
  h2 { font-size: 1.8em; margin-bottom: 0.5em; text-align: center; }
  h3 { font-size: 1.5em; margin-bottom: 0.3em; }
  p { margin: 0.5em 0; }
  
  /* Navbar Section */
  .navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #00adb5; /* teal */
    text-align: center;
    padding: 12px 0;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar.h5{
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .nav-links {
    display: flex;
    gap: 1rem;
  }
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  .menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    margin-right: 15px;
  }
  
  #menu-toggle {
    display: none;
  }
  
  @media (max-width: 768px) {
    .nav-container {
      flex-wrap: wrap;
      justify-content: space-between;
    }
  
    .nav-logo {
      order: 2;
      flex: 1 1 auto;
      text-align: center;
    }
  
    .menu-icon {
      order: 1;
      display: block;
      padding: 10px 0;
    }
  
    .nav-cta {
      order: 3;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #000;
      text-align: center;
      padding: 1rem 0;
      order: 4;
    }
  
    #menu-toggle:checked ~ .menu-icon + .nav-logo + .nav-links {
      display: flex;
    }
  }

  /* Navigation Bar */
.top-navbar {
    background-color: #000;
    padding: 15px 20px;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .nav-logo img {
    height: 3rem;
  }
  
  .buy-btn {
    background-color: #ff4d88;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .buy-btn:hover {
    background-color: #e63e77;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: row;
      gap: 15px;
    }
  }
  

  /* Hero Section Styles */
  .hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    height: auto;
    background-color: black;
  }
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
  }
  .hero::before {
    /* overlay for readability */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .hero h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 3em;
    margin-bottom: 0.3em;
  }
  .hero .event-tagline {
    margin-bottom: 1em;
  }
  .hero .event-details {
    text-transform: uppercase;
    font-size: 2.5em;
    margin-bottom: 0.2em;
  }
  .hero .event-location {
    text-transform: uppercase;
    margin-bottom: 0.2em;
    font-weight: 550;
  }
  .hero .event-details .sep {
    /* separator dot or bar between date and venue */
    display: inline-block;
  }
  @keyframes glowBlink {
    0%, 100% {
      text-shadow: none;
    }
    50% {
      text-shadow:
        0 0 5px #00adb5,
        0 0 10px #00adb5,
        0 0 20px #00adb5,
        0 0 25px #00adb5,
        0 0 30px #00adb5;
    }
  }
  
  .blink-text {
    color: #fff;
    animation: glowBlink 1.5s infinite;
  }
  
  /* Random delay variations */
  .delay-1 { animation-delay: 0s; }
  .delay-2 { animation-delay: 0.3s; }

  .countdown-timer {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5em;
  }
  .countdown-timer div {
    text-align: center;
    margin: 0 10px;
  }
  .countdown-timer span {
    display: block;
    font-size: 2em;
    font-weight: bold;
  }
  .countdown-timer small {
    display: block;
    font-size: 0.8em;
    text-transform: uppercase;
    color: #eee;
    margin-top: 2px;
  }
  .btn {
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .register-btn {
    background-color: #fff;
    color: #00adb5;
    border: 2px solid #00adb5;
    font-weight: bold;
    transition: background 0.3s;
  }
  .register-btn:hover {
    background-color: #008b92;
    color: #fff;
  }
  
  /* Sections - Headings and common styles */
  .section {
    margin: 0 auto;
    padding: 80px 20px;
  }
  .section p.section-tagline {
    text-align: center;
    font-style: italic;
    margin-bottom: 1em;
    color: #555;
  }
  
  /* Categories Section */
  .categories {
    background: #FFFFFF;
  }
  .categories .category-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .category-card {
    flex: 1 1 calc(33% - 20px);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  .category-card h3 {
    color: #00adb5;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .category-card h2 {
    color: #00adb5;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .category-card p {
    font-size: 0.95em;
    line-height: 1.4;
    text-align: center;
  }
  
  /* Basic resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Section container styling */
  #what-you-get {
    padding: 2rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  #what-you-get h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* Mission & Vision Section */
.mission-vision {
    padding: 80px 20px;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}
  
.mv-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;        /* ✅ Ensures horizontal centering */
    max-width: 1280px;
    gap: 40px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .mv-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;        /* ✅ Centers the image */
    align-items: center;
  }
  
  .mv-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
  }
  
  .mv-text {
    flex: 1 1 50%;
  }
  
  .mv-text h2 {
    color: #00adb5;
    font-size: 1.8rem;
    margin-bottom: 0.3em;
  }
  
  .mv-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .mv-container {
      flex-direction: column;
      text-align: center;
    }
  
    .mv-text h2 {
      margin-top: 1.5rem;
    }
  }

  /* Special Guest Section */
.special-guest {
    background: #f9f9f9;
    padding: 80px 20px;
    margin: 0 auto;
  }
  
  .guest-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .guest-photo {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
  }
  
  .guest-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
  }
  
  .guest-info {
    flex: 1 1 50%;
  }
  
  .guest-info h2 {
    color: #00adb5;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .guest-info p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }
  
  .guest-info h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 0.3rem;
  }
  
  .guest-info .title {
    font-size: 1rem;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .guest-container {
      flex-direction: column;
      text-align: center;
    }
  
    .guest-info h2 {
      font-size: 1.6rem;
    }
  }
  
  /* Event Highlights */
.event-highlights {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    margin: 0 auto;
  }
  
  .highlight-container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .event-highlights h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .highlight-subtext {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2.5rem;
  }
  
  .highlight-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }
  
  .highlight-item {
    flex: 1 1 250px;
    max-width: 300px;
    background-color:#f7f7f7 ;
    border-radius: 2rem;
  }
  
  .highlight-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .highlight-item h4 {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00adb5;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .highlight-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  

  /* Goodies Grid */
  .goodies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .goodie-item {
    text-align: center;
  }
  .goodie-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .goodie-item figcaption {
    margin-top: 0.5rem;
    font-size: 0.95em;
    color: #333;
  }
  .goodie-item figcaption small {
    font-size: 0.85em;
    color: #555;
  }
  
  /* CTA Button */
  .size-chart-cta {
    text-align: center;
    margin-bottom: 2rem;
  }
  #viewSizeChartBtn {
    background: #007BFF;       /* Blue background for visibility */
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #viewSizeChartBtn:hover {
    background: #0056b3;       /* Darker blue on hover */
  }
  
  /* Modal overlay */
  .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scrolling if content is long */
    background-color: rgba(0, 0, 0, 0.5); /* Translucent dark background */
  }
  /* Modal content box */
  .modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 1rem 1.5rem;
    max-width: 600px;
    border-radius: 5px;
    text-align: center;
  }
  /* Close button (X) */
  .modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }
  .modal-content .close:hover {
    color: #000;
  }
  
  /* Tabs */
  .tabs {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
  }
  .tab-link {
    flex: 1;
    padding: 0.5rem 0;
    background: #f7f7f7;
    border: none;
    cursor: pointer;
    font-size: 1rem;
  }
  .tab-link:not(:last-child) {
    border-right: 1px solid #ddd;
  }
  .tab-link.active {
    background: #eaeaea;
    font-weight: bold;
  }
  .tab-link:focus {
    outline: none;
  }
  
  /* Tab content images */
  .tab-content img {
    display: none;
    max-width: 100%;
    height: auto;
  }
  .tab-content img.active {
    display: block;
    margin: 0 auto;
  }
  
  /* Race Kit Info Box */
  .race-kit-info {
    background: #F9FAFB;  /* light gray background */
    border-left: 4px solid #007BFF;  /* colored border to highlight */
    padding: 1rem 1.25rem;
    margin-top: 2rem;
    font-size: 0.95rem;
  }
  .race-kit-info p {
    margin: 0.5em 0;
  }
  .race-kit-info strong {
    color: #000;
  }
  
  /* Responsive adjustments (if needed) */
  @media (max-width: 600px) {
    .modal-content {
      width: 90%;
      margin: 10% auto;
      padding: 1rem;
    }
    .tabs {
      flex-direction: column;
    }
    .tab-link {
      border: 1px solid #ddd;
      margin-bottom: -1px;
    }
    .tab-link.active {
      background: #eaeaea;
    }
    .goodies-grid{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }
  
  /* Location Section */
  .location {
    background: #fff;
  }
  .location .venue-name {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 1em;
  }
  .location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .map-container {
    flex: 1 1 400px;
    min-width: 300px;
  }
  .directions {
    flex: 1 1 400px;
    font-size: 0.95em;
  }
  .directions p {
    margin: 0.5em 0;
  }
  .directions ul {
    list-style: disc inside;
    margin-left: 0;
  }
  .directions li {
    margin-bottom: 0.5em;
  }
  .directions em {
    font-style: normal;
    font-weight: bold;
  }

  /* Race Kit Collection Section */
.race-kit-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
    margin: 0 auto;
  }
  
  .race-kit-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .race-kit-section .section-tagline {
    font-style: italic;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
  }
  
  .race-kit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .race-kit-card {
    flex: 1 1 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
  }
  
  .race-kit-card h3 {
    font-size: 1.2rem;
    color: #00adb5;
    margin-bottom: 1rem;
  }
  
  .race-kit-card p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #333;
  }
  
  .race-kit-card strong {
    color: #000;
  }
  
  .race-kit-card em {
    color: #555;
    font-style: italic;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .race-kit-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .race-kit-card {
      text-align: center;
    }
  }
  
  
  /* Reasons to Join Section */
  .reasons {
    background: #f8f8f8;
  }
  .reasons-list {
    list-style: none;
    padding: 0;
    font-size: 0.95em;
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto;
  }
  .reasons-list li {
    background: url('https://img.icons8.com/fluency-systems-regular/8x/checked.png') no-repeat 0 5px;
    /* small check icon as bullet */
    background-size: 16px 16px;
    padding-left: 25px;
    margin-bottom: 1em;
  }
  
  /* FAQ Section */
  .faq {
    background: #fff;
  }
  .faq-item {
    margin-bottom: 15px;
  }
  .faq-item summary {
    font-weight: bold;
    cursor: pointer;
    padding: 8px 0;
    outline: none;
    /* Optional: add an icon indicator for collapsible */
    position: relative;
  }
  .faq-item summary::after {
    content: "＋";  /* plus sign */
    position: absolute;
    right: 0;
    font-weight: bold;
  }
  .faq-item details[open] summary::after {
    content: "−";  /* minus sign when open */
  }
  .faq-item p {
    margin: 10px 0 0 0;
    padding-left: 5px;
  }
  .faq a {
    color: #00adb5;
    text-decoration: underline;
  }
  .more-questions {
    margin-top: 10px;
    font-size: 0.95em;
    text-align: center;
  }
  
  /* Footer */
  .site-footer {
    background: #2e2e2e;
    color: #fff;
    padding: 40px 20px;
    position: relative;
    text-align: center;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .footer-center {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ✅ aligns items to the left */
    text-align: left;        /* ✅ aligns text */
    gap: 10px;
  }

  .footer-left .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .footer-left img {
    height: 4rem;
  }
  
  .footer-logo {
    height: 50px;
    margin-bottom: 10px;
  }
  
  .footer-left a,
  .footer-center a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-left a:hover,
  .footer-center a:hover {
    text-decoration: underline;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 9999;
  }
  
  .whatsapp-float img {
    height: 4rem;
    width: 4rem;
  }

  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-left,
    .footer-center {
      align-items: center;
      text-align: center;
    }
  
    .footer-left {
      align-items: center;
    }
  }
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    /* Hero font adjustments */
    .hero h1 { font-size: 1.8em; }
    .hero .event-tagline { font-size: 1em; }
    .hero .event-details { font-size: 1.3em; }
  
    /* Categories: stack cards vertically */
    .category-cards {
      flex-direction: column;
      align-items: stretch;
    }
    .category-card {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  
    /* Location section: stack map and directions */
    .location-details {
      flex-direction: column;
    }
    .map-container, .directions {
      flex: 1 1 100%;
    }
  }

  /* Supporter/Sponsor Section */
.sponsors {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    margin: 0 auto;
  }
  
  .sponsor-container {
    margin: 0 auto;
  }
  
  .sponsors h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  .sponsor-group {
    margin-bottom: 40px;
  }
  
  .sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .sponsor-logos img {
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .sponsor-logos img:hover {
    transform: scale(1.05);
  }

  .whatsapp-float img{
    border-radius: 1rem;
  }

  .sponsor-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .sponsor-card {
    background: white;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .sponsor-logo {
    width: 120px;
    flex-shrink: 0;
    object-fit: contain;
  }
  
  .sponsor-info {
    text-align: left;
    flex: 1;
  }
  
  .sponsor-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #222;
  }
  .sponsor-info p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
  }

  .social-icons-sponsor{
    display: flex;
    gap: 1rem;
  }
  .social-icons-sponsor img{
    width: 2rem;
  }
  
  @media (max-width: 768px) {
    .sponsor-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .sponsor-info {
      text-align: center;
    }
  }
  
  
  
  