body {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.bg-hero-pattern {
    background-image: url('https://placehold.co/1200x600/1e293b/d1d5db?text=Background+Image');
    background-size: cover;
    background-position: center;
}

.vertical-carousel {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: block;
}
@media (min-width: 768px) {
  .vertical-carousel {
    display: none;
  }
}
.carousel-slide {
  height: 100vh;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 200vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-banner {
    transition: box-shadow 0.3s, border 0.3s, background 0.3s;
    cursor: pointer;
    position: relative;
}

.event-banner:hover {
    box-shadow: 0 8px 32px #97e14d;
    transition: box-shadow 0.3s, transform 0.3s;
}

.event-banner:hover .event-banner-icon {
    transform: scale(1.2);
    transition: transform 0.3s;
}

.event-banner .highlight {
    box-shadow: 0 0 0 4px #22d3ee, 0 8px 32px #22d3ee44;
    background: #164e63 !important;
}
.bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-in {
  animation: fade-in 0.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}
.glassback {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: box-shadow 0.3s;
}
.neon-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: #00ffe7;
    box-shadow: 0 0 20px 7px #97e14d, 0 0 10px 8px #8ea63a;
    z-index: 2;
}

.neon-dot-move {
animation: neon-dot-move 8s linear infinite;
}

.neon-dot-move-reverse {
animation: neon-dot-move-reverse 8s linear infinite;
}

@keyframes neon-dot-move {
    0%   { top: 0; left: 0; }
    25%  { top: 0; left: calc(100% - 5px); }
    50%  { top: calc(100% - 5px); left: calc(100% - 5px); }
    75%  { top: calc(100% - 5px); left: 0; }
    100% { top: 0; left: 0; }
}

@keyframes neon-dot-move-reverse {
    0%   { top: 0; left: 0; }
    25%  { top: calc(100% - 5px); left: 0; }
    50%  { top: calc(100% - 5px); left: calc(100% - 5px); }
    75%  { top: 0; left: calc(100% - 5px); }
    100% { top: 0; left: 0; }
}

// hover effect for event-banners
// add scaling and shadow on hover
