:root {
  --bg: #0f0a1f;
  --surface: #160f2a;
  --surface-2: #130d24;
  --text: #f5f3ff;
  --muted: #c7b8ff;
  --primary: #8b5cf6;
  --primary-600: #7c3aed;
  --primary-700: #6d28d9;
  --accent: #a78bfa;
  --ring: rgba(139, 92, 246, 0.45);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1800px 800px at 80% -10%, rgba(139,92,246,0.18), transparent 60%),
              radial-gradient(1200px 600px at -10% 30%, rgba(167,139,250,0.12), transparent 60%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(15, 10, 31, 0.6);
  border-bottom: 1px solid rgba(167,139,250,0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4%;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* Gradient logo override */
.nav .logo {
  background: linear-gradient(90deg, #a78bfa 0%, #f5f3ff 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(167,139,250,0.12);
}

.hero {
  min-height: clamp(70vh, 85vh, 92vh);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 4%;
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(139,92,246,0.22), transparent 60%),
    radial-gradient(800px 400px at 90% 20%, rgba(167,139,250,0.16), transparent 60%);
}

.hero-content {
  width: min(900px, 92vw);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(139,92,246,0.18);
  color: #e9ddff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  border: 1px solid rgba(167,139,250,0.28);
  box-shadow: 0 4px 14px rgba(139,92,246,0.25) inset;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.18);
}

h1 {
  font-size: clamp(30px, 5vw + 8px, 48px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: 0.2px;
}

/* Hero title enhancements */
.hero h1 {
  background: linear-gradient(90deg, #f5f3ff 0%, #d7c9ff 35%, #a78bfa 65%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(60%, 220px);
  height: 6px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(167,139,250,0.25) 0%, rgba(139,92,246,0.85) 50%, rgba(167,139,250,0.25) 100%);
  background-size: 200% 100%;
  box-shadow: 0 8px 20px rgba(139,92,246,0.35);
  animation: shimmer 3s linear infinite;
}

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

.subtitle {
  color: var(--muted);
  margin: 0 0 22px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(139,92,246,0.25), inset 0 -3px 0 rgba(0,0,0,0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover { transform: translateY(-1px); background: var(--primary-600); }
.btn:active { transform: translateY(0); background: var(--primary-700); }

.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, rgba(22,15,42,0.6), rgba(22,15,42,0.6)), var(--surface); }

.section h2 {
  font-size: clamp(22px, 2.2vw + 8px, 28px);
  margin: 0 0 24px;
}

/* Gradient section headings */
.section h2 {
  background: linear-gradient(90deg, #f5f3ff 0%, #d7c9ff 35%, #a78bfa 65%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.card .icon { font-size: 28px; }
.card h3 { margin: 8px 0 6px; }
.card p { margin: 0; color: var(--muted); }

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

.recipe {
  display: grid;
  grid-template-rows: 160px auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(167,139,250,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
}

.recipe-media {
  background: none;
}

.recipe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recipe-body { padding: 14px; }
.recipe h3 { margin: 0 0 6px; }
.recipe p { margin: 0 0 12px; color: var(--muted); }

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.form-row { display: grid; gap: 6px; }

label { font-weight: 600; }

input, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(167,139,250,0.28);
  background: rgba(15,10,31,0.3);
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

.btn.submit { width: fit-content; }

.site-footer {
  border-top: 1px solid rgba(167,139,250,0.18);
  padding: 28px 0;
  background: rgba(15, 10, 31, 0.6);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 320px;
  background:
    radial-gradient(600px 200px at 30% 40%, rgba(167,139,250,0.25), transparent 60%),
    radial-gradient(800px 240px at 70% 10%, rgba(139,92,246,0.2), transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(4px);
}

.hero { position: relative; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(167,139,250,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00));
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.gallery-grid figcaption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 6px 8px;
  font-size: 12px;
  border-radius: 8px;
  color: var(--text);
  background: rgba(22,15,42,0.55);
  border: 1px solid rgba(167,139,250,0.25);
  backdrop-filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
} 