 :root {
    --red: #FF2055;
    --orange: #FF6B00;
    --yellow: #FFCA00;
    --green: #00B359;
    --cyan: #00AADD;
    --blue: #2B4FFF;
    --purple: #6F5FA0;
    --pink: #E16DAB;
    --dark: #111118;
    --text: #1A1A2E;
    --muted: #6B6B80;
    --bg: #FFFFFF;
    --bg2: #F7F7FB;
    --border: #E8E8F0;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {scroll-behavior: smooth;
  scroll-padding-top: 120px;}

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }
#volunteer .btn-outline {
  display: none;
}
.past-event {
  position: relative;
}

/* Full overlay that blurs the entire poster */
.past-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  transition:.3s all;
  z-index: 1;
  pointer-events: none; /* keeps lightbox clickable */
}
.taped-photo-row .taped-photo:hover .past-overlay {
  
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:.3s all;
}

/* Stamp sits ABOVE the blur */
.past-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);

  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: var(--purple);
  border: 4px solid var(--purple);
  padding: 0.5rem 1.5rem;

  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  z-index: 2; /* 👈 ensures it's above blur */
  pointer-events: none;
}
  .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.06s; }
.reveal--delay-2 { transition-delay: 0.12s; }
.reveal--delay-3 { transition-delay: 0.18s; }
.reveal--delay-4 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.menu-icon {
    position: relative;
    padding: 0.3rem;
    display: inline-flex;
    cursor: pointer;
    color: inherit;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    z-index: 1040;
}
.menu-icon-box {
    width: 26px;
    height: 26px;
    display: inline-block;
    position: relative;
}
.menu-icon-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.menu-icon-inner,
.menu-icon-inner::before,
.menu-icon-inner::after {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: black;
}
.menu-icon-inner::before,
.menu-icon-inner::after {
    content: "";
    display: block;
}
.menu-icon-inner::before {
    top: -8px;
}
.menu-icon-inner::after {
    bottom: -8px;
}


.menu-active .menu {
    transform: translateX(0);
}
.menu {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--purple);
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1030;
    transform: translateX(-100%);
    transition: transform 300ms cubic-bezier(.2, 0, .2, 1);
}
.menu-inner ul li a {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  width: 100%;
  display: inline-block;
  text-decoration: none;
    font-family: 'Unbounded', sans-serif;
}
.menu-inner ul li {
  margin: 15px 0px;
}
.menu-inner ul {
  list-style: none !important;
}
.menu-inner {
    display: flex;
    flex-direction: column;
}
nav .container {display:none;}
.c_hamburger {
  cursor: pointer;
  height: 50px;
  margin: 0 auto;
  position: relative;
  width: 60px;
}
.c_hamburger .c_hamburger__line {
  background-color: var(--pink);
  border-radius: 3px;
  height: 8px;
  position: absolute;
  transition-duration: 150ms;
  transition: cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
}
.c_hamburger .c_hamburger__line:nth-child(1) {
  left: 0px;
  top: 0px;
  transition-duration: 150ms;
}
.c_hamburger .c_hamburger__line:nth-child(2) {
  left: 0px;
  opacity: 1;
  top: 21px;
}
.c_hamburger .c_hamburger__line:nth-child(3) {
  bottom: 0px;
  left: 0px;
  transition-duration: 150ms;
}
.c_hamburger.open .c_hamburger__line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
  transition-duration: 150ms;
}
.hamburger.c_hamburger {
  transform: scale(.5);
}
.c_hamburger.open .c_hamburger__line:nth-child(2) {
  opacity: 0;
}
.c_hamburger.open .c_hamburger__line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
  transition-duration: 150ms;
}
.volunteer-grid {
  margin-bottom: 20px!important;
}
.taped-photo-row {
  margin: 0 -10px;
}

/* Hide all slides by default */
.taped-photo-row .slick-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.slick-dots li.slick-active button::before, .slick-next::before, .slick-prev::before {
  color: #e16dab!important;
}
body .slick-prev {
  left: -35px;
  z-index:9999;
}
.slick-next::before, .slick-prev::before {font-size:30px!important;}
/* Only show visible slides */
.taped-photo-row .slick-active {
  opacity: 1;
  pointer-events: auto;
}
.slick-dots li button::before {
  font-size: 22px!important;
  margin-top: 15px;
}
.taped-photo-row .taped-photo {
  margin: 0 10px!important;
}
#calendar .container {
  margin-top: -30px !important;
  display: inline-block;
}

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Unbounded', sans-serif;
    letter-spacing: 1px;
  }

