:root {
  --bg: #fff9fb;
  --card: #ffffff;
  --text: #473042;
  --muted: #7c6376;
  --accent: #e978b5;
  --accent-soft: #f7d8ea;
  --border: #efdde8;
  --shadow: 0 10px 30px rgba(140, 80, 117, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(circle at top right, #ffeef8 0, transparent 35%),
    radial-gradient(circle at bottom left, #f8f4ff 0, transparent 30%),
    url("./assets/flower.png");
  background-size: auto, auto, 460px;
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: top right, bottom left, center;
  line-height: 1.5;
  overflow-x: hidden;
}

.petals {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.petals-left {
  top: -110px;
  left: -130px;
  background: radial-gradient(circle at 35% 35%, #ffd5ea 0, #ffecf6 60%, transparent 80%);
}

.petals-right {
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle at 60% 40%, #e8d6ff 0, #f5eeff 55%, transparent 80%);
}

.hero,
.timeline,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 5rem 1.25rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-radius: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
  color: #a84a7c;
  margin-bottom: 0.5rem;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #8f1f62;
  text-shadow: 0 2px 12px rgba(143, 31, 98, 0.2);
}

.hero-copy {
  margin: 0 auto 1.5rem;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: linear-gradient(120deg, #e978b5, #ce5ea2);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

@media (min-width: 651px) {
  .cta {
    display: none;
  }
}

.timeline {
  width: min(1000px, calc(100% - 2rem));
  margin: 0 auto 3rem;
  display: grid;
  gap: 1.1rem;
}

.stop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stop-header {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.1rem 0.8rem;
}

.logo,
.cabin-icon {
  width: 95px;
  height: 95px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: white;
}

.cabin-icon {
  font-size: 2rem;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, #fff1f8, #f2f5ff);
}

.time {
  margin: 0;
  font-weight: 800;
  color: #a0477c;
}

h2 {
  margin: 0.1rem 0 0.3rem;
  font-size: 1.6rem;
}

.details,
.address {
  margin: 0.1rem 0;
  color: var(--muted);
}

.venue-description {
  margin: 0.4rem 0 0.3rem;
  color: #694f61;
  font-size: 0.96rem;
  max-width: none;
}

.stop-header a {
  display: inline-block;
  margin-top: 0.35rem;
  color: #b04b82;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 320px);
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0 1.1rem 1.1rem;
  scroll-snap-type: x proximity;
}

.gallery img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #f0e3eb;
  scroll-snap-align: start;
  box-shadow: 0 6px 18px rgba(108, 65, 90, 0.1);
}

.gallery::-webkit-scrollbar {
  height: 10px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #efc4dc;
  border-radius: 999px;
}

.cabin {
  background: linear-gradient(180deg, #fffefe 0%, #fff5fa 100%);
}

.footer {
  text-align: center;
  color: #856a7b;
  padding: 0 1rem 2rem;
  font-size: 0.92rem;
}

@media (max-width: 650px) {
  .stop-header {
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    padding: 0.95rem 0.95rem 0.65rem;
  }

  .logo,
  .cabin-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  h2 {
    font-size: 1.35rem;
  }

  .gallery {
    grid-auto-columns: 82%;
    padding: 0 0.95rem 0.95rem;
  }
}
