/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Comfortaa", sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }

  h1, h2 {
    color: #2b2b2b;
    font-family: "Anton SC", sans-serif;
    font-weight:500;
    letter-spacing: 1px;
  }

  p {
    color: #666;
    line-height: 1.7;
  }

  
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000;


  }

  nav {
    font-family: "Anton SC";
    padding: 30px;
    padding-top: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    left: 20%;
  }

  nav img {
    width: 0px;
  }



  /* Events Section Styles */
#events {
  padding: 50px;
  text-align: center;
}

#events h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.event-details {
  margin-top: 20px;
  font-size: 1.2rem;
}

.swiper-container {
  width: 80%;
  height: 300px;
  margin: 0 auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-btn {
  background-color: #b33e3e;
  border: none;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.ticket-btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-family: "Comfortaa", sans-serif;
  font-weight: bold;
  font-size: 1rem;
}

.ticket-btn:active {
  transform: translateY(.2rem);
}

.ticket-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #f4de97, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.5s;
}

.ticket-btn:hover::before {
  content: "";
  left: 100%;
}



footer {
  background-color: #000;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer p {
  font-family: "Anton SC", sans-serif;  
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
}

