/* General Reset and Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: #903131;
}

/* ========================================== Cursor ========================================== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  z-index: 1000; 
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5px;
}

/* Curtain Styles */
.curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1c1b1b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(0);
}

.curtain-1 {
  z-index: 1003;
  background-color: #0e0e0e;
}

.curtain-2 {
  z-index: 1002;
  background-color: #000000;
}

.curtain-content {
  text-align: center;
  font-size: 2rem;
  padding: 20px;
}
.curtain-content h1 {
  font-size: 5rem;
  margin-bottom: 20px;
}

.curtain-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ========================================== Navbar ========================================== */
.navbar {
  /* position: fixed;
    top: 0;
    left: 0; */
  width: 100%;
  height: 10vh;
  background-color: #010101;
  color: #fff;
  padding: 10px 20px;
  z-index: 1000;
  border-bottom: 2px solid white;
}

.nav-container {
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: 400px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item {
  color: #fff;

  padding: 10px;
  text-decoration: none;

  transition: all 0.3s;
}
.nav-item a {
  font-size: 1.4rem;
}

.nav-item:hover {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: scale(1.01);
  transition: all 0.3s;
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #222;
    width: 100%;
    padding: 10px 0;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block; /* Show the hamburger menu on small screens */
    cursor: pointer;
  }
}
/* ==================== HERO========================= */
.hero {
  width: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container {
  width: 80%;
  height: 100%;
  margin: 0 auto;
}

.about-1, .about-2, .about-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50vh;
  color: white;
  padding: 20px 0;
}

.about-1 .left, .about-2 .left, .about-3 .left {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-right: 20px;
}

.about-1 .left h1, .about-2 .left h1, .about-3 .left h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  color: white;
  border-bottom: 1px solid white;
}

.about-1 .left p, .about-2 .left ul, .about-3 .left ul {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 20px;
}

.about-2 .left ul, .about-3 .left ul {
  padding-left: 20px;
}

.about-1 .right, .about-2 .right, .about-3 .right {
  width: 45%; /* Change this from 50% to 45% to match the left */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-1 .right img, .about-2 .right img, .about-3 .right img {
  width: 100%; /* Change this from 100% to 90% */
  height: auto; /* Use auto for height */
  object-fit: cover;
}

.about-1 .right img{
  margin-top: 28px;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  backdrop-filter:  drop-shadow(4px 4px 10px blue);
}

.about-1 {
  margin-top: 8.5vh;
}
.about-2 {
  flex-direction: row-reverse;
}

.about-2 .right img {
  margin-right: 21rem;
}

/* PAST EVENTSSSSSSSSS styling ==========*/
/* Container styling */
.past-events-full{
  background-color: black;
  width: 100%;
  height: fit-content;
  text-align: center;
  color: white;
}

.past-events-full h1 {
  font-size: 3.5rem;
  padding: 30px 0;
}
.past-events {
  background-color: black;
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  padding: 50px 0;
  flex-wrap: wrap;
}

/* Card styling */
.events {
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: calc(25% - 20px);
  margin: 10px;
  transition: transform 0.2s ease-in-out;
}

.events:hover {
  transform: translateY(-5px);
}

.events img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-info {
  padding: 20px;
}

.event-title {
  font-size: 1.2em;
  margin: 0 0 10px;
}

.event-date {
  font-size: 0.9em;
  color: #ddd;
  margin: 0 0 10px;
}

.event-description {
  font-size: 0.9em;
  margin: 0 0 15px;
}

.event-link {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.event-link:hover {
  background-color: #0056b3;
}

/* Responsive styling */
@media (max-width: 768px) {
  .events {
    width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .events {
    width: calc(100% - 20px);
  }
}
/*======================= ORganisers ======================= */
.organisers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 20px; 
  padding: 20px;
  text-align: center;
  background-color: #000000; 
}

.organisers h1{
  color: white;
  font-size: 3.5rem;
  padding: 30px 0;
}

.organisers-container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.profile {
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 250px; 
  text-align: center; 
  padding: 15px; 
}

.profile img {
  width: 100%;
  height: auto;
  border-radius: 50%; 
}

.profile-info {
  color: white;
}

.profile-info h3 {
  margin: 10px 0 5px;
  font-size: 1.2em; 
}

.profile-info p {
  margin: 0;
  font-size: 1em;
  color: #ccc; 
}

/* Responsive styling */
@media (max-width: 768px) {
  .profile {
    width: 200px; 
  }
}

@media (max-width: 576px) {
  .profile {
    width: 150px; /* Adjust width for mobile screens */
  }
}

/* Slider - Section */

.sponsors-slider {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.sponsors-slider h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  width: 200%;
  animation: slide 20s linear infinite;
}

.slider-item {
  flex: 1 0 10%;
  box-sizing: border-box;
  padding: 0 10px;
}

.slider-item img {
  width: 100%;
  height: auto;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* FAQ Section - Section */

.hero-faq {
  width: 100%;
  background-color: black;
}

.faq-section {
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  width: 60%;
  margin: 0 auto;
  border-radius: 8px;
}
.faq-section h1{
  font-size: 3rem;
  margin-bottom: 5rem;
}

.accordion {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

/* Accordion Button Styling */
.accordion-button {
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: 2px solid #fff;
  padding: 15px;
  text-align: left;
  outline: none;
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  border-radius: 5px;
  position: relative;
  transition: background-color 0.3s ease;
}


.accordion-content {
  display: none;
  overflow: hidden;
  padding: 15px;
  background-color: #000;
  font-size: 1.1rem;
}

/* Arrow Icon Styling */
.accordion-button::after {
  
  font-size: 1.2rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) ;
  transition: transform 0.3s ease;
}

/* Rotate Arrow on Open */
.accordion-button.active::after {
  transform: translateY(-50%) rotate(360deg);
}

/* Show Accordion Content on Click */
.accordion-button.active + .accordion-content {
  display: block;
}















.contact-us {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
 
}

.contact-us h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  /* border: 1px solid #ccc; */
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 2rem;
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #000;
}

.form-group textarea {
  resize: vertical;
}

button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  border-top: 0.4px solid #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  padding: 10px;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-logo {
  max-width: 450px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: #fff;
  margin: 0 5px;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