.nav-cta {
  background: linear-gradient(135deg, #E16DAA, #EA59A4);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,51,102,0.4);
  transition:.3s all;
  transform:scale(1);
  color: #fff !important;
}
.nav-cta:hover {
  transition:.3s all;
  transform:scale(1.2);
  box-shadow: 0 6px 20px rgba(255,51,102,0.5);
}
.nav-links li a {position: relative;
  transition: .3s all;}
.nav-links li a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform .3s;
}
.nav-links li a:hover::after {
  transform-origin: bottom left;
  transform: scaleX(1);
}
.nav-links li:nth-child(1) a:hover, .nav-links li:nth-child(6) a:hover {
  color: #e6448e;
}
.nav-links li:nth-child(1) a:hover::after, .nav-links li:nth-child(1) a::after, .nav-links li:nth-child(6) a:hover::after, .nav-links li:nth-child(6) a::after {
  background-color: #e6448e;
}
.nav-links li:nth-child(2) a:hover, .nav-links li:nth-child(7) a:hover {
  color: #ff9c53
}
.nav-links li:nth-child(2) a:hover::after, .nav-links li:nth-child(2) a::after, .nav-links li:nth-child(7) a:hover::after, .nav-links li:nth-child(7) a::after {
  background-color: #ff9c53;
}
.nav-links li:nth-child(3) a:hover {
  color: #ffd05e
}
.nav-links li:nth-child(3) a:hover::after, .nav-links li:nth-child(3) a::after {
  background-color: #ffd05e;
}
.nav-links li:nth-child(4) a:hover {
  color: #52d89c;
}
.nav-links li:nth-child(4) a:hover::after, .nav-links li:nth-child(4) a::after {
  background-color: #52d89c;
}
.nav-links li:nth-child(5) a:hover {
  color:  #4b88f8;
}
.nav-links li:nth-child(5) a:hover::after, .nav-links li:nth-child(5) a::after {
  background-color: #4b88f8;
}

  /* HERO */
  .hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    margin-top: 95px;
  }

  /* Light pastel orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
    animation: float 9s ease-in-out infinite;
  }
  .orb-1 { width: 600px; height: 600px; background: var(--purple); top: -200px; left: -150px; animation-delay: 0s; }
  .orb-2 { width: 500px; height: 500px; background: var(--red); top: 40%; right: -200px; animation-delay: -3s; }
  .orb-3 { width: 450px; height: 450px; background: var(--cyan); bottom: -100px; left: 25%; animation-delay: -5s; }
  .orb-4 { width: 350px; height: 350px; background: var(--yellow); top: 15%; left: 15%; animation-delay: -2s; }
  .orb-5 { width: 300px; height: 300px; background: var(--pink); top: 30%; left: 40%; animation-delay: -4s; }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
  }

  .hero-rainbow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--cyan), var(--blue), var(--purple), var(--pink));
  }

  .hero-tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease both;
    background: rgba(139,31,255,0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(139,31,255,0.2);
  }

  .hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    line-height: 0.93;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  .hero-title .line1 { display: block; color: var(--text); }
  .hero-title .line2 {
    display: block;
    background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--cyan), var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200%;
    animation: shimmer 4s linear infinite, fadeUp 0.8s ease 0.2s both;
  }

  @keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }

  .hero-sub {
  font-size: 22px;
    color: var(--muted);
    margin-top: 2rem;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease 0.3s both;
    max-width: 850px;
  }

  .hero-sub strong { color: var(--text); font-weight: 600; }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: linear-gradient(135deg, #E16DAA, #EA59A4);
    color: white;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(110, 95, 160, .35);
  }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(110, 95, 160,0.45);
  }
  
  .btn-outline {
      background: var(--purple)!important;
      color: #fff;
    font-family: 'Unbounded', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      padding: 1rem 2.5rem;
      border-radius: 100px;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 30px rgba(110, 95, 160, .35);
    }
  .btn-outline:hover {
    border-color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(110, 95, 160,0.45);
  }

  /* DATE STRIP */
  .date-strip {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    padding: 1.5rem 3rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07);
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease 0.5s both;
    flex-wrap: wrap;
    justify-content: center;
  }

  .date-item {
    text-align: center;
  }

  .date-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }

  .date-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
  }
  .hero-tag span{
    color: var(--pink) !important;
  }

  .date-sep {
    width: 1px;
    background: var(--border);
    align-self: stretch;
  }

  /* ABOUT SECTION */
  .about {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .section-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
  }

  .about-left .section-tag, #calendar .section-tag, .rsvp-tag {color: #6E5FA0;
  background: rgba(110, 95, 160, .2);
  border: 1px solid rgba(110, 95, 160, .2);}

  .venue .section-tag {
  display: inline-block;
  max-width: 165px;
  margin-bottom: 0;
}
#venue .btn-outline {
  background: rgba(255,255,255,.6);
}

  .section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text);
  }

  .section-title::after {
    height: 6px;
    width: 150px;
    content: "";
    display: block;
    margin-top: 15px;
  }
  #about .section-title::after, #calendar .section-title::after, .rsvp  .section-title::after {
    background: var(--purple);
  }
  #venue .section-title::after, #volunteer .section-title::after {
    background: var(--pink);
  }
  .rsvp .section-title::after {
  margin: auto;
  margin-top: 15px;
}

  .about-text {
    color: var(--muted);
    line-height: 30px;
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
  }

  .stat-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: white;
    border: 2px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  .stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .stat-card:nth-child(1) { border-top: 4px solid var(--red); }
  .stat-card:nth-child(2) { border-top: 4px solid var(--cyan); }
  .stat-card:nth-child(3) { border-top: 4px solid var(--orange); }
  .stat-card:nth-child(4) { border-top: 4px solid var(--purple); }

  .stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-desc {
    font-size: 0.85rem;
    color: var(--muted);
  }

  .about-visual { position: relative; }

  .about-card-main {
border: none;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  height: auto;
  position: relative;
  z-index: 2;
  }
   .about-card-main img {
  border-radius: 20px;}

  .volunteer-header .btn-outline {
  margin: auto;
  margin-right: 0;
}
  .about-visual::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -5px;
    background-color: #fff0;
    border: 3px solid var(--pink);
    height: 20%;
    width: 20%;
    border-radius: 20px;
  }

  .about-float-card {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: white;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9;
  }

  .float-icon {
    font-size: 2rem;
  }
  .float-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
  }
  .float-text span {
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
  }


  .ripped-notebook-section {
  position: relative;
  padding: 110px 20px;
  background:
    repeating-linear-gradient(
      to bottom,
      #fcfbf4 0px,
      #fcfbf4 30px,
      #dbe8f5 31px,
      #fcfbf4 32px
    );
  overflow: visible;
}

