* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F7FCF5;
  color: #111111;
  overflow-x: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  background: #F7FCF5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader span {
  font-size: 22px;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: fadeLoader 1.8s ease forwards;
}

@keyframes fadeLoader {
  to {
    opacity: 1;
  }
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 999;
}

.glow {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.glow-1 {
  background: #74C476;
  top: -200px;
  left: -150px;
}

.glow-2 {
  background: #E5F5E0;
  bottom: -200px;
  right: -150px;
}

section {
  min-height: 100vh;
  padding: 120px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-content {
  width: 100%;
  max-width: 900px;
}

.hero-content,
.transport .section-content,
.safety .section-content,
.itinerary .section-content,
.dresscode .section-content,
.extra-content,
.countdown-content {
  text-align: center;
}

.eyebrow,
.section-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #74C476;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  color: #333;
}

h3 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  max-width: 720px;
  margin-inline: auto;
}

.weather-text {
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.2;
}

.date {
  margin-top: 40px;
  margin-bottom: 56px;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: #238B45;
  color: white;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(35,139,69,0.15);
}

.button:hover {
  background: #006D2C;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(35,139,69,0.22);
}

.secondary {
  margin-top: 48px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  align-items: center;
}

.timeline-item {
  width: 100%;
  max-width: 720px;
  text-align: left;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(16px);
  padding: 32px;
  border-radius: 32px;
  transition: 0.35s ease;
}

.timeline-item:hover {
  transform: translateY(-6px) scale(1.01);
}

.time {
  display: inline-block;
  margin-bottom: 18px;
  color: #238B45;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item h4 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}

.timeline-item p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.timeline-item a {
  text-decoration: none;
  color: #238B45;
}

.scroll-arrow {
  margin-top: -120px;
  margin-bottom: -40px;
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 42px;
  color: #238B45;
  opacity: 0.85;
  animation: floatArrow 2.4s ease-in-out infinite;
}

@keyframes floatArrow {
  0% {
    transform: translateY(0px);
    opacity: 0.5;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }

  100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
}

.countdown {
  min-height: 85vh;
}

.countdown-title {
  margin-bottom: 42px;
  max-width: 520px;
}

#timer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

.time-box {
  text-align: center;
}

.time-box span {
  display: block;
  font-size: clamp(52px, 7vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 12px;
}

.time-box small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #777;
}

.calendar-button {
  margin-top: 56px;
}

.final-line {
  margin-top: 72px;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
  opacity: 0.92;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  filter: blur(10px);

  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

@media (max-width: 768px) {

  section {
    padding: 100px 20px;
  }

  .timeline-item {
    padding: 24px;
    border-radius: 24px;
  }

  #timer {
    gap: 24px;
  }

  .time-box span {
    font-size: 52px;
  }

  .scroll-arrow {
    margin-top: -80px;
    font-size: 36px;
  }

  .final-line {
    margin-top: 56px;
  }

}


/* BETTER SPACING AFTER DRESS CODE */

.dresscode {
  min-height: 70vh;
  padding-bottom: 20px;
}

.extra {
  min-height: 82vh;
  padding-top: 40px;
}

/* SOFT ARROW */

.soft-arrow {
  margin-top: -180px;
  margin-bottom: -30px;

  font-size: 30px;

  opacity: 0.5;

  animation: softFloat 2.8s ease-in-out infinite;
}

@keyframes softFloat {

  0% {
    transform: translateY(0px);
    opacity: 0.35;
  }

  50% {
    transform: translateY(7px);
    opacity: 0.75;
  }

  100% {
    transform: translateY(0px);
    opacity: 0.35;
  }

}

/* FINAL SECTION POLISH */

.final-wrapper {
  margin-top: 70px;

  display: flex;
  flex-direction: column;
  align-items: center;

  animation: finalReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.final-divider {
  width: 90px;
  height: 1px;

  background: rgba(0,0,0,0.12);

  margin-bottom: 34px;
}

.final-line {
  margin-top: 0;

  font-size: clamp(24px, 4vw, 44px);

  letter-spacing: -0.04em;

  opacity: 0.88;
}

@keyframes finalReveal {

  0% {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
  }

}

@media (max-width: 768px) {

  .dresscode {
    min-height: 62vh;
  }

  .soft-arrow {
    margin-top: -120px;
  }

  .final-wrapper {
    margin-top: 54px;
  }

}


/* BALANCED ARROW SPACING */

.soft-arrow,
.scroll-arrow {
  margin-top: 80px !important;
  margin-bottom: 80px !important;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px !important;

  opacity: 0.55;
}

/* WEATHER BALANCE */

.extra {
  min-height: auto !important;

  padding-top: 120px;
  padding-bottom: 120px;
}

.weather-text {
  font-size: clamp(24px, 3vw, 38px) !important;

  line-height: 1.15 !important;

  max-width: 820px;

  margin-inline: auto;
}

/* COUNTDOWN SPACING */

.countdown {
  min-height: auto !important;

  padding-top: 120px;
  padding-bottom: 120px;
}

/* FINAL POLISH */

.final-wrapper {
  margin-top: 90px !important;
}

.final-divider {
  width: 60px !important;

  opacity: 0.5;

  margin-bottom: 28px !important;
}

.final-line {
  font-size: clamp(22px, 3vw, 38px) !important;

  opacity: 0.5 !important;

  letter-spacing: -0.03em;

  animation: seeYouSoonReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes seeYouSoonReveal {

  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }

  100% {
    opacity: 0.5;
    transform: translateY(0px);
    filter: blur(0px);
  }

}

/* MOBILE */

@media (max-width: 768px) {

  .soft-arrow,
  .scroll-arrow {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .weather-text {
    font-size: 30px !important;
  }

}
