
  /* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}
   /* Logo styling */
   .logo-overlay {
    position: absolute;
    top: 0px;
    left: 40px;
    z-index: 1001;
}

.logo-overlay img {
    height: 120px;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
    padding: 10px 20px;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: #000;
    height: 130px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif; /* Use Poppins font */
    padding: 10px 20px;
    border-radius: 50px; /* Makes the highlight oval */
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background: #ffae00; /* Highlight background color */
    color: #000; /* Text color when active or hovered */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Add a shadow for effect */
}

/* Hamburger menu */
.hamburger {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: #000;
        height: 100vh;
        width: 250px;
        padding-top: 80px;
        transition: 0.3s ease;
        margin: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 15px 25px;
        width: 100%;
        display: block;
    }

    .logo-overlay img {
        height: 100px;
    }
}


/* Hero Section */
.hero-section {
  background: url('img/A1.jpg') center/100% ;
  position: relative;
  height: 100vh;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.269);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.event-details {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.event-details span {
  font-size: 1rem;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.countdown-timer div {
  text-align: center;
}

.countdown-timer span {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

.buy-tickets {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.buy-tickets:hover {
  background-color: #cc5200;
}

/* Collaborators Section */
.collaborators-section {
  background: #fff;
  padding: 20px 0;
}

.logo-slider {
  display: flex;
  gap: 20px;
  animation: slide 15s linear infinite;
}

.logo-slider img {
  width: 100px;
  height: auto;
}

/* Keyframes for sliding effect */
@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
 /* Add this CSS for the snackbar */
 #snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/* Styles for the Annual Fearless Event Section */
#fearless-event {
    background-color: black; /* Black background */
    color: white; /* White text color */
    padding: 50px 20px; /* Padding for spacing */
    text-align: left; /* Left-align text */
}

#fearless-event .event-container {
    display: flex;
    flex-wrap: wrap; /* Makes the layout responsive */
    align-items: center; /* Center-align items vertically */
    justify-content: center; /* Center items horizontally */
    max-width: 1200px; /* Maximum width for content */
    margin: 0 auto; /* Center the container */
}

#fearless-event .event-container .video-section {
    flex: 1; /* Flexible width */
    min-width: 300px; /* Minimum width for responsiveness */
    padding: 20px; /* Spacing around the video */
}

#fearless-event .event-container .video-section video {
    width: 100%; /* Full width of the container */
    border-radius: 10px; /* Rounded corners for the video */
}

#fearless-event .event-container .text-section {
    flex: 1; /* Flexible width */
    min-width: 300px; /* Minimum width for responsiveness */
    padding: 20px; /* Spacing around the text */
}

#fearless-event .text-section h2 {
    font-size: 2rem; /* Title font size */
    font-weight: bold; /* Bold title */
    margin-bottom: 20px; /* Space below the title */
}

#fearless-event .text-section h3 {
    font-size: 1.5rem; /* Subtitle font size */
    font-weight: normal; /* Regular weight for subtitle */
    margin-bottom: 15px; /* Space below the subtitle */
}

#fearless-event .text-section p {
    font-size: 1rem; /* Font size for paragraphs */
    line-height: 1.6; /* Line spacing for readability */
    margin-bottom: 20px; /* Space between paragraphs */
}

#fearless-event .text-section p span {
    display: block; /* Display as a block element for separation */
    margin-bottom: 10px; /* Space between spans */
}

#fearless-event .text-section strong {
    font-weight: bold; /* Highlight important text */
}

/* Responsive Design */
@media (max-width: 768px) {
    #fearless-event .event-container {
        flex-direction: column; /* Stack video and text vertically on smaller screens */
    }
    #fearless-event .text-section h2 {
        font-size: 1.8rem; /* Slightly smaller title font size */
    }
    #fearless-event .text-section h3 {
        font-size: 1.3rem; /* Slightly smaller subtitle font size */
    }
}
.events-section {
  text-align: center;
  padding: 40px 20px;
}

.events-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.events-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.event-card {
  background-color: #222;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.event-card img {
  width: 100%;
  height: auto;
  display: block;
}

