/* alekwiatki.pl — Kwiaciarnia Kraków */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #3a6b4a;
  --green-light: #5a9e6f;
  --beige: #f7f1e8;
  --beige-dark: #ede4d6;
  --brown: #7a5c3a;
  --text: #2c2c2c;
  --text-light: #555;
  --white: #fff;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

/* HEADER */
header {
  background: var(--white);
  border-bottom: 2px solid var(--beige-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
}
.logo span { color: var(--brown); }

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover, nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* HERO */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  margin-bottom: 28px;
}
.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.btn:hover { background: var(--green-light); color: var(--white); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

/* SECTION */
section { padding: 72px 24px; }
section:nth-child(even) { background: var(--beige); }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 560px;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

/* CARD */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 10px;
}
.card-body p { color: var(--text-light); font-size: 0.95rem; }
.card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-link::after { content: ' →'; }

/* PAGE HERO (subpages) */
.page-hero {
  background: var(--green);
  padding: 60px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* IMAGE + TEXT */
.img-text img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.img-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--green);
  margin-bottom: 16px;
}
.img-text p { color: var(--text-light); margin-bottom: 20px; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--green);
  color: var(--white);
  padding: 48px 40px;
  border-radius: 8px;
  text-align: center;
}
.highlight-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.highlight-box p { opacity: 0.9; margin-bottom: 28px; }
.highlight-box .btn {
  background: var(--white);
  color: var(--green);
}
.highlight-box .btn:hover { background: var(--beige); }

/* OFERTA LIST */
.oferta-list { list-style: none; }
.oferta-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--beige-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
}
.oferta-list li::before {
  content: '✿';
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FLOWER BOX SECTION */
.fb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.fb-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.fb-step-num {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.fb-step h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green);
  margin-bottom: 10px;
}
.fb-step p { color: var(--text-light); font-size: 0.95rem; }

/* KONTAKT */
.kontakt-info { padding: 40px; background: var(--beige); border-radius: 8px; }
.kontakt-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 24px;
}
.kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text-light);
}
.kontakt-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--green);
}
.kontakt-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
}
.footer-logo span { color: var(--green-light); }
footer p { font-size: 0.88rem; }
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .fb-steps { grid-template-columns: 1fr; }
  .hero { height: 380px; }
  .hero-content h1 { font-size: 1.9rem; }
  nav ul { gap: 18px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .logo { font-size: 1.3rem; }
  nav a { font-size: 0.82rem; letter-spacing: 0.03em; }
  .hero-content h1 { font-size: 1.5rem; }
}
