:root{
  --purple: #9b30ff;
  --muted: #d1d5db;
  --black: #000;
  --glass: rgba(255,255,255,0.03);
  --text-shadow: 0 6px 24px rgba(155,48,255,0.08);
}
html, body {
  overflow-x: clip;
  position: relative;
}

body {
  margin:0;
  font-family: 'Barlow', sans-serif;
  color: var(--muted);
  background: #000;
}

.smaller-image{
  max-width: 15rem;
}

@media (max-width: 768px){
  .smaller-image{
    max-width: 10rem;
  }
}







/* Sub-backgrounds */
.sub-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh; /* each sub-background takes full viewport height */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain; /* or 'cover' if you want it to fill */
    z-index: -5; /* above main bg, below content */
}

/* Assign each sub-background its SVG */
#page-1 {
  background-image: url('../assets/PAGE-1-1.webp');
  width: 70%;
  height: 200vh; /* Adjust as needed based on image height */
  top: 23vh;
  left: -19vh;
}
#page-2 { background-image: url('../assets/PAGE-2-2.webp'); top: 29vh; background-size: 45%; margin-left: 12%;}
#page-5 { background-image: url('../assets/PAGE-5-5.webp'); top: 115vh; background-size: 70%;}

/* Assign each sub-background its SVG */
#page-6 {
  background-image: url('../assets/PAGE-6-6.webp');
  width: 70%;
  height: 200vh; /* Adjust as needed based on image height */
  top: 223vh;
  left: -19vh;
}
#page-7 { background-image: url('../assets/PAGE-2-2.webp'); top: 229vh; background-size: 45%; margin-left: 12%;}
#page-8 { background-image: url('../assets/PAGE-5-5.webp'); top: 315vh; background-size: 70%;}


#page-9 {
  background-image: url('../assets/PAGE-1-1.webp');
  width: 70%;
  height: 200vh; /* Adjust as needed based on image height */
  top: 423vh;
  left: -19vh;
}
#page-10 { background-image: url('../assets/PAGE-2-2.webp'); top: 429vh; background-size: 45%; margin-left: 12%;}
#page-11 { background-image: url('../assets/PAGE-5-5.webp'); top: 515vh; background-size: 70%;}

/* Assign each sub-background its SVG */
#page-12 {
  background-image: url('../assets/PAGE-6-6.webp');
  width: 70%;
  height: 200vh; /* Adjust as needed based on image height */
  top: 623vh;
  left: -19vh;
}
#page-13 { background-image: url('../assets/PAGE-2-2.webp'); top: 629vh; background-size: 45%; margin-left: 12%;}
#page-14 { background-image: url('../assets/PAGE-5-5.webp'); top: 715vh; background-size: 70%;}

#page-15 {
  background-image: url('../assets/PAGE-1-1.webp');
  width: 70%;
  height: 200vh; /* Adjust as needed based on image height */
  top: 823vh;
  left: -19vh;
}
#page-16 { background-image: url('../assets/PAGE-2-2.webp'); top: 829vh; background-size: 45%; margin-left: 12%;}
#page-17 { background-image: url('../assets/PAGE-5-5.webp'); top: 915vh; background-size: 70%;}




.glow1-bg,
.glow2-bg,
.glow3-bg,
.glow4-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* background-color: black; */
}

.glow1-bg::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    #9b30ff3b 0%,
    rgba(155, 48, 255, 0.1) 70%,
    transparent 100%
  );
  filter: blur(80px); /* smooth out the edges */
  pointer-events: none;
}

.glow2-bg::before {
  content: "";
  position: absolute;
  top: 22%;
  left: -20vw;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    #9b30ff3a 0%,
    rgba(155, 48, 255, 0.1) 70%,
    transparent 100%
  );
  filter: blur(80px); /* smooth out the edges */
  pointer-events: none;
}
.glow3-bg::before {
  content: "";
  position: absolute;
  top: 65%;
  left: -45vw;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    #cb30ff57 0%,
    rgba(155, 48, 255, 0.1) 70%,
    transparent 100%
  );
  filter: blur(80px); /* smooth out the edges */
  pointer-events: none;
}

.glow4-bg::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 70vw;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    #cb30ff57 0%,
    rgba(155, 48, 255, 0.1) 70%,
    transparent 100%
  );
  filter: blur(80px); /* smooth out the edges */
  pointer-events: none;
}


























.bold-purple{
  font-size: 0.9rem;
  color: var(--purple);
  font-weight: bold;
  line-height: 0.8;
}