.ripped-notebook-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 72px;
  width: 2px;
  background: rgba(210, 70, 70, 0.35);
  z-index: 1;
}

.tear {
  position: absolute;
  left: 0;
  width: 100%;
  height: 62px;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.tear svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tear path {
  fill: #fff;
}

.tear-top {
  top: 0;
  transform: translateY(-20%);
}

.tear-bottom {
  bottom: 0;
  transform: translateY(20%);
}

.ripped-notebook-inner {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: 0 auto;
  padding: 20px;
}

.taped-photo-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.taped-photo {
  position: relative;
  width: min(100%, 400px);
  background: #fff;
  padding: 14px 14px 20px;
  border-radius: 2px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.08);
}

.taped-photo img {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
  border: 1px solid #e8e8e8;
}


.taped-photo-row .slick-list {
  overflow: hidden;
  padding-top: 14px;
  padding-bottom: 24px; /* 👈 THIS is the key */
}


.taped-photo-row .slick-track {
  display: flex;
}

.taped-photo-row .slick-slide {
  padding:10px;
}


.taped-photo-row .taped-photo {
  margin: 0;
  top: 0;
}
.tape {
  position: absolute;
  top: -10px;
  width: 84px;
  height: 28px;
  background: rgba(245, 230, 180, 0.72);
  border-left: 1px solid rgba(255,255,255,0.45);
  border-right: 1px solid rgba(0,0,0,0.05);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
  backdrop-filter: blur(1px);
  z-index: 5;
}

.tape::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.06) 0 6px,
      rgba(0,0,0,0.02) 6px 12px
    );
  opacity: 0.35;
}

.tape-left {
  left: 18px;
  transform: rotate(-10deg);
}

