/*zmienne */
:root {
  --green-deep:  #2d4a32;
  --green-mid:   #4a7a52;
  --green-light: #7aab82;
  --berry:       #6b3a7d;
  --berry-soft:  #9b6aad;
  --cream:       #f7f3ec;
  --warm-white:  #faf8f4;
  --sand:        #e8e0d0;
  --text:        #1e2d22;
  --text-mid:    #3d5040;
  --text-soft:   #6b7c6e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
}

/* nawigacja */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 60px;
  background: rgba(30, 45, 34, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 171, 130, 0.2);
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
}

nav a {
  color: rgba(247, 243, 236, 0.82);
  text-decoration: none;
  padding: 8px 14px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

nav a:hover {
  background: rgba(122, 171, 130, 0.18);
  color: #c8e6cc;
}

nav .nav-adres {
  margin-left: auto;
  font-size: 0.78rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(247, 243, 236, 0.55);
}

/* HERO  */
.hero {
  height: 100vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,35,22,0.55) 0%, rgba(20,35,22,0.72) 100%),
    url("https://res.cloudinary.com/dwgz2quan/image/upload/be47f9c601588e5ac0bfc5a94cd08d9a_jf2r3h.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color:rgba(107, 58, 125, 0.956);
  text-shadow: 0 2px 28px rgba(215, 214, 214, 0.966);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--green-mid);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(45, 74, 50, 0.45);
}

.hero-btn:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,74,50,0.5);
  color: #fff;
  text-decoration: none;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

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

/* ── animacja wejścia sekcji ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── tło sekcji ── */
section {
  padding: 96px 0;
}

section:nth-child(odd) {
  background: var(--warm-white);
}

section:nth-child(even) {
  background: var(--cream);
}

/* ── karty ── */
.card-natural {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow:
    0 2px 8px rgba(45,74,50,0.06),
    0 12px 40px rgba(45,74,50,0.09);
  border: 1px solid rgba(122,171,130,0.15);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card-natural:hover {
  box-shadow:
    0 4px 12px rgba(45,74,50,0.08),
    0 20px 52px rgba(45,74,50,0.13);
  transform: translateY(-3px);
}

/* ── nagłówki ── */
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
  font-weight: 500;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.title-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--berry-soft));
  border-radius: 2px;
  margin: 14px 0 28px 0;
}

.title-line.center {
  margin: 14px auto 28px auto;
}

h3.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--green-deep);
  margin-bottom: 14px;
}

h4.sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-mid);
  margin: 22px 0 8px 0;
  padding-left: 12px;
  border-left: 3px solid var(--green-light);
}

p {
  color: var(--text-mid);
  font-size: 0.96rem;
  margin-bottom: 12px;
}

strong { color: var(--text); font-weight: 500; }

ul {
  padding-left: 1.2em;
  color: var(--text-mid);
}

ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ── galeria ── */
.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.thumbnail {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(45,74,50,0.15);
}

.thumbnail:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(45,74,50,0.25);
}

/* ── modal ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,20,12,0.92);
  text-align: center;
  backdrop-filter: blur(6px);
}

.krzyzyk { display: inline-block; position: relative; }

.modal-content {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  margin-top: 5%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}

.close {
  position: absolute;
  top: 10px; right: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  transition: color 0.2s;
}
.close:hover { color: var(--berry-soft); }

/* ── odmiany ── */
.odmiana-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px 30px;
  border: 1px solid rgba(122,171,130,0.2);
  height: 100%;
}

.odmiana-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--green-mid);
  color: #fff;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.odmiana-badge.berry { background: var(--berry); }

/* ── opinie ── */
.opinia-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(122,171,130,0.15);
  box-shadow: 0 4px 20px rgba(45,74,50,0.07);
  height: 100%;
  position: relative;
}

.opinia-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--green-light);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 22px;
  line-height: 1;
}

.opinia-text {
  font-size: 0.94rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 24px;
}

.opinia-autor {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.05em;
}

.stars {
  color: #c9a84c;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

/* ── CTA ── */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74,122,82,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(107,58,125,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: var(--green-deep);
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  position: relative;
}

.cta-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--green-deep);
  text-decoration: none;
}

/* ── kontakt ── */
.kontakt-info p {
  font-size: 0.96rem;
  margin-bottom: 10px;
}

.kontakt-link {
  color: var(--green-mid);
  text-decoration: none;
}
.kontakt-link:hover {
  color: var(--berry);
  text-decoration: underline;
}

/* ── alerty / wyróżnienia ── */
.alert-natural {
  background: rgba(107,58,125,0.07);
  border-left: 4px solid var(--berry-soft);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
}

.alert-natural p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

/* ── stopka ── */
footer {
  background: #14201a;
  color: rgba(247,243,236,0.5);
  text-align: center;
  padding: 28px 20px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

footer a {
  color: rgba(247,243,236,0.5);
  text-decoration: none;
}
footer a:hover {
  color: var(--green-light);
}

/* ── responsive ── */
@media (max-width: 640px) {
  .card-natural { padding: 28px 22px; }
  nav { padding: 0 12px; }
  nav a { padding: 8px 8px; font-size: 0.75rem; }
  .thumbnail { width: 150px; height: 150px; }
}

/* COOKIE BANER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(20, 32, 26, 0.95);
  color: white;
  padding: 18px;
  border-radius: 12px;
  z-index: 99999;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  font-size: 0.9rem;
}

.cookie-banner p {
  margin: 0;
  color: white;
}

.cookie-banner a {
  color: #c8e6cc;
  text-decoration: underline;
}

.cookie-banner button {
  background: var(--green-mid);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-banner button:hover {
  background: var(--green-deep);
}