/* =============================================
   khayali-pulao.com — stylesheet
   ============================================= */

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

:root {
  --saffron:   #f4a825;
  --spice:     #c0392b;
  --cardamom:  #27ae60;
  --dream:     #6c3483;
  --cream:     #fdf6e3;
  --charcoal:  #2c2c2c;
  --muted:     #888;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 227, .90);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--saffron);
  padding: .9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--spice);
  text-decoration: none;
  letter-spacing: -.5px;
}

.nav-logo span { color: var(--saffron); }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s;
}

nav ul a:hover { color: var(--spice); }

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(244,168,37,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(192,57,43,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(108,52,131,.10) 0%, transparent 50%),
    var(--cream);
}

.hero-emoji {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--saffron), var(--spice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--spice));
  color: #fff;
  box-shadow: 0 4px 18px rgba(244,168,37,.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(244,168,37,.5);
}

.btn-secondary {
  background: transparent;
  color: var(--dream);
  border: 2px solid var(--dream);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: var(--dream);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Section shared ── */
section { padding: 5rem 2rem; }

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: .6rem;
  letter-spacing: -.5px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── Dreams grid ── */
#dreams { background: #fff; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid transparent;
}

.card:nth-child(1) { border-color: var(--saffron); }
.card:nth-child(2) { border-color: var(--spice);   }
.card:nth-child(3) { border-color: var(--cardamom); }
.card:nth-child(4) { border-color: var(--dream);   }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
}

.card-icon { font-size: 2.2rem; margin-bottom: .8rem; }

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.card p { color: var(--muted); font-size: .95rem; }

/* ── About / Story ── */
#about {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#about .section-title { margin-bottom: 1.4rem; }

#about p {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 1rem;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--spice));
  color: #fff;
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin: .25rem .2rem;
}

/* ── Recipe / Process ── */
#recipe { background: #fff; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 1.2rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--spice));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(244,168,37,.4);
}

.step h3 { font-weight: 700; margin-bottom: .4rem; }
.step p   { color: var(--muted); font-size: .93rem; }

/* ── Newsletter ── */
#newsletter {
  background: linear-gradient(135deg, var(--dream) 0%, var(--spice) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

#newsletter .section-title { color: #fff; }
#newsletter .section-sub   { color: rgba(255,255,255,.75); }

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.newsletter-form input {
  padding: .85rem 1.4rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  width: 300px;
  outline: none;
  background: rgba(255,255,255,.18);
  color: #fff;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.65); }

.newsletter-form button {
  padding: .85rem 2rem;
  border-radius: 50px;
  border: none;
  background: var(--saffron);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.newsletter-form button:hover {
  background: #e09a1a;
  transform: translateY(-2px);
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: .9rem;
}

footer a { color: var(--saffron); text-decoration: none; }
footer a:hover { text-decoration: underline; }

footer .footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav ul { gap: 1.1rem; }
  .btn-secondary { margin-left: 0; margin-top: .7rem; }
}
