@font-face {
  font-family: "Evermore";
  src: url("../font/Evermore.otf") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.evermore {
  font-family: "Evermore" !important;
  line-height: 2rem;
}
.titles {
  font-size: 1.2rem !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 4px;
}

.hero p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 1px;
  background-color: #fff;
  margin: 0 auto;
}

/* Featured Event */
.featured-event {
  padding: 3rem 0rem;
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.event-card {
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.event-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .bbt {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .event-image {
    height: 300px;
  }
}

.event-content {
  padding: 3rem;
  padding-top: 0;
}

.event-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.event-details {
  margin-bottom: 2rem;
}

.event-detail {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #ccc;
}

.event-detail-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
}

.event-description {
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btnnn {
  background-color: #fff;
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 114px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* Upcoming Events */
.upcoming-events {
  padding: 3rem 0rem;
  position: relative;
  z-index: 10;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card-small {
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.event-card-small:hover {
  border-color: #666;
}

.event-card-small .event-image {
  height: 200px;
}

.event-card-small .event-content {
  padding: 2rem;
}

.event-card-small .event-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-card-small .event-details {
  margin-bottom: 1rem;
}

.event-card-small .event-detail {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.event-card-small .event-description {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-outline {
  background-color: transparent !important;
  color: #fff !important;
  border: 1px solid #666 !important;
  width: 100% !important;

  font-size: 1.5rem !important;
}

.btn-outline:hover {
  background-color: #fff !important;
  color: #000 !important;
}

/* CTA Section */
.cta-section {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-circle {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.cta-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: -1;
}

.cta-content {
  padding: 4rem 2rem;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}
/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 1rem 2rem;
  }

  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-content {
    padding: 2rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 450px;
}

.card:hover {
  transform: translateY(-5px);
}

.card-media {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation arrows color to white */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  filter: drop-shadow(
    0 0 4px rgba(0, 0, 0, 0.5)
  ); /* Optional: slight shadow for visibility */
}

/* Pagination dots color to white */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    opacity: 0;
  }
}

/* When fullscreen - remove cropping */
video.fullscreen-fix {
  object-fit: contain !important;
  background: #000;
}

.card-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: #333;
}

.card-content p {
  margin: 0;
  color: #666;
  font-size: 1rem !important;
}

h3 > span {
  margin-left: 2rem;
  font-size: 0.6rem !important;
}

.lightbox {
  display: none; /* Hidden initially */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  margin: 20px;
}

.lightbox-close {
  color: white;
  font-size: 40px;
  position: absolute;
  top: 20px;
  right: 35px;
  cursor: pointer;
  z-index: 10000;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Navigation arrows color to white */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  filter: drop-shadow(
    0 0 4px rgba(0, 0, 0, 0.5)
  ); /* Optional: slight shadow for visibility */
}