.tape-right {
  right: 18px;
  transform: rotate(9deg);
}
.events-container .section-title::after {
  background: var(--pink);
}
.all-events {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.events-container .taped-photo img {
  height: 500px;
}
/* Lightbox background */
#lightbox {
  position: fixed;
  inset: 0; /* shorthand for top/left/right/bottom */
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 2147483647; /* basically max safe value */
  
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Active state */
#lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Image */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

/* Optional: cursor hint */
.lightbox-trigger img {
  cursor: zoom-in;
}


@media(max-width:1200px) {
  #events .volunteer-header div, #events .volunteer-header h2 {
  text-align: center;
  width: 100%;
}

#events .volunteer-header h2::after {
  margin: auto;

    margin-top: auto;

  margin-top: 10px;
}
}

@media (max-width: 1000px) {
  body .slick-next {
  right: 10px;
  z-index: 999;
}
body .slick-prev {
  left: 0;
  z-index: 999;
}
 body .volunteer-grid {
  margin-bottom: 0px!important;
}
body #calendar .container {
  margin-top: 0px !important;
}


  .volunteer-grid {
  display: flex!important;
  flex-wrap: wrap;
}
  .about-float-card {
  width: 100%;
  left: 0;
  position: relative;
  bottom: 0 !important;
}
  .about-card-main {
  display: none !important;
}
  .about-visual::before,.about-visual::after {display:none;}
  #events .ripped-notebook-inner {
  padding: 0 !important;
}
  .nav-links {display:none;}
  #about {
  display: flex;
  flex-wrap:wrap;
  padding: 60px 20px;
}
.about-visual {
  width: 100%;
}
.hero-tag {font-size:13px!important;}
  .ripped-notebook-inner {
    padding:0!important;
  }

  .ripped-notebook-section::before {
    left: 40px;
  }

  .taped-photo {
    width: min(100%, 300px);
  }

  .taped-photo img {
    height: 220px;
  }
}


.taped-photo-row .taped-photo {
  margin: 0;
}
.taped-photo-row .slick-list {
  overflow: hidden;
}
@media (max-width: 950px) {
  .ripped-notebook-section {
    padding: 80px 16px;
  }

  .ripped-notebook-inner {
    padding: 10px 10px 10px 48px;
  }

  .ripped-notebook-section::before {
    left: 26px;
  }

  .tear {
    height: 44px;
  }

  .taped-photo-row {
    gap: 22px;
  }

  .taped-photo {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .taped-photo img {
    height: auto;
    aspect-ratio:auto!important;
  }
  .events-container .taped-photo img {
  height: auto!important;
}
}

  .about-visual::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--purple);
  opacity:.8;
  height: 40%;
  width: 40%;
  border-radius: 20px;
  z-index: 0;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  /* ===== CALENDAR ===== */
  #calendar {
  max-width: 950px;
  margin: auto;
  padding: 60px 20px;
  padding-top:0;
}
#calendar .section-desc {
  color: var(--muted);
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 1rem;
}
  #calendar { background: var(--light-bg); }
  .cal-label { background: #0099FF; color: white; }
  .schedule-grid {
    display: grid; gap: 16px; margin-top: 48px;
  }
  .schedule-item {
    display: grid; grid-template-columns: 120px 1fr;
    gap: 0; background: white; border-radius: 20px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .schedule-item:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
  .schedule-time {
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; padding: 20px 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem; text-align: center;
    color: white; line-height: 1.1;
  }
  .schedule-time {
  font-size: 26px;
  font-weight: bold;
}
  .schedule-time span { font-family: 'Nunito', sans-serif; font-size: 0.75rem; font-weight: 300; opacity: 0.85; }
  .schedule-body { padding: 20px 28px; }
  .schedule-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 4px; }
  .schedule-desc { color: #666; font-size: 18px; line-height: 1.6; }
  .schedule-tag {
    display: inline-block; margin-top: 8px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 3px 12px; border-radius: 50px;
  }

  /* volunteer SECTION */
  .volunteer {
    padding: 8rem 3rem;
    background: #EAE6F6;
  }

  .volunteer-header {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
  }


.volunteer-header .section-tag, .venue .section-tag {
  color: #E26EAB;
  background: rgba(226, 110, 171, .1);
  border: 1px solid rgba(226, 110, 171, .2);
}

  .volunteer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .volunteer-card {
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border);
    background: white;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }

  .card-container {
    display: flex;
  }
  .volunteer-dets {
    padding-left: 20px;
  }
  .volunteer-dets .volunteer-name {
    font-size: 20px;
    letter-spacing: .5px;
    margin-bottom: 10px;
  }

  .volunteer-card:hover { transform: translateY(-6px); }
  .volunteer-card:nth-child(1):hover, .schedule-item:nth-child(2):hover, .schedule-item:nth-child(6):hover  { box-shadow: 0 16px 40px rgba(255,32,85,0.2); border-color: var(--red); }
  .volunteer-card:nth-child(2):hover, .schedule-item:nth-child(1):hover, .schedule-item:nth-child(5):hover { box-shadow: 0 16px 40px rgba(255,202,0,0.25); border-color: var(--yellow); }
  .volunteer-card:nth-child(3):hover, .schedule-item:nth-child(4):hover { box-shadow: 0 16px 40px rgba(0,179,89,0.2); border-color: var(--green); }
  .volunteer-card:nth-child(4):hover{ box-shadow: 0 16px 40px rgba(43,79,255,0.2); border-color: var(--blue); }
  .volunteer-card:nth-child(5):hover { box-shadow: 0 16px 40px rgba(139,31,255,0.2); border-color: var(--purple); }
  .volunteer-card:nth-child(6):hover, .schedule-item:nth-child(3):hover { box-shadow: 0 16px 40px rgba(0,170,221,0.2); border-color: var(--cyan); }

  .volunteer-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }

  .performer-time {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .volunteer-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    color: var(--text);
  }

  .volunteer-desc {
    font-size:18px;
    color: var(--muted);
  }

  .headliner-badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--red), var(--pink));
    color: white;
    margin-top: 0.7rem;
  }


  /* Right-side decorative half circle */
