/* ═══════════════════════════════════════════════
   CUCUMBER SITE — Fresh & Modern
   ═══════════════════════════════════════════════ */

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

:root {
  --green-1: #0a1f0a;
  --green-2: #143d14;
  --green-3: #1e6b1e;
  --green-4: #3ddc84;
  --green-5: #b6fcd5;
  --lime: #d4ff2b;
  --cream: #f4f7ee;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--green-1);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Selection ────────────────────────────── */

::selection {
  background: var(--green-4);
  color: var(--green-1);
}

/* ── Navigation ───────────────────────────── */

.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem 1.5rem;
  background: rgba(10, 31, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(61, 220, 132, 0.15);
  border-radius: 999px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--green-4);
}

/* ── Hero ─────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(61, 220, 132, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(61, 220, 132, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-4);
  margin-bottom: 2.5rem;
  animation: fadeDown 1s ease both;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 10rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title .line {
  display: block;
  animation: fadeUp 0.8s ease both;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

.hero-title .accent {
  background: linear-gradient(135deg, var(--green-4), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.6;
  animation: fadeUp 0.8s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 0.8s ease 1s both;
}

.hero-scroll span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.4;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--green-4);
  animation: scrollPulse 2s ease infinite;
}

/* Floating cucumbers */

.floating-cukes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-cuke {
  position: absolute;
  left: var(--x);
  bottom: -60px;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatUp var(--dur) ease-in-out var(--delay) infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ── Marquee ──────────────────────────────── */

.marquee {
  padding: 1.2rem 0;
  background: var(--lime);
  color: var(--green-1);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

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

/* ── Sections ─────────────────────────────── */

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-4);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 4rem;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-4), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Facts ────────────────────────────────── */

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

.fact-card {
  background: rgba(61, 220, 132, 0.05);
  border: 1px solid rgba(61, 220, 132, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.fact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 220, 132, 0.3);
}

.fact-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--green-4), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.fact-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.7;
}

/* ── Varieties ────────────────────────────── */

.varieties-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.variety-card {
  background: linear-gradient(160deg, rgba(61, 220, 132, 0.08), rgba(212, 255, 43, 0.04));
  border: 1px solid rgba(61, 220, 132, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.variety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(61, 220, 132, 0.1);
}

.variety-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.variety-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.variety-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.6;
  margin-bottom: 1.2rem;
}

.variety-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--green-4);
  border-radius: 999px;
  color: var(--green-4);
}

/* ── Benefits ─────────────────────────────── */

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(61, 220, 132, 0.04);
  border: 1px solid rgba(61, 220, 132, 0.08);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  border-color: rgba(61, 220, 132, 0.25);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 220, 132, 0.1);
  border-radius: var(--radius-sm);
}

.benefit-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.6;
}

/* ── Recipes ──────────────────────────────── */

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.recipe-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.recipe-card:hover {
  transform: translateY(-6px);
}

.recipe-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    hsl(var(--hue), 60%, 15%),
    hsl(var(--hue), 80%, 8%)
  );
  z-index: 0;
}

.recipe-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  z-index: 1;
}

.recipe-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.recipe-time {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--green-1);
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.recipe-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.recipe-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
}

/* ── Footer ───────────────────────────────── */

.footer {
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.footer-big {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--green-4), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.footer-sub {
  font-size: 0.9rem;
  opacity: 0.4;
}

/* ── Reveal animation ─────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Keyframes ────────────────────────────── */

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.3); }
}

/* ── Responsive ───────────────────────────── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .benefit-item {
    flex-direction: column;
    gap: 1rem;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
  }
}
