.alan-sans {
  font-family: "Alan Sans", sans-serif;
  font-optical-sizing: auto;
}
/* Import Google Font (if you are using Alan Sans from Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:opsz,wght@8..144,400;500;600;700&display=swap');

html, body {
  font-family: "Alan Sans", sans-serif !important;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
}


  
  
  /* banner title */

/* Base banner title style */
.banner-title {
 font-family: "Alan Sans", sans-serif; /* modern clean font */
  font-weight: 700; /* bold headline */
  line-height: 1.2;
  font-size: 32px; /* default for mobile */
  color: #fff; /* white text on video/banner */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); /* glow for readability */
  text-transform: uppercase;
}

/* Highlighted span */
.banner-sub-title {
  color: #ffcc00; /* gold accent */
 font-family: "Alan Sans", sans-serif;  /* modern clean font */
  letter-spacing: 1px;
}

/* Responsive scaling */
@media (min-width: 576px) {
  .banner-title {
    font-size: 40px;
  }
}

@media (min-width: 790px) {
  .banner-title {
    font-size: 60px !important;
    width: 60%;
  }
}

@media (min-width: 1200px) {
  .banner-title {
    font-size: 72px;
    width: 70%;
  }
}
    
    


    /* model for image show */
/* Modal Content - Glassy look (you already have this) */
.modal-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Center Image Wrapper */
.gallery-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 20px;
}

/* Image Style */
.gallery-grid img {
  max-width: 70%;   /* medium width */
  max-height: 70vh; /* medium height */
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-grid img {
    max-width: 90%;
    max-height: 60vh;
  }
}

@media (max-width: 576px) {
  .gallery-grid img {
    max-width: 95%;
    max-height: 55vh;
  }
}








/* ===============================
   Base Event Card
   =============================== */
.event-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    aspect-ratio: 4/3;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===============================
   Blur Layer (applies to both with & without image)
   =============================== */
.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit; /* copies background image if set */
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: blur(2px);
    transform: scale(1.05); /* prevent edge clipping */
    z-index: 0;
}

/* Gradient overlay */
.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 0%, transparent 60%, rgba(0,0,0,0.7) 100%);
    transition: opacity 0.3s ease;
    z-index: 1;
}
.event-card:hover::before {
    background: linear-gradient(transparent 0%, transparent 50%, rgba(0,0,0,0.8) 100%);
}

/* ===============================
   Content Layer
   =============================== */
.event-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    text-align: center;
    z-index: 2; /* above blur & overlay */
}
.event-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ===============================
   Placeholder (no image case)
   =============================== */
.event-card.placeholder {
    background-image: url("../img/AALighting.png");
}
.event-card.placeholder .event-card-body {
    bottom: -80px; /* special positioning for placeholder */
}

/* ===============================
   5-column layout on lg screens
   =============================== */
@media (min-width: 1200px) {
    .col-lg-1of5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}



/* Background image blurred using ::before */

.event-card.placeholder::before {
  content: '';
  position: absolute;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
  background: url("../img/AALighting.png") center/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.1); /* extra scale to cover blur cut edges */
  z-index: -1;
}
.event-card.placeholder {
    width: 100%;
}



/* Card content on top */
.event-card.placeholder .event-card-body {
    position: relative;
    bottom: -80px;
    z-index: 2; /* above ::before and ::after */
}








.swiper-button-prev,
.swiper-button-next,
.custom-swiper-prev,
.custom-swiper-next {
  background: #02A18E !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after,
.custom-swiper-prev::after,
.custom-swiper-next::after {
  font-size: 14px !important;
  color: white !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover,
.custom-swiper-prev:hover,
.custom-swiper-next:hover {
  background: rgba(2, 161, 142, 0.5) !important;
  transform: scale(1.1) !important;
}



/* galllery */
.gallery img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
