:root {
  --gold: #f2b705;
  --pink: #ff5d8f;
  --purple: #6a3de8;
  --blue: #2b7fff;
  --dark: #1c1230;
  --cream: #fff8ef;
  --card-bg: #ffffff;
  --radius: 18px;
}

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

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 55%, var(--gold) 100%);
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0, transparent 12%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0, transparent 10%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.12) 0, transparent 14%),
    radial-gradient(circle at 10% 85%, rgba(255,255,255,0.12) 0, transparent 10%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 18px;
}

.subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  opacity: 0.85;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- MAIN ---------- */
main {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro h2 {
  font-size: 2.2rem;
  color: var(--purple);
  margin-bottom: 12px;
}

.intro p {
  font-size: 1.1rem;
  color: #555;
}

.shoe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.shoe-card {
  display: block;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shoe-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(106, 61, 232, 0.25);
}

.shoe-image {
  background: #f2f2f5;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shoe-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.shoe-card:hover .shoe-image img {
  transform: scale(1.08);
}

.shoe-info {
  padding: 18px 20px 22px;
}

.shoe-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.shoe-color {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.shoe-cta {
  display: inline-block;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.note {
  text-align: center;
  margin: 50px auto 0;
  max-width: 600px;
  background: rgba(242, 183, 5, 0.15);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.note p {
  font-size: 1.05rem;
  color: #6b5300;
}

.gallery {
  margin-top: 80px;
  text-align: center;
}

.gallery h2 {
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 24px;
}

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 40px 20px 60px;
  color: #888;
  position: relative;
  z-index: 2;
}
