:root {
  --bg: #fff7f5;
  --bg-alt: #fef0ea;
  --card: #ffffff;
  --accent: #f5a6a6;
  --accent-strong: #f28c8c;
  --mint: #cdeee2;
  --text: #3b2f2f;
  --muted: #7a6a6a;
  --shadow: 0 18px 40px rgba(80, 55, 55, 0.12);
}

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

body {
  font-family: "Quicksand", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff, var(--bg));
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(245, 166, 166, 0.25), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(205, 238, 226, 0.3), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(254, 240, 234, 0.7), transparent 50%);
  z-index: -1;
}

.hero {
  max-width: 1100px;
  margin: 40px auto 30px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 2vw + 2rem, 3.3rem);
  margin: 12px 0 12px;
  line-height: 1.1;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
}

.hero-banner {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-banner img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.cta-wrap {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 18px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(242, 140, 140, 0.35);
  position: relative;
  animation: pulse 2.6s ease-in-out infinite;
  text-align: center;
  justify-self: center;
}

.cta:hover {
  background: var(--accent-strong);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 140, 140, 0.55);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 18px rgba(242, 140, 140, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 140, 140, 0);
  }
}

.cta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.countdown,
.seats {
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  min-width: 150px;
  box-shadow: 0 10px 24px rgba(80, 55, 55, 0.08);
}

.label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.time,
.value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(242, 140, 140, 0.12);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  line-height: 1.5;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature {
  background: #fff;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.feature h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--accent-strong);
  font-weight: 700;
  margin-right: 8px;
}

.highlight {
  background: linear-gradient(135deg, #fff, #fff7f5 60%, var(--mint));
}

.mini-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.mini-cta .dot {
  width: 10px;
  height: 10px;
  background: var(--accent-strong);
  border-radius: 50%;
  display: inline-block;
}

.testimonials {
  margin: 30px 0 20px;
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.quotes {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

blockquote {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.5;
  position: relative;
}

blockquote span {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-weight: 600;
}

.footer {
  text-align: center;
  padding: 22px 16px 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.toast-container {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: grid;
  gap: 10px;
  z-index: 10;
}

.toast {
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(80, 55, 55, 0.2);
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px);
  animation: toast-in 0.4s ease forwards, toast-out 0.4s ease 4.2s forwards;
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 720px) {
  .hero {
    margin-top: 24px;
  }

  .cta-info {
    flex-direction: column;
  }

  .toast-container {
    right: 12px;
    left: 12px;
  }
}
