/*:root {
  --accent: #6f2cff;
  --ink: #0b0b12;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  
}


*/

.display-3,
.title {
  font-family: "Poppins", system-ui, sans-serif;
  
  font-size: 70px;

}
.event-hero {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

.bg-media {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  background-image: var(--hero);
  filter: brightness(.55) saturate(1.05);
  transform: scale(1.06);
}

/*.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 35%, rgba(111, 44, 255, .35), transparent 60%);
}*/

.shapes .blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  animation: float 10s ease-in-out infinite;
}

.shapes .b1 {
  background: linear-gradient(45deg, #6f2cff, #ff2cd6);
  top: -120px;
  left: -120px;
  animation-delay: 0s;
}

.shapes .b2 {
  background: linear-gradient(45deg, #00e0ff, #6f2cff);
  bottom: -160px;
  right: -120px;
  animation-delay: 2s;
}

.shapes .grid {
  position: absolute;
  inset: auto -10% -10% -10%;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(to top, black, transparent);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

.pills .pill {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: .35rem .5rem;
  border-radius: 999px;
}

.sub {
  color: #e7e7ef;
}

.btn-hero {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(111, 44, 255, .45);
}

.btn-hero:hover {
  background: #5b12ff;
  color: #fff;
}

.btn-outline-light {
  border-width: 2px;
}

/* Glass */
/* .glass {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
} */

/* Countdown */
.countdown {
  overflow: hidden;
}

.countdown .slot {
  padding: .75rem 1.1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.countdown .slot:last-child {
  border-right: 0;
}

.countdown .num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: "Poppins";
}

.countdown .lab {
  font-size: .8rem;
  opacity: .8;
}

/* Sponsors */
.sponsors .sp {
  height: 90px;
  filter: brightness(1) contrast(1.05);
  opacity: .9;
}

@media(min-width:992px) {
  .sponsors .sp {
    height: 130px;
    padding-left: 103px;
  }
}

@media (max-width: 575.98px) {
  .display-3 {
    font-size: 2.25rem;
  }
}

/* day-one-section-styles */
.custom-hero {
  padding: 60px 0 20px;
}

.custom-hero .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.custom-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: #ec1d25;
}

.section-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead {
  font-size: 18px;
  font-weight: 300;
  color: #000;
  line-height: 30px;
}

.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.custom-badge {
display: inline-block;
    background: linear-gradient(90deg, #600e10, #a16b11);
    color: #fff;
    padding: 16px 51px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 40px
}

.gap-md-5 {
  gap: 6rem !important;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f5a623;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #9b1d20;
  border-radius: 50%;
}

.gallery img {
  border-radius: 12px;
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.alt-section {
  padding: 0 0 10px;
}

.alt-section h2 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.alt-section p {
  color: #000;
}

/*.alt-section img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  margin-bottom: 15px;
}

.alt-section img:hover {
  transform: scale(1.05);
}*/


.list-items li {
  color: #000;
  list-style-type: none;
  line-height: 43px;
  font-weight: 600;
}


.list-items {
  list-style: none;
  margin: 0;
}

.sub-hed {
  font-size: 18px;
  color: #000;
  font-weight: bold;
}

.mt-10 {margin-top: 100px;}