/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pastel-yellow: #fff9c4;
  --pastel-pink: #f8bbd0;
  --pastel-green: #c8e6c9;
  --pastel-blue: #bbdefb;
  --pastel-purple: #e1bee7;
  --pastel-orange: #ffe0b2;
  --dark: #2d2d2d;
  --accent: #ff6f00;
  --egg-shadow: rgba(255, 111, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--pastel-yellow);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== FALLING EGGS ANIMATION ===== */
.egg {
  position: fixed;
  top: -60px;
  z-index: 0;
  font-size: 2rem;
  animation: fall linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes fall {
  0% {
    transform: translateY(-60px) rotate(0deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-yellow), var(--pastel-green));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.4) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: bounceIn 0.8s ease;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease;
}

.hero h1 .highlight {
  display: block;
  background: linear-gradient(90deg, #ff6f00, #e91e63, #9c27b0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  max-width: 600px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  opacity: 0.85;
  animation: slideUp 1s ease 0.2s both;
}

.hero-cta {
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  animation: slideUp 1s ease 0.4s both;
}

.hero-cta a {
  display: inline-block;
  background: var(--dark);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  z-index: 1;
  animation: bounce 2s infinite;
  font-size: 1.5rem;
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ===== CONTENT SECTIONS ===== */
.content {
  position: relative;
  z-index: 1;
}

.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section:nth-child(odd) {
  /* alternate layout */
}

.section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section:nth-child(even) .section-inner {
  direction: rtl;
}

.section:nth-child(even) .section-inner > * {
  direction: ltr;
}

.section-number {
  display: inline-block;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -1rem;
}

.section-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
}

.section-text .tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-image {
  position: relative;
}

.section-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.section-image:hover img {
  transform: scale(1.03) rotate(-1deg);
}

.section-image::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
}

.section:nth-child(1) .section-image::after { background: var(--pastel-pink); }
.section:nth-child(2) .section-image::after { background: var(--pastel-blue); }
.section:nth-child(3) .section-image::after { background: var(--pastel-green); }
.section:nth-child(4) .section-image::after { background: var(--pastel-purple); }

/* ===== DIVIDERS ===== */
.divider {
  text-align: center;
  padding: 1rem;
  font-size: 2rem;
  opacity: 0.3;
  letter-spacing: 1rem;
}

/* ===== COMING SOON SECTION ===== */
.coming-soon {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--pastel-purple), var(--pastel-blue));
}

.coming-soon h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

.coming-soon .blink {
  display: inline-block;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--dark);
  color: white;
  font-size: 0.9rem;
  opacity: 0.9;
}

footer .footer-eggs {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5rem;
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark);
  color: white;
  padding: 0.75rem 0;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee span {
  white-space: nowrap;
  padding-right: 4rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section:nth-child(even) .section-inner {
    direction: ltr;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .hero {
    min-height: 80vh;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