/* NAVBAR */
.navbar-absolute {
    background: transparent;
    /* position: absolute; */
    top: 0;
    width: 100%;
    z-index: 40;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Optional: when menu is open on mobile */
.navbar-relative {
    position: relative !important;
}

.navbar-absolute.scrolled {
    background: rgba(15, 12, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand { 
    color: #fff; 
    letter-spacing: 1px; 
    font-weight: 700; 
    font-size: 1.5rem;
}

.nav-link { 
    color: rgba(255, 255, 255, 0.916); 
    margin-right: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover { 
    color: var(--purple); 
    transform: translateY(-2px);
}

/* CTA button */
.btn-cta {
    /* background: linear-gradient(90deg, var(--purple), #7d24d9); */
    color: var(--purple);
    text-decoration: none;
    border-radius: 36px;
    /* padding: 10px 20px; */
    /* box-shadow: 0 8px 26px rgba(155, 48, 255, 0.18); */
    border: none;
    font-size: 2.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(155, 48, 255, 0.3);
}



footer {
    background: rgba(10, 8, 20, 0.95);
    padding: 4rem 0 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--purple);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
}

.navbar-logo {
    height: 60px;   /* adjust to fit your navbar */
    width: auto;    /* keeps aspect ratio */
    display: block;
}
/* SECTIONS */
.section {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
/* .section-dark { background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.3)); } */

/* section title */
.section-title {
  color: var(--purple);
  font-weight: 900;
  /* font-size: clamp(24px, 6vw, 64px); */
  font-size: 4.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 50px rgb(155, 48, 255);
}


/* welcome */
/* .speaker-img { width: 150px; height:150px; object-fit:cover; border: 3px solid rgba(155,48,255,0.12); box-shadow: 0 12px 40px rgba(0,0,0,0.6); } */



/* .speaker-img :hover{
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(111, 66, 193, 0.15), rgba(80, 40, 150, 0.15));
  box-shadow: 0 15px 35px rgba(110, 66, 193, 0.574);
} */


/* lead paragraph styling */
.lead-paragraph {
    color: rgb(188 192 197);
    font-size: 1.12rem;
    line-height: 1.3;
}
.lead-paragraph2 {
  color: rgba(209,213,219,0.95);
  font-size: 0.9rem;
  line-height: 1.2;
}


/* footer */
.footer-dark {
  background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,1));
}


/* small devices */
@media (max-width: 575px){
  .navbar-absolute { padding: 0.6rem 0; }
  .nav-link { font-size: 0.92rem; }
  /* .speaker-img { width:120px; height:120px; } */
}

.partner-img {
  max-height: 110px;
  margin: 20px;
  filter: grayscale(100%) brightness(200%);
  transition: all 0.3s ease;
}

.partner-img:hover {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
}

.sponsor-img {
  max-height: 80px;
  margin: 20px;
  filter: grayscale(100%) brightness(200%);
  transition: all 0.3s ease;
}

.sponsor-img:hover {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
}







@media (max-width: 768px) {

  .speaker-popup{
    position: relative !important;
  }


  .margin-when-phone{
    margin-top: 40% !important;
  }

  /* Navigation */
  .navbar-absolute {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    margin: 0 auto;
  }

  
  .navbar-nav {
    gap: 20px !important;
    text-align: center;
  }
  
  .btn-cta {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  
  /* Event details */
  .display-3 {
    font-size: 2.5rem;
  }
  
  .row.text-start.align-items-center {
    text-align: start !important;
  }
  
  .row.text-start.align-items-center .col-12 {
    margin-bottom: 1.5rem;
  }
  
  /* Welcome section */
  .section-title {
    font-size: 2.5rem !important;
  }
  
  /* .speaker-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
  } */
  
  .col-lg-3, .col-lg-8 {
    text-align: left;
    margin-left: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px;
  }
  
  .lead-paragraph, .lead-paragraph2 {
    font-size: 1rem !important;
    text-align: left;
  }
  .for-phone-size{
    padding-left: 3rem !important;
  }
  

  /* Sponsors section */
  .sponsor-img {
    max-height: 50px;
    margin: 10px;
  }
  
  /* Reduce spacing on mobile */
  .py-6, .pt-6, .pb-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .mt-4, .mb-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  br {
    display: none;
  }
}

/* Additional small screen adjustments */
@media (max-width: 576px) {
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .container-fluid.px-5 {
    padding-left: 15px !important;
    padding-right: 15px;
  }
  
  .btn-cta {
    font-size: 1.2rem;
  }
}

        /* Fade + Slide In Up Animation */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade + Slide In Left Animation */
@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply on load */
.animate-on-load {
  opacity: 0; /* start hidden */
  animation: fadeSlideUp 1s ease forwards;
}

.animate-on-load-left {
  opacity: 0;
  animation: fadeSlideLeft 1s ease forwards;
}




/* ####################################
AGENDA
#################################### */

.side-title, .agenda-description{
  font-size: 1.5rem;
}
.side-title-p{
  font-size: 1.5rem;
  padding-top: 0.75rem;
}

.agenda-description-l{
  font-size: 1.5rem;
  line-height: 1.75rem;
}

.underline {
  text-decoration: underline;
}


@media (max-width: 768px) {
    .partner-img {
        max-height: 75px;
        margin: 10px;
    }
}