.event-info {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-info .date span:first-child {
  font-size: 24px;
  font-weight: bold;
}

.event-info .date span:last-child {
  font-size: 14px;
}

.more-info-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.event-description {
  display: none;
  padding: 10px;
  background-color: #333;
  color: white;
  font-size: 14px;
  border-top: 1px solid #444;
}
/* Stats Section Styling */
.stats-section {
  background-color: #000; /* Black background */
  padding: 50px 0; /* Top and bottom spacing */
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; /* Center the section */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.stat-item {
  text-align: center;
  color: #fff; /* White text */
  margin: 20px;
}

.stat-item h2 {
  font-size: 2.5rem;
  color: #f0c041; /* Golden text color */
  margin: 10px 0;
}

.stat-item p {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 5px 0;
  letter-spacing: 1px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

 /* Ticket Cards Section */
 .ticket-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #000; /* Updated background color to black */
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.card {
  background-color: #000; /* Keep card background black */
  padding: 0;
  border: 1px solid #fff; /* Add a white border for visibility */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); /* White shadow for a soft glow effect */
  width: 300px;
  overflow: hidden;
  position: relative;
  text-align: left;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: orange;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff; /* Ensure text stands out on black background */
}

.card-content p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ddd; /* Softer white for contrast */
  font-weight: bold; /* Make "Buy early and save 10%" bold */
}

.card-content span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff; /* Make ticket price bold and white */
}

.card-content:hover {
  transform: scale(1.05); 
  transition: transform 0.3s;
}

/* Ticket Selection Section */
.selection-container {
  margin: 40px auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.selection-container select,
.selection-container input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.selection-container .total {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  color: #fff; /* Ensure total is visible on black background */
}

.purchase-btn {
  padding: 10px 20px;
  font-size: 1.2rem;
  background-color: #ff5733;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 20px auto;
}

.purchase-btn:hover {
  background-color: #ff4500;
}


  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background-color:#000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
  }

  .modal-content input {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
  }

  .modal-content button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff5733;
    color: white;
    border: none;
    border-radius: 5px;
  }
  /* Ticket Section */
/* General Styles */
.hidden {
  display: none;
}
/* Ticket Section */
.ticket-section {
  text-align: center;
  background-color: black;
  padding: 40px 20px;
}

.thank-you-message {
  margin-top: 20px;
}

.thank-you-message p {
  color: white;
  font-style: italic;
  font-size: 1.2rem;
}

.action-buttons {
  margin-top: 10px;
}

.orange-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff5733;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin: 10px;
}

.orange-button:hover {
  background-color: #ff4500;
}

/* Schedule Section */
.event-schedule {
  padding: 40px 20px;
  text-align: center;
  background-color: black;
  color: white;
}

.event-schedule h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.tabs {
  margin-bottom: 20px;
}

.tab {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff5733;
  color: white;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.tab.active {
  background-color: #ff4500;
}

.schedule-table {
  margin-top: 20px;
  overflow-x: auto;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 10px;
  border: 1px solid white;
  text-align: center;
}

/* Gallery Section */
.gallery {
  padding: 40px 20px;
  text-align: center;
  background-color: black;
  color: white;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery-buttons {
  margin-top: 20px;
}

.gallery-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background-color: #ff5733;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
}

.gallery-button:hover {
  background-color: #ff4500;
}


  .testimonial-section {
    text-align: center;
    background-color: #000; /* Greyish white background */
    padding: 0; /* Only vertical padding, no horizontal padding */
    margin: 0; /* Remove default margins */
    width: 100%; /* Ensure the section takes up the full width */
    color: #000000; /* Default text color in black */
}

.testimonial-section blockquote {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff; /* Make blockquote text black */
    font-weight: bold; /* Make text bold */
}

.testimonial-section cite {
    display: block;
    margin-top: 10px;
    color: #fff; /* Make citation black */
    font-weight: bold; /* Make citation bold */
}

  .footer {
    background-color: #222; /* Matches dark theme in screenshot */
    color: #fff;
    padding: 40px 20px; /* Increased padding for better spacing */
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .footer-column {
    flex: 1 1 30%; /* Allows responsive layout */
    margin: 10px; /* Adds spacing between columns */
}

.footer .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-column ul li {
    margin: 5px 0;
}

.footer .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer .footer-column ul li a:hover {
    color: #ffae00;
    text-decoration: underline;
}

.footer .footer-socials {
    text-align: left;
    margin-top: 20px;
}

.footer .footer-socials a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
}

.footer .footer-socials a:hover {
    color: #ffae00;
}

.footer .footer-copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.footer .footer-copyright span {
    font-weight: bold;
}
