/* General Styles */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: black;
    color: black;
}

header {
    background-color: black;
    color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Style for the "ARC" logo */
.logo {
    font-family: 'Aileron', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

/* Adjust the logo size */
.logo img {
    width: 80px;  /* Increase size */
    height: auto;  /* Maintain aspect ratio */
    margin-left: 0px; /* Optional: Adjust spacing from the left */
}

/* Hamburger Menu Icon */
.hamburger-menu {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100;
    color: white;
}

/* Navigation Buttons - Initially Hidden */
.nav-buttons {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

/* Show Navigation Buttons When Active */
.nav-buttons.active {
    display: flex;
}

/* Individual Navigation Buttons */
.nav-button {
    background: transparent;
    border: none;
    color: white;
    text-decoration: none; /* Removes underline */
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 5px;
    display: inline-block;
}

/* Remove underline and purple color from the links inside the nav buttons */
.nav-button a {
    color: white; /* Ensures text is white */
    text-decoration: none !important; /* Removes underline */
}

/* Prevent the links from changing color when hovered */
.nav-button a:hover {
    color: white; /* Keeps the text white when hovering */
    text-decoration: none; /* Removes underline */
}

/* Hover Effect for Navigation Buttons */
.nav-button:hover {
    background: #f04e30;
    color: white;
    text-decoration: none; /* Removes underline */
}

/* Style for the "Run Your Bloc" logo */
.top-right-logo {
    position: absolute;
    right: 70px;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: right;
    padding: 10px;
    background-color: #000;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}


/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

/* Remove margins/padding from the sections that follow the video */
.black-section {
    background-color: black;
    padding: 20px 10%;
    margin: 0;
    color: white;
    text-align: left;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: bold;
    color: #FF4500;
    font-family: 'Arimo', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    text-align: center;
}

.countdown-overlay {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    font-family: 'Outfit', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    display: flex;
}

.countdown-part {
    display: inline-flex; /* Ensures that the number and unit stay on the same line */
    align-items: baseline; /* Aligns the number and the unit along their baseline */
    margin-right: 20px; /* Adds spacing between each part of the countdown */
}

.countdown-number {
    font-size: 2rem; /* Adjust the number size */
    font-weight: bold;
    color: white; /* You can change the color if needed */
}

.countdown-unit {
    font-size: 1.5rem; /* Slightly smaller than the number */
    color: white; /* You can change the color if needed */
    margin-left: 5px; /* Adds space between the number and the unit */
}


/* Styling for the content sections with images */
.content-section {
    text-align: center;
    margin: 20px auto;
}

.content-image {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Register Button Style */
.register-button {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: bold;
    color: white;
    background-color: #FF4500;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

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



.until-start-text {
    position: absolute;
    top: 65%; /* Adjust placement below the countdown */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: normal;
    color: #FF4500; /* Orange color for UNTIL START */
    font-family: 'Outfit', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* General black background section styling */
.black-section {
    background-color: black;
    padding: 20px 10%;
    margin: 0;
    color: white;
    text-align: left;
}

.button-container {
  display: flex;
  flex-direction: column;     /* stack buttons vertically */
  align-items: center;        /* center horizontally relative to container */
  width: fit-content;         /* shrink container to buttons' width */
  margin: 0 auto;             /* center container in the page */
  transform: translateX(-10px); /* fine-tune horizontally over '2 RACE OPTIONS' */
}

.info-button,
.results-button {
  display: block;
  background-color: #FF4500;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
  text-align: center;
}

.info-button {
  margin-bottom: 20px; /* creates the gap between buttons */
}





.info-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px; /* Adjust size if needed */
    color: white;
    max-width: 700px;
    font-weight: normal;
   
    margin-top: 20px; /* Optional: Adds space above the title */
    margin-bottom: 20px; /* Optional: Adds space below the title */
    margin-right: auto;
    margin-left: auto;
  
    
}

/* "Supported by" text */
.supported-by {
    text-align: center;
    font-size: 30px; /* Font size for the title */
    font-weight: bold;
    color: white; /* Orange color */
    margin-bottom: 10px;
    margin-top: 20px;
    gap: 0px



}




.sponsor-carousel {
    background-color: #FF4500; /* Set the background to orange */
    border-radius: 15px; /* Round the corners */
    max-width: 900px; /* Limit the width */
    padding: 20px; /* Add some padding for internal spacing */
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px; /* Optional: Adds space above the sponsor section */
    margin-bottom: 40px; /* Optional: Adds space below the sponsor section */


}



/* The visible container */
.carousel-track-container {
    overflow: hidden;
    width: 100%; /* Make the container take the full width of the parent */
    max-width: 900px; /* This is to match the width of the images below */
}

/* The track that moves */
.carousel-track {
    display: flex;
    gap: 20px; /* Space between logos */
    width: max-content; /* Allow content to flow continuously */
    animation: scrollLoop 10s linear infinite;
}

/* Sponsor logos */
.carousel-track img {
    width: 40%; /* Each image takes 30% of the container */
    max-width: 180px;
    height: auto;
    object-fit: contain;
}


.carousel-track img:nth-child(6) {
    width: 30%; /* Reduce size */
    max-width: 120px; /* Smaller max size */
}
/* Keyframes for infinite scrolling effect */
@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}














/* FAQ Page Style */
.faq-page .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


/* Style for the FAQ page */
body.faq-page {
    background-color: black; /* Black background for FAQ page */
    color: white; /* White text for FAQ page */
    font-family: 'Outfit', sans-serif;
}

.faq-page h1 {
    font-family: 'Outfit', sans-serif;
    color: white;
}

.faq-page .question {
    font-family: 'Outfit', sans-serif;
    color: white;
}




.faq-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Title */
.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FF4500; /* Same color as the register button */
    margin-bottom: 30px;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 30px;
}

/* FAQ Section Title */
.faq-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #FF4500; /* Orange color */
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%
}



.faq-question {
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    padding: 10px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 2rem; /* Increased font size for the question */
    text-decoration: underline;
    text-decoration-color: #FF4500; /* Orange underline */
    width: 100%; /* Ensure the question takes the full width */
}



/* FAQ Answer Styling */
.faq-answer {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    padding-left: 20px;
    color: white;
    
}

.faq-answer.open {
    display: block;
}

/* Arrow Icon */
.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    transform: rotate(0deg); /* Start pointing to the right */
}


/* Table Styling */
.faq-table-container {
    display: block; /* Ensure the table is always visible */
    margin-bottom: 30px;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.faq-table th,
.faq-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.faq-table th {
    background-color: black;
    font-weight: bold;
}




body {
    background-color: black; /* Black background for FAQ page */
    color: white; /* White text for FAQ page */
    font-family: 'Outfit', sans-serif;
}

/* Volunteers Needed Section */
.volunteers-section {
    font-family: 'Outfit', sans-serif;
    margin-top: 20px; /* Space above the section */
    padding: 20px; /* Padding inside the box */
    background-color: black; /* Black background */
    color: #FF4500; /* Orange text */
    font-size: 50px; /* Font size for the title */
    font-weight: bold; /* Bold title text */
    display: flex;
    flex-direction: column; /* Stack title and content */
    margin-left: 15%;
    align-items: flex-start; /* Align title to the left */

}

/* Title Styling */
.volunteers-title {
    text-align: left;
    font-size: 50px; /* Font size for the title */
    color: #FF4500; /* Orange color */
    margin-bottom: 0;
    gap: 0px

}

/* Description and Button Layout */
.description-container {
    display: flex; /* Flexbox layout */
    justify-content: flex-start; /* Align items to the left */
    align-items: center; /* Vertically align items */
    max-width: 100%; /* Ensure proper layout */
}

/* Button Container with Flex-End */
.button-container {
    display: flex;
    justify-content: right; /* Aligns the button to the right */
    width: 50%; /* Ensure the button spans the available space */
}

/* Description Text Styling */
.description {
    font-size: 22px; /* Font size for description */
    font-weight: normal; /* Regular font weight */
    color: white; /* White text for readability */
    line-height: 1.5; /* Improve readability */
    max-width: 600px; /* Limit text width */
    text-align: left; /* Ensure text alignment is straight */
}

/* Sign-Up Button Styling */
.sign-up-btn {
    background-color: #FF4500; /* Vibrant orange */
    border: none; /* Remove border */
    border-radius: 50px; /* Rounded edges */
    color: white; /* White text */
    font-size: 24px; /* Font size */
    font-weight: bold; /* Bold text */
    padding: 20px 40px; /* Larger padding for prominence */
    cursor: pointer; /* Clickable button */
    text-transform: uppercase; /* Uppercase text */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.sign-up-btn:hover {
    background-color: #333; /* Dark background on hover */
}



/* Contact Info Section */
.contact-info-section {
    font-family: 'Outfit', sans-serif; /* Match font */
    margin-top: 50px; /* Space above the section */
    padding: 20px; /* Padding inside the box */
    background-color: black; /* Black background */
    color: #FF4500; /* Orange text for the title */
    font-size: 50px; /* Font size for the title */
    font-weight: bold; /* Bold title text */
    display: flex;
    flex-direction: column; /* Stack title and details */
    align-items: flex-start; /* Align content to the left */
    margin-left: 15%; /* Align to the left with similar margin */
}

.contact-info-title {
    text-align: left;
    font-size: 50px; /* Font size for the title */
    color: #FF4500; /* Orange color */
    margin-bottom: 10px; /* Spacing below the title */
}

.contact-info-details {
    display: flex; /* Use flexbox for side-by-side layout */
    gap: 20px; /* Add spacing between email and phone */
    font-size: 22px; /* Font size for details */
    font-weight: normal; /* Regular font weight */
    color: white; /* White text for readability */
    line-height: 1.5; /* Improve readability */
    max-width: 600px; /* Limit text width */
    text-align: left; /* Align text to the left */
}

.contact-info-details p {
    margin: 0; /* Remove default margin for paragraphs */
}

/* Instagram Link Styling */
.instagram-link {
    color: white; /* Same orange as the title for consistency */
    text-decoration: none; /* Remove underline */
    font-weight: normal; /* Make the link bold */
}

.instagram-link:hover {
    text-decoration: underline; /* Underline on hover for clarity */
    color: #FF4500; /* Optional: Highlight with gold color on hover */
}





/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    /* Adjust overlay text and countdown font size for mobile */
    .overlay-text {
        font-size: 1.5rem;
        top: 30%; /* Adjusted for smaller screens */
    }

    .countdown-overlay {
        font-size: 1.5rem;
        top: 40%; /* Adjusted for smaller screens */
    }
    
     .countdown-number {
        font-size: 1.5rem; /* Smaller font size for mobile */
    }
    
     .countdown-part {
        margin-right: 3px; /* Adjust alignment of countdown parts */
    }


    .countdown-unit {
        font-size: 1.2rem; /* Adjust the unit size for mobile */
         margin-left: 1px; 
    }

    .until-start-text {
        font-size: 1.2rem;
        top: 50%; /* Adjusted placement */
    }

    .register-button {
        font-size: 1rem; /* Increased size for better visibility */
        padding: 12px 25px;
        top: 60%;
    }

    /* Additional responsive adjustments for spacing */
    .video-container {
        height: auto;
        min-height: 400px; /* Minimum height for mobile screens */
    }
    
    
    
    /* Adjust images to be larger on mobile screens */
    .content-image {
        width: 100%;
        max-width: 900px;
        transform: scale(1.1);
    }
    
    

    
    .info-section-title {
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 20px; /* Adjust size if needed */
    color: white;
    margin-top: 20px; /* Optional: Adds space above the title */
    margin-bottom: 20px; /* Optional: Adds space below the title */
   
    }
    
    
       
        
     .button-container {
      display: flex;
      flex-direction: column;
      align-items: center;      /* center horizontally */
      justify-content: center;
      width: 100%;              /* allow full width for centering */
      margin: 0 auto;           /* no manual left margin */
      transform: none;          /* reset desktop translation */
    }
    
    .info-button {
      margin-bottom: 15px;      /* spacing between buttons */
    }
      
 



    
   



    /* "Supported by" text */
    .supported-by {
       
        font-size: 25px; /* Adjust font size */
        margin-bottom: 10px;
        margin-top: 10px;
    
    }
    
    
    /* Sponsor Carousel - Smaller Orange Background */
    .sponsor-carousel {
        background-color: #FF4500;
        border-radius: 10px;
        width: 80%; /* Reduce width */
        max-width: 300px; /* Limit the max size */
        padding: 10px; /* Less padding */
        margin: 15px auto; /* Center it with less margin */
    }

    /* Smaller Carousel Track */
    .carousel-track-container {
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    /* Flex container for sponsor logos */
    .carousel-track {
        display: flex;
        justify-content: center;
        gap: 7px; /* Reduce gap */
        transition: transform 0.5s linear;
    }

    /* Smaller Sponsor Logos */
    .carousel-track img {
        width: 25%; /* Make logos smaller */
        max-width: 80px; /* Limit their size */
        height: auto;
        flex-shrink: 0;
    }
    
    
    .carousel-track img:nth-child(6) {
        width: 10%; /* Reduce size */
        max-width: 60px; /* Smaller max size */
        height: auto;
        flex-shrink: 0;
    }


  
  






    
    .volunteers-section {
        font-size: 30px; /* Smaller font size for mobile */
        margin-left: 2%;
        align-items: flex-start; /* Align title to the left */
        margin-top: -20px;
        
    }

    .volunteers-title {
        font-size: 23px; /* Smaller font size for the title */
    }

    .description-container {
        flex-direction: row; 
        align-items: center; /* Align items to the left */
        
    }

    .description {
        font-size: 12px; /* Smaller font size for description */
        max-width: 100%; /* Ensure description takes full width on mobile */
        text-align: left; /* Keep text aligned to the left */
    }

  

    .sign-up-btn {
        font-size: 10px; /* Adjust button font size */
        padding: 9px 18px; /* Adjust padding for mobile */
        margin-left: 20px;
    }
    
    /* Contact Info Section */
    .contact-info-section {
        font-size: 25px; /* Smaller font size */
        margin-left: 4%; /* Align to match Volunteer Section */
        margin-top: -20px; /* Adjust spacing above the section */
        padding: 10px; /* Padding for mobile */
        align-items: flex-start; /* Align title to the left */
        background-color: black; /* Retain background color */
        color: #FF4500; /* Matching orange text */
        text-decoration: none;
        margin-bottom: 20px;
    }
    
    .contact-info-title {
        font-size: 23px; /* Font size for the title */
        
    }
    
    .contact-info-details {
        font-size: 12px; /* Font size for details */
        text-decoration: none; /* Remove underline */
        
    }
    
    .contact-info-details p {
        margin: 0; /* Remove default margin for paragraphs */
        text-decoration: none;
        
    }



    .instagram-link {
        color: white; /* Same orange as the title for consistency */
        text-decoration: none; /* Remove underline */
        font-weight: normal; /* Make the link bold */
    }
    
    .instagram-link:hover {
        text-decoration: underline; /* Underline on hover for clarity */
        color: #FF4500; /* Optional: Highlight with gold color on hover */
    }
    
  
    
    }









