:root {
  /* Colors */
  --color-bg-dark: #0b0f17;
  --color-bg-deep: #0a0a23;
  --color-primary: #8b2cff;
  --color-secondary: #b400ff;
  --color-accent: #A7D8FF;
  --color-text-main: #ffffff;
  --color-text-muted: #e0e0e0;

  /* Gradients */
  --grad-primary: linear-gradient(90deg, #6a00ff, #b400ff);
  --grad-pastel: linear-gradient(90deg, #ffb7f5 0%, #bfe9ff 50%, #ffe8d6 100%);
  --grad-cloud: radial-gradient(circle at center, #4b2c7f 0%, #2a1a50 20%, #1c1c3c 60%, #0a0a23 100%);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(12px);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;

  /* Shadows */
  --shadow-glow: 0 0 25px var(--color-primary), 0 0 50px var(--color-primary);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --trans-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-bounce: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*first thing user sees---------------------------------------------------*/
.intro {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--color-bg-dark);
  color: var(--color-text-main);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-smooth);
}

.intro.show {
  opacity: 1;
  pointer-events: auto;
}

.phrase {
  display: flex;
  gap: 0.6rem;
  font-family: inherit;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: .02em;
  will-change: transform, opacity;
}

/*html law-------------------------------------------------------------------------*/

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow-x: hidden;
  background: transparent;
  font-family: "DynaPuff", Helvetica Neue, Helvetica, Arial, sans-serif;
  cursor: url(/img/casualPaw.png) 4 4, auto !important;
  color: var(--color-text-main);
}

span {
  cursor: url(/img/casualPaw.png) 4 4, auto !important;
}

/*Video background of first segment of website*/

.video-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Make content appear above video */
.content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

/*option header & logo------------------------------------------------------------------*/

header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.25rem, 1.2vw, 1.5rem) clamp(0.5rem, 2.5vw, 3rem);
  box-sizing: border-box;
}

#main-nav {
  /*options part (apply tracks faq sponsors)*/
  box-sizing: border-box;
  list-style: none;
  display: flex;
  gap: clamp(0.4rem, 1.5vw, 1.8rem);
  margin-top: 1vh;
  padding: clamp(4px, 1vh, 12px) clamp(8px, 2vw, 24px);
  flex-direction: row;
  color: var(--color-text-main);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  width: auto;
}

/* NAV ITEMS */
#main-nav .guides {
  background: transparent;
  border: none;
  padding: 5px 10px;
  transition: transform var(--trans-smooth);
}

/* NAV LINKS */
#main-nav a {
  font-family: "DynaPuff", cursive;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text-main);
  font-size: clamp(0.6rem, 1vw, 1.1rem);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--trans-smooth), text-shadow var(--trans-smooth);
}

/* HOVER EFFECT */
#main-nav .guides:hover a {
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--color-accent);
}

#main-nav .guides:hover {
  transform: translateY(-2px) scale(1.05);
}

.logo {
  display: flex;
  justify-content: flex-end;
  margin-right: 1vh;
}

.logo img {
  width: clamp(80px, 12vw, 185px);
  height: auto;
  transition: transform var(--trans-smooth);
}

.logo img:hover {
  transform: scale(1.05);
}

/*Word effect------------------------------------------------------------------------------------*/

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .8s ease both, bob 3.6s ease-in-out infinite;
  animation-play-state: paused, paused;
}

.word:nth-child(1) {
  --delay: .00s;
  animation-delay: .05s, 0s;
}

.word:nth-child(2) {
  --delay: .07s;
  animation-delay: .15s, .3s;
}

.word:nth-child(3) {
  --delay: .14s;
  animation-delay: .25s, .6s;
}

.word:nth-child(4) {
  --delay: .21s;
  animation-delay: .35s, .9s;
}

.intro.animate .word {
  animation-play-state: running, running;
}

