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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f7f5f2;
  line-height: 1.7;
}

a { color: #c2185b; text-decoration: none; }
a:hover { color: #880e4f; text-decoration: underline; }

/* HEADER */
.site-header {
  background: #1a1a2e;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.site-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.site-logo span { color: #f48fb1; }
.site-logo:hover { color: #f48fb1; text-decoration: none; }

.site-nav { display: flex; gap: 4px; }
.site-nav a {
  color: #ccc;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 3px; background: #fff; margin: 4px 0; border-radius: 2px; }

/* HERO */
.hero {
  position: relative;
  height: 400px;
  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: 2;
  background: rgba(26,26,46,0.7);
  padding: 36px 44px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  max-width: 620px;
}
.hero-overlay h1 { font-size: 2rem; margin-bottom: 8px; }
.hero-overlay p { font-size: 1.05rem; opacity: 0.9; }

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(26,26,46,0.65);
  padding: 20px 36px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
}
.page-hero-overlay h1 { font-size: 1.7rem; }

/* CONTENT */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 20px;
}

.content h2 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f48fb1;
}

.content h3 {
  font-size: 1.15rem;
  color: #c2185b;
  margin: 24px 0 8px;
}

.content p { margin-bottom: 14px; }
.content ul, .content ol { margin: 0 0 18px 24px; }
.content li { margin-bottom: 5px; }

/* KWIATOMAT CARDS */
.kwiatomat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0;
}

.kwiatomat-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid #c2185b;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kwiatomat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.kwiatomat-card h3 {
  margin: 0 0 6px;
  color: #1a1a2e;
  font-size: 1.1rem;
}
.kwiatomat-card .address {
  color: #666;
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.kwiatomat-card .details {
  font-size: 0.88rem;
  color: #888;
}
.kwiatomat-card .badge {
  display: inline-block;
  background: #fce4ec;
  color: #c2185b;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  margin-top: 8px;
}

/* INFO BOX */
.info-box {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin: 20px 0;
}
.info-box h3 { margin-top: 0; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.step {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #c2185b;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 1.05rem; color: #1a1a2e; }
.step p { font-size: 0.9rem; color: #666; margin: 0; }

/* FOOTER */
.site-footer {
  background: #1a1a2e;
  color: #aaa;
  text-align: center;
  padding: 26px 20px;
  margin-top: 40px;
  font-size: 0.88rem;
}
.site-footer a { color: #f48fb1; }
.site-footer a:hover { color: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner { height: 54px; }
  .site-logo { font-size: 1.2rem; }
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    background: #1a1a2e;
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 20px; border-radius: 0; }
  .hero { height: 280px; }
  .hero-overlay { padding: 22px 18px; }
  .hero-overlay h1 { font-size: 1.5rem; }
  .page-hero { height: 180px; }
  .kwiatomat-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