.decor-half-circle {
position: relative;
  top: 53%;
  left: -155px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(225, 109, 170, 0.35);
  pointer-events: none;
  z-index: 9;
  margin-bottom: -400px;
}
.right-side-circle-container {
  width: 100%;
  height: 345px;
  position: relative;
  z-index: 2;
  margin-bottom: -145px;
  margin-top: -135px;
}
.right-side-circle-container .right-cirlce {
  height: 400px;
  width: 400px;
  border-radius: 50%;
  position: absolute;
  right: -170px;
  background: rgba(225, 109, 170, 0.35);
  z-index: 9;
}

.right-cirlce,
.decor-half-circle {
  will-change: transform;
  transition: transform 0.08s linear;
}


  /* SCHEDULE */
  .schedule {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .schedule-header .section-tag { color: var(--green); background: rgba(0,179,89,0.08); border: 1px solid rgba(0,179,89,0.2); }

  .days-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2.5rem 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 0.4rem;
    border-radius: 12px;
    width: fit-content;
  }

  .day-tab {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--muted);
    border: none;
    background: transparent;
  }

  .day-tab.active {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: white;
    box-shadow: 0 4px 15px rgba(43,79,255,0.3);
  }

  .day-tab:hover:not(.active) { color: var(--text); background: white; }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--border);
  }

  .tl-time {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
  }

  .tl-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tl-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
  }

  .tl-stage {
    font-size: 0.78rem;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-weight: 600;
  }

  .stage-main { background: rgba(255,32,85,0.1); color: var(--red); }
  .stage-community { background: rgba(0,170,221,0.1); color: var(--cyan); }
  .stage-pride { background: rgba(139,31,255,0.1); color: var(--purple); }

.countdown{
  --size: 170px;
  --gap: 18px;
  --num: #222;
  --label: rgba(0,0,0,.55);

  display:flex;
  flex-wrap:wrap;
  gap:var(--gap);
  align-items:center;
  justify-content:center;
}

.cd-unit{
  width:var(--size);
  height:var(--size);
}

.cd-unit svg{
  width:100%;
  height:100%;
  overflow:visible;
}