.intro.fly .word {
  animation: wordFlyUp .9s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: var(--delay);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes wordFlyUp {
  to {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .word,
  .phrase {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .intro {
    transition: none !important;
  }
}






@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.title-effect {
  font-family: "DynaPuff", cursive;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;


  /* pastel gradient fill */
  background: var(--grad-pastel);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;


  /* soft glow */
  text-shadow: 0 6px 18px rgba(255, 200, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);

  margin: 0;
  transition: transform var(--trans-bounce), text-shadow var(--trans-smooth);
}

.title-effect:hover {
  transform: scale(1.05);
  text-shadow: 0 10px 28px rgba(255, 210, 255, 0.45), 0 4px 14px rgba(0, 0, 0, 0.25);
}

.lastwrd-effect {
  font-family: "DynaPuff", cursive;
  font-weight: 600;
  /* FLUID TYPOGRAPHY: Scales between 1rem and 2.5rem */
  font-size: clamp(1rem, 3vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffb7f5 0%, #bfe9ff 50%, #ffe8d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 6px 18px rgba(255, 200, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-top: 2vh;
  transition: transform 1s ease, text-shadow 0.6s ease;
}

.lastwrd-effect:hover {
  transform: scale(1.05);
  text-shadow: 0 10px 28px rgba(255, 210, 255, 0.45), 0 4px 14px rgba(0, 0, 0, 0.25);
}

.date {
  font-family: "DynaPuff", cursive;
  font-weight: 600;
  /* FLUID TYPOGRAPHY: Scales between 0.8rem and 1.2rem */
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  text-align: center;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffb7f5 0%, #bfe9ff 50%, #ffe8d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 6px 18px rgba(255, 200, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-top: 1vh;
  transition: transform 1s ease, text-shadow 0.6s ease;
}

.date:hover {
  transform: scale(1.05);
  text-shadow: 0 10px 28px rgba(255, 210, 255, 0.45), 0 4px 14px rgba(0, 0, 0, 0.25);
}


.title-effect {
  display: flex;
  justify-content: center;
}


.wrd-effect {
  margin: 0 clamp(2px, 0.5vw, 10px);
  /* FLUID TYPOGRAPHY: Scales between 1.5rem and 8rem based on viewport width */
  font-size: clamp(2rem, 9vw, 8.5rem);
  color: white;
}

.title-effect .wrd-effect {
  display: inline-block;
  opacity: 0;
  transform: translateY(-50px);
  animation: drop 0.5s forwards;
  cursor: pointer;
}


/* stagger animation delays */

.title-effect .wrd-effect:nth-child(1) {
  animation-delay: 3.5s
}

.title-effect .wrd-effect:nth-child(2) {
  animation-delay: 3.9s
}

.title-effect .wrd-effect:nth-child(3) {
  animation-delay: 4.4s
}

.title-effect .wrd-effect:nth-child(4) {
  animation-delay: 4.8s
}

/* keyframes for drop effect */

@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  60% {
    opacity: 1;
    transform: translateY(10px);
  }

  80% {
    transform: translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-effect .wrd-effect.landed {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.title-effect .wrd-effect.landed:hover {
  animation: hoverBounce 0.6s ease;
}

@keyframes hoverBounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(0);
  }

  70% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

.lastwrd-effect {
  color: white;
  display: block;
  text-align: center;
}

.date {
  color: white;
  text-align: center;
}

/*CLOUDS SECTION*/

.cloud-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: 5vh;
  /* Define height for the border section */
  overflow: visible;
  /* Allow clouds to overflow and create border effect */
  z-index: 5;
  /* Ensure clouds appear above both sections */
}

.top-cloud {
  position: absolute;
  width: 90vw;
  /* Much larger clouds to fill space */
  height: 30vw;
  /* maintain aspect ratio */
  background-image: url('img/hack_cloudzz.png');
  background-repeat: no-repeat;
  background-size: contain;
  /* scale image correctly */
}

.cloud-1 {left: -25%; z-index: 2;}
.cloud-2 {left: 30%; z-index: 2;}

/*END OF CLOUDS SECTION*/

/*APPLY SECTION*/

.apply-section {
  position: relative;
  width: 100vw;
  height: 60vh;
  /* You can change this — but it will stay consistent on all screens */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Full-width, consistent background video */
.apply-video {
  position: absolute;
  top: 50%;
  left: 50%;

  /* Keeps video covering entire area with no stretching */
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Ensures it's centered on all screen sizes */
  transform: translate(-50%, -50%);

  /* Prevents black bars on ultrawide or tall screens */
  min-width: 100%;
  min-height: 100%;

  z-index: 0;
}

/* Dark overlay for readability */
.apply-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Apply button styles */
.apply-btn {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 20px 60px;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  background: var(--grad-primary);
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
  overflow: hidden;
}

.apply-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.apply-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: 0.5s ease;
}

.apply-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px #8b2cff, 0 0 50px #8b2cff;
}

.apply-btn:hover::before {
  transform: scale(1.2);
  opacity: 1;
}

#countdown {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  font-family: 'DynaPuff', cursive;
  font-weight: 600;
  font-size: 1.8rem;
  color: white;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

#countdown span {
  font-weight: 700;
  padding: 0 8px;
  min-width: 40px;
  display: inline-block;
}

.btm-text {
  color: white;
}

/* Transition to Tracks section */
.apply-transition {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12vh;
  background: linear-gradient(to bottom, transparent, #7BAADA);
  z-index: 2;
  pointer-events: none;
}

/*END OF APPLY SECTION*/


/*START OF TRACK SECTION*/

.track-section {
  position: relative;
  width: 100%;
  height: 150vh;
  background-color: #7BAADA;
  overflow: hidden;
}

.objCliff {
  position: absolute;
  top: 20vh;
  left: 0;
  max-width: 40vw;
  height: auto;
  z-index: 3;
}

.objCloud {
  position: absolute;
  top: 10vh;
  right: 5vw;
  max-width: 25vw;
  height: auto;
  z-index: 4;
}

.tracks-text {
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DynaPuff', sans-serif;
  font-size: 5vw;
  color: white;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.allFourcards {
  position: absolute;
  top: 60vh;
  left: 30vw;
  display: grid;
  grid-template-columns: repeat(2, 18vw);
  gap: 4vw;
  justify-items: center;
  align-items: center;
}

.card-container {
  width: 15vw;
  height: 15vw;
  border-radius: 10px;
  z-index: 5;
  position: relative;
}

.card-container::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, rgb(145, 34, 140) 0%, #00dbde 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.card {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.card .img-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, red 0%, #863115 100%);
  transition: scale 0.6s, rotate 0.6s, filter 1s;
}

.card .img-content img {
  width: 150px;
  height: 150px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  padding: 5%;
  box-sizing: border-box;
  line-height: 1.2;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.card .content .heading {
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Dynapuff';
}

.card .content p {
  font-size: 1vw;
  line-height: 1.4;
  font-weight: 700;
  font-family: 'Dynapuff';
}

.card:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.card:hover .img-content {
  scale: 1.5;
  rotate: 15deg;
  filter: blur(7px);
}

/* Healthcare (existing) */
.card-container.healthcare .img-content {
  background: linear-gradient(-45deg, red 0%, #863115 100%);
}

/* Sustainability */
.card-container.sustainability .img-content {
  background: linear-gradient(-45deg, #a8e6a2 0%, #4caf50 100%);
}

/* Business */
.card-container.business .img-content {
  background: linear-gradient(-45deg, #2196f3 0%, #0d47a1 100%);
}

/* Education */
.card-container.education .img-content {
  background: linear-gradient(-45deg, #81d4fa 0%, #29b6f6 100%);
}


/*END OF TRACK SECTION*/

/*transiton*/

.transition {
  position: relative;
  width: 100%;
  height: 150px;
  /* Gradient from Tracks blue (#7BAADA) to FAQ dark background (#0a0a23) */
  background: linear-gradient(to bottom, #7BAADA, #0a0a23);
  z-index: 2;
  margin-bottom: -1px;
  /* Prevent hairline gap */
}

/*FAQ SECTION*/

.faq-section {
  position: relative;
  width: 100%;
  /* Minimal height, expands with content */
  min-height: 80vh;
  background-color: #7BAADA;
  /* Continue track section base color or different? using same for continuity, or maybe darker */
  background: radial-gradient(circle at center, #1c1c3c 0%, #0a0a23 100%);
  /* Space/Cloud transition */
  padding: 5vh 5vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-text {
  font-family: 'DynaPuff', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  color: white;
  text-align: center;
  text-shadow: 0 6px 18px rgba(255, 200, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 4vh;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: var(--space-md);
  border-radius: 15px;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth), background var(--trans-smooth);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  font-family: 'DynaPuff', cursive;
  font-weight: 700;
  color: #A7D8FF;
  /* Responsive font size */
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #e0e0e0;
  /* Responsive font size */
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

/*END OF FAQ SECTION*/

.faq-transition {
  position: relative;
  width: 100%;
  height: 150px;
  /* Gradient from FAQ dark background (#0a0a23) to Schedule blue (#7BAADA) */
  background: linear-gradient(to bottom, #0a0a23, #7BAADA);
  z-index: 2;
  margin-top: -1px;
  /* Prevent hairline gap */
  margin-top: -1px;
  /* Prevent hairline gap */
  margin-bottom: -1px;
  /* Prevent hairline gap */
}

.sponsor-footer-transition {
  position: relative;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #0a0a23, transparent);
  z-index: 5;
  margin-top: -1px;
  margin-bottom: -150px;
  /* Overlap with footer */
  pointer-events: none;
}


.footer {
  position: relative;
  width: 100%;
  height: 52.67vw;
  /* Proportional to 2730x1438 image */
  min-height: 500px;
  background-image: url('img/Bazaart_EDB63B0A-B3F3-4D88-AFAB-045E29B1BB5B.PNG');
  background-size: 100% 100%;
  /* Fill entire container */
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay for readability */
  z-index: 1;
}

.kean-message {
  position: absolute;
  top: 18%;
  right: 8%;
  z-index: 3;
  color: white;
  font-family: sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.6rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.sleeping-dog {
  position: absolute;
  /* Tucked deeper into the corner, larger size */
  bottom: 18%;
  left: 35%;
  width: 22vw;
  max-width: 350px;
  z-index: 2;
  /* Perspective adjustment for a larger bed closer to the wall */
  transform: perspective(1000px) rotateX(28deg) rotateY(8deg) rotateZ(-6deg);
  pointer-events: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}


/*SPONSORS SECTION*/

.sponsor-section {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background: var(--color-bg-deep);
  padding: var(--space-lg) var(--space-md);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsor-text {
  font-family: 'DynaPuff', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  color: white;
  text-align: center;
  text-shadow: 0 6px 18px rgba(255, 200, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 4vh;
}

.sponsor-grid {
  display: grid;
  /* Responsive grid: fits as many 150px columns as possible */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  width: 100%;
  max-width: 800px;
  justify-items: center;
}

.sponsor-item {
  width: 150px;
  height: 150px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--trans-bounce), background var(--trans-smooth), box-shadow var(--trans-smooth);
  cursor: pointer;
}

.sponsor-item span {
  font-family: 'DynaPuff', cursive;
  font-weight: 700;
  color: var(--color-text-main);
  font-size: 1.2rem;
}

.sponsor-item:hover {
  transform: scale(1.15);
  background: var(--glass-bg);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-accent);
}

/*END OF SPONSORS SECTION*/
/* SCHEDULE SECTION */
.schedule-section {
  position: relative;
  width: 100%;
  min-height: 120vh;
  background-color: #7BAADA;
  /* Matching Tracks section */
  padding: 5vh 5vw 45vh 5vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  overflow: hidden;
}

.grass-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.cougar-decoration {
  position: absolute;
  bottom: 27vh;
  /* Adjust based on full grass height */
  left: 2.5vw;
  width: 24vw;
  /* Increased from 18vw */
  max-width: 400px;
  /* Increased from 300px */
  z-index: 1;
  /* Behind grass-decoration (z-index 2) */
  pointer-events: none;
  transform: translateY(0);
  /* Removed downward shift to keep it higher */
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}



.schedule-text {
  font-family: 'DynaPuff', sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  color: white;
  text-align: center;
  text-shadow: 0 6px 18px rgba(255, 200, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 4vh;
}

.timeline-wrapper {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 30vh;
  /* Increased spacing above the cougar image */
}


/* Day Selector */
.day-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.day-btn {
  background: transparent;
  border: none;
  padding: 10px 30px;
  color: #fff;
  font-family: 'DynaPuff', cursive;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.day-btn.active {
  background: var(--color-accent);
  color: var(--color-bg-deep);
  box-shadow: 0 0 15px rgba(167, 216, 255, 0.4);
}

.day-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

/* Main Display */
.main-event-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.nav-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-arrow:hover {
  background: #7BAADA;
  color: #0a0a23;
  transform: scale(1.1);
}

.event-card-container {
  flex: 1;
  max-width: 600px;
  perspective: 1000px;
}

.event-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--trans-smooth), opacity var(--trans-smooth);
  animation: cardEntry 0.5s ease-out;
}

@keyframes cardEntry {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.event-card h3 {
  font-family: 'DynaPuff', cursive;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.event-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.1rem;
  color: #A7D8FF;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.event-meta .divider {
  opacity: 0.5;
}

.event-card p {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin: 0;
}

/* Timeline Track */
.timeline-track-container {
  position: relative;
  width: 90%;
  margin-top: 3rem;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-dots {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
}

.timeline-dot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: 40px;
  /* target area */
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: #0a0a23;
  border: 3px solid #A7D8FF;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(10, 10, 35, 1);
  /* fake margin */
}

.timeline-dot-wrapper:hover .timeline-dot {
  transform: scale(1.3);
  background: #A7D8FF;
  box-shadow: 0 0 15px #A7D8FF;
}

.timeline-dot-wrapper.active .timeline-dot {
  transform: scale(1.5);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.dot-label,
.dot-time {
  position: absolute;
  font-family: 'DynaPuff', cursive;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
  pointer-events: none;
}

.dot-label {
  bottom: 35px;
  color: #fff;
  font-weight: 600;
}

.dot-time {
  top: 35px;
  color: #A7D8FF;
}

.timeline-dot-wrapper:hover .dot-label,
.timeline-dot-wrapper:hover .dot-time,
.timeline-dot-wrapper.active .dot-label,
.timeline-dot-wrapper.active .dot-time {
  opacity: 1;
  text-shadow: 0 0 8px rgba(167, 216, 255, 0.5);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .main-event-display {
    gap: 0.5rem;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .event-card {
    padding: 1.5rem;
  }

  .event-card h3 {
    font-size: 1.8rem;
  }

  .timeline-track-container {
    overflow-x: auto;
    width: 100vw;
    padding: 40px 20px;
    margin-left: -5vw;
    /* Break container constraints */
    margin-right: -5vw;
  }

  .timeline-dots {
    min-width: 600px;
    /* Ensure scrollable */
    padding: 0 20px;
  }
}

.schedule-date {
  font-family: 'DynaPuff', cursive;
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  opacity: 0.8;
}