/* Pro Kwiaciarnia — prokwiaciarnia.pl */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #2d6a2e;
  --green-mid: #4a9e3f;
  --green-light: #e8f5e4;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --bg: #f7faf6;
  --border: #d4e6d0;
  --accent: #e8a525;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--green-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-mid); }

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

/* HEADER */
.site-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
}
.site-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.site-logo:hover { color: var(--green-light); }

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav a {
  color: rgba(255,255,255,.85);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: .3s;
}

/* HERO */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  padding: 20px;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.hero p {
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
}

/* MAIN CONTENT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green-mid);
}

.content-section {
  margin-bottom: 40px;
}
.content-section h2 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.content-section p {
  margin-bottom: 14px;
  color: var(--text);
}

/* CARD GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.card-body h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.card-body p {
  font-size: .9rem;
  color: var(--text-light);
}

/* FEATURE ROW */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.feature {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.feature h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.feature p {
  font-size: .9rem;
  color: var(--text-light);
}

/* PAGE IMAGE */
.page-image {
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

/* INFO BOX */
.info-box {
  background: var(--green-light);
  border-left: 4px solid var(--green-mid);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.info-box h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
}

/* CONTACT INFO */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.contact-card {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.contact-card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* FOOTER */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 28px 20px;
  text-align: center;
  font-size: .9rem;
}
.site-footer a {
  color: rgba(255,255,255,.9);
}
.site-footer a:hover {
  color: var(--white);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  nav ul.open { display: flex; }
  nav a {
    padding: 12px 20px;
    border-radius: 0;
  }
  .hero { height: 300px; }
  .hero h1 { font-size: 1.7rem; }
  .page-title { font-size: 1.4rem; }
}