.shape{
  fill:currentColor;
  filter:url(#softShadow);
  transition:all .3s ease;
}

/* COLORS */
.cd-scallop{ color:#7FA2FF; }
.cd-circle{ color:#33E2B9; }
.cd-star{ color:#F5A0A0; }
.cd-tilt{ color:#FFD52B; }
.cd-seconds{ color:#222; }

.num{
  font-family: 'Unbounded', sans-serif;
  font-size:50px;
  font-weight:800;
  fill:var(--num);
}

.label{
  font-family: 'DM Sans', sans-serif;
  font-size:18px;
  font-weight:700;
  letter-spacing:.08em;
  fill:var(--label);
}

/* dark seconds circle */
.cd-dark .num{ fill:#fff; }
.cd-dark .label{ fill:rgba(255,255,255,.75); }

/* subtle hover lift */
.cd-unit:hover .shape{
  transform:translateY(-4px);
}

/* responsive */
@media (max-width:720px){
  .countdown{ --size:140px; }
  .num{ font-size:58px; }
}
@media (max-width:480px){
  .countdown{ --size:110px; }
  .num{ font-size:44px; }
  .label{ font-size:14px; }
}
  /* VENUE */
  .venue {
    padding: 8rem 3rem;
    background: #EAE6F6;
    position: relative;
    padding-top:60px;
  }

  .venue-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .venue-map {
    background: linear-gradient(135deg, #EEF6FF, #F0EEFF);
    border: 2px solid var(--border);
    border-radius: 24px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  }
  

  .section-with-circles {
  position: relative;
  overflow: hidden;
}

.section-with-circles::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 420px;
  left: -140px;
  bottom: -140px;
  pointer-events: none;

  background:
    radial-gradient(circle at 35% 70%, rgba(91, 206, 250, 0.65) 0%, rgba(91, 206, 250, 0.65) 40%, transparent 41%),
    radial-gradient(circle at 55% 55%, rgba(245, 169, 184, 0.65) 0%, rgba(245, 169, 184, 0.65) 40%, transparent 41%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 40%, transparent 41%);

  z-index: 0;
}

  /* Light map grid */
  .venue-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(43,79,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(43,79,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .map-pin {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .map-label {
    position: relative;
    z-index: 2;
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    color: var(--text);
  }

  .map-sublabel {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
  }

  .venue-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .venue-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .ict-logo {
  position: absolute;
  right: -175px;
  width: 600px;
  height: 600px;
  background-size: contain !important;
  background-position: center center !important;
  bottom: -71px;
}

  .venue-icon {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .venue-detail-item:last-child {
  margin-bottom: 20px;
}

  .venue-detail-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size:20px;
    margin-bottom: 0.3rem;
    color: var(--text);
  }

  .venue-detail-text {
    color: var(--muted);
    font-size: 18px;
    line-height: 30px;
  }

.section-slant-both {
clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
}
.section-diagonal-reverse {
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 88%);
}
.section-diagonal-bottom {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 100%,
    0 88%
  );
}
.tear.tear-bottom path {
  fill: #eae6f6;
}

  /* rsvp */
  .rsvp {
    padding: 6rem 3rem;
    max-width: 1450px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 9;
    padding-top:0;
  }


  .rsvp p {
  color: var(--muted);
  font-size: 22px;
  line-height: 30px;
  max-width: 950px;
  margin: auto;
}

.image-gallery {
  margin: 20px 0px;
  display: flex;
  flex-wrap: wrap;
}
.image-gallery .left-side {
  width: 30%;
}
.image-gallery .img {
  background: #eee;
  display: inline-block;
  border-radius: 28px;
  transform: scale(.95);
  box-shadow: 0 1px 10px rgba(0,0,0,0.2);
  background-size:cover!important;
  background-position: center center!important;
}
.left-side .img {
  height: 515px;
  width: 100%;
  margin-top: -7px;
}
.image-gallery .right-side {
  width: 70%;
}
.top, .bottom {
  display: flex;
}
.right-side .img {
  height: 250px;
  width: 50%;
}

  /* CTA BANNER */
  .cta-banner {
    margin-bottom: -150px!important;
    border-radius: 28px;
    z-index: 2;
background: linear-gradient(
  135deg,
  #5BCEFA 0%,     /* Trans blue */
  #F5A9B8 14%,    /* Trans pink */
  #FF2055 28%,    /* Red */
  #FF6B00 42%,    /* Orange */
  #FFCA00 56%,    /* Yellow */
  #00B359 70%,    /* Green */
  #00AADD 82%,    /* Blue */
  #2B4FFF 92%,    /* Indigo */
  #8A2BE2 100%    /* Violet */
);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 950px;
    margin: auto;
    box-shadow: 0 1px 10px rgba(0,0,0,0.2);
  }

  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
  }

  .cta-banner h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
  }

  .cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    font-size: 20px;
  }

  .btn-dark {
    background: white;
    color: var(--text);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 1.1rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }

  /* Mutual Aid */
  .short-hero.hero .orb-1 {
  top: 0;
  left: -10%;
}
  .short-hero.hero .orb-2 {
  top: 0%;
  right: -200px;
}
  .short-hero.hero .orb-3 {
bottom: -100px;
  left: 75%;
}
  .short-hero.hero .orb-4 {
top: -37%;
  left: 14%;
}
  .short-hero.hero .orb-5 {
top: 50%;
  left: 65%;
}
  .short-hero.hero {
  min-height: 45vh;
}
.short-hero .hero-title {
  font-size:60px;
  line-height:60px;
}
#aid {
  background: transparent;
  position: relative;
  z-index: 9;
}
.inside-footer {
  padding-top: 100px;
}
#aid .section-title::after {
  background: var(--pink);
  margin: auto;
  margin-top: 20px;
}

.board-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.cta-banner.inside-cta.reveal h2 {
  font-size: 45px;
  line-height: 50px;
}
.inside-cta.cta-banner p {
  margin: 0;
}
.cta-banner.inside-cta {
  margin-bottom: -35px !important;
  background: #e16dab;
}
.board-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  color: #2f2a26;
}

.board-intro p {
  font-size: 1.05rem;
  color: #5f584f;
}

.bulletin-board {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 18px;

  /* Corkboard texture */
  background-color: #c79a63;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.08) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 120px 120px, 140px 140px, 160px 160px, 180px 180px;

  box-shadow:
    inset 0 0 0 10px rgba(90, 55, 28, 0.2),
    inset 0 0 40px rgba(0, 0, 0, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-wrap:wrap;
  justify-content: space-evenly;
}
.aid-note {
  width: 33.33%;
}
.bulletin-board::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 22px;
  background: #7a4e2a;
  z-index: -1;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.bulletin-board {
  position: relative;
}

.aid-note {
  position: relative;
  background: #fff9dc;
  color: #2f2a26;
  padding: 1.5rem 1.25rem 1.25rem;
  min-height: 280px;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.16),
    0 2px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(90, 72, 42, 0.12);
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aid-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 27px,
      rgba(60, 90, 180, 0.12) 28px
    );
  pointer-events: none;
  border-radius: 4px;
}

.aid-note::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 22px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(8px);
  pointer-events: none;
}

