/* Kwiaciarnia Impresja — Kamionki */
:root {
  --accent: #316594;
  --accent-light: #6B94B4;
  --bg: #f5f5f5;
  --bg-white: #fff;
  --text: #333;
  --text-light: #666;
  --border: #ddd;
}

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

body {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.navbar .wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.navbar .site-name {
  color: #fff;
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .5px;
  padding: .8rem 0;
  white-space: nowrap;
}
.navbar .site-name:hover { text-decoration: none; opacity: .9; }
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: .2rem;
}
.navbar nav a {
  color: rgba(255,255,255,.9);
  padding: .8rem 1rem;
  display: block;
  font-size: .95rem;
  transition: background .2s;
}
.navbar nav a:hover {
  background: rgba(255,255,255,.15);
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--accent) url('images/homepage-3.jpg') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(49,101,148,.55);
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
}
.hero h1 {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: .5rem;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.2rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto;
}

/* SECTIONS */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section h2 {
  font-family: 'Yanone Kaffeesatz', sans-serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.section p {
  color: var(--text-light);
  max-width: 800px;
  margin-bottom: 1rem;
}

/* ABOUT */
.about {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.about .cols {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.about .cols .text { flex: 1; }
.about .cols .img-side {
  flex: 0 0 280px;
  border-radius: 6px;
  overflow: hidden;
}

/* OFFER GRID */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.offer-card {
  background: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.offer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.offer-card .card-body {
  padding: 1rem 1.2rem;
}
.offer-card h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.offer-card p {
  font-size: .88rem;
  color: var(--text-light);
  margin: 0;
}

/* GALLERY */
.gallery-bg { background: var(--bg-white); border-top: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

/* FOOTER */
.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 1.5rem;
  font-size: .9rem;
}
.site-footer a { color: #fff; }
.site-footer a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar .wrap { flex-direction: column; gap: 0; }
  .navbar nav ul { flex-wrap: wrap; justify-content: center; }
  .navbar nav a { padding: .6rem .8rem; font-size: .85rem; }
  .hero { min-height: 320px; }
  .hero h1 { font-size: 2.2rem; }
  .about .cols { flex-direction: column; }
  .about .cols .img-side { flex: none; width: 100%; max-width: 400px; }
  .offer-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