.aid-note:hover {
  transform: translateY(-4px) rotate(0deg) !important;
  box-shadow:
    0 14px 24px rgba(0, 0, 0, 0.18),
    0 3px 6px rgba(0, 0, 0, 0.1);
}

.aid-note h3,
.aid-note p,
.aid-note .aid-meta,
.aid-note .aid-links {
  position: relative;
  z-index: 1;
}

.aid-note h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.aid-note p {
  margin: 0 0 1.25rem;
  line-height: 1.7;
  color: #4c463f;
}

.aid-meta {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #2f2a26;
}

.aid-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.aid-links a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--purple);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aid-links a:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.push-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #7161a1;
  border-radius: 50%;
  box-shadow:
    inset -2px -3px 0 rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.28);
  z-index: 3;
}

.push-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 2px;
  height: 18px;
  background: rgba(60, 60, 60, 0.45);
  border-radius: 2px;
}

.tilt-left {
  transform: rotate(-2deg);
}

.tilt-right {
  transform: rotate(2deg);
}

.tilt-soft {
  transform: rotate(-0.75deg);
}

@media (max-width: 900px) {
  .bulletin-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mutual-aid-board {
    padding: 3rem 1rem;
  }

  .bulletin-board {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.5rem;
  }

  .aid-note {
    min-height: auto;
  }
}

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    background: #EAE6F6;
    padding: 60px 20px;
    padding-top: 240px;
    position: relative;
  }
  footer img {
    width: 750px;
    position: absolute;
    top: 0;
    top: -223px;
  }
  footer img:first-child {
    left: 0;
  }
  footer img:nth-child(2){
    right: 0;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }

  .footer-brand .nav-logo {
      font-size: 20px;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
  }

  .footer-brand p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-col h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.2rem;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--blue); }

  .footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-copy {
    color: var(--muted);
    font-size: 0.85rem;
  }

  .rainbow-footer {
    height: 4px;
    background: linear-gradient(
      135deg,
      #5BCEFA 0%,   
      #F5A9B8 14%,  
      #FF2055 28%,    
      #FF6B00 42%,   
      #FFCA00 56%,    
      #00B359 70%,    
      #00AADD 82%,    
      #2B4FFF 92%,   
      #8A2BE2 100%   
    );
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--bg2); }
  ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--muted); }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .about { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .volunteer-grid { grid-template-columns: 1fr 1fr; }
    .venue-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cta-banner { margin: 2rem 1.5rem; padding: 3rem 2rem; }
    .volunteer, .schedule, .sponsors { padding: 5rem 1.5rem; }
    .date-strip { gap: 1.5rem; padding: 1.2rem 2rem; }
    .date-sep { display: none; }
  }

  @media(max-width:1300px) {
    .nav-links {gap:18px!important;}
    .nav-links a {font-size:12px!important;}
    .ict-logo {
      right: -130px!important;
      width: 400px!important;
      height: 400px!important;
      bottom: -50px!important;
    }
    body .volunteer-card {
      padding: 20px;
    }
    body .volunteer-header {
      margin-bottom: 20px;
    }
  }
  @media(max-width:1050px) {
    body .cta-banner.inside-cta {
  margin-bottom: -50px !important;
}
    .inside-footer {
  padding-top: 100px !important;
}
    .cta-banner.inside-cta.reveal h2 {font-size:30px!important;}
    body .hero {
  padding: 80px 20px !important;
}
body .hero-sub {
  font-size: 18px;
}
#aid .section-title {
  text-align: center;
  margin-top: -15px;
  margin-bottom:0px;
}
#aid {
  padding: 40px 20px !important;
}
.aid-note {
  width: 90% !important;
  transform: none !important;
}
.aid-links a {
  width: 100%;
  text-align: center;
}
    .date-item {
      width: 100%;
      border-bottom: 1px solid #c0c0c0;
      margin-bottom: 10px;
      padding-bottom: 10px;
    }
    .date-item:last-child {
      border:none!important;
      margin: 0!important;
      padding:0!important;
    }
    .section-slant-both, .section-diagonal-reverse {
      clip-path: none!important;
    }
    .hero .hero-tag {
      display: none !important;
    }
    .hero-buttons, .date-strip {
      margin-top: 35px !important;
    }
    #venue {
      padding: 40px 20px !important;
    }
    .venue-details, .map-container {
      width: 100% !important;
    }
    .orb-1 {
      width: 300px!important;
      height: 300px!important;
      top: -100px!important;
      left: -150px!important;
    }
    .orb-2 {
      width: 200px!important;
      height: 200px!important;
      right: -50px!important;
    }
    .orb-3 {
      width: 250px!important;
      height: 250px!important;
      bottom: -100px!important;
    }
    .orb-4 {
      width: 150px!important;
      height: 150px!important;
      top: 15%!important;
      left: 15%!important;
    }
    .orb-5 {
      width: 100px!important;
      height: 100px!important;
      top: 30%!important;
      left: 40%!important;
    }
    .venue-inner {
      padding: 0 !important;
    }
    .venue-inner {
      padding: 0 !important;
      flex-wrap: wrap;
      display: flex;
    }
    .section-diagonal-bottom {
  clip-path: none !important;
}
    .hero {
      padding: 80px 40px !important;
      min-height: auto !important;
      margin-top: 95px;
    }
    .ict-logo, .right-cirlce, .decor-half-circle, .right-side-circle-container, .schedule-tag, footer img{
      display: none !important;
    }
    .image-gallery .left-side {
  display: block !important;
  width: 100% !important;
}
    body .volunteer-header .btn-outline {
      color: #fff !important;
      border: none !important;
      margin: 0!important;
    }
    footer {
      padding-top: 200px !important;
    }
    .volunteer-header {
      margin-bottom: 40px !important;
    }
    #calendar, #rsvp, #volunteer {
      padding: 40px 20px !important;
    }
    body .image-gallery .right-side {
      width: 100% !important;
    }
    .right-side .img {
      height: 135px!important;
    }
    .top {
      margin-bottom: 10px;
    }
    #volunteer .section-title {
      margin-bottom: 0 !important;
    }
    .volunteer-card {
      padding: 20px !important;
      width: 100% !important;
    }
    .volunteer-dets .volunteer-name {
      font-size: 16px!important;
      line-height: 25px !important;
    }
    .volunteer-grid.reveal.reveal--delay-2.reveal--visible {
      display: flex !important;
      flex-wrap: wrap;
    }
    .schedule-desc {
      font-size: 14px !important;
    }
    nav .container {display:block!important;}
    nav {
      z-index: 999999;
    }
  }



  