/* Galeria Kwiatów YUCCA */
@import url('https://fonts.googleapis.com/css2?family=Oleo+Script&family=Lato:wght@300;400;700&display=swap');

:root {
  --accent: #8b5e3c;
  --accent-dark: #6b4226;
  --green: #5a7d4b;
  --bg: #faf8f5;
  --bg-warm: #f3ede6;
  --text: #3d3228;
  --text-light: #6b5e52;
  --border: #e0d6cc;
  --white: #fff;
}

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

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

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

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

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.navbar .wrap {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}
.navbar .logo-link { display: flex; align-items: center; gap: .6rem; padding: .5rem 0; }
.navbar .logo-link img { height: 44px; width: auto; }
.navbar .logo-link span {
  font-family: 'Oleo Script', cursive;
  font-size: 1.25rem;
  color: var(--accent-dark);
}
.navbar .logo-link:hover { text-decoration: none; opacity: .85; }
.navbar nav ul { list-style: none; display: flex; gap: .15rem; }
.navbar nav a {
  color: var(--text);
  padding: .85rem .9rem;
  display: block;
  font-size: .9rem;
  font-weight: 400;
  transition: color .2s, background .2s;
}
.navbar nav a:hover {
  color: var(--accent);
  background: var(--bg-warm);
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  max-height: 440px;
}
.hero img { width: 100%; object-fit: cover; }
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(139,94,60,.25), rgba(139,94,60,.55));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-family: 'Oleo Script', cursive;
  font-size: 3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero h1 span { display: block; font-size: 1.2rem; font-family: 'Lato', sans-serif; font-weight: 300; margin-top: .4rem; }

/* SECTIONS */
.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section h2 {
  font-family: 'Oleo Script', cursive;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section p {
  color: var(--text-light);
  max-width: 760px;
  margin-bottom: .8rem;
}

/* ABOUT */
.about-bg { background: var(--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 .aside-img {
  flex: 0 0 160px;
  border-radius: 6px;
  overflow: hidden;
}

/* OFFER */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.3rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.offer-card .icon { font-size: 2rem; margin-bottom: .5rem; }
.offer-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .4rem;
}
.offer-card p {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
}

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

/* MAIN LAYOUT (multi-page) */
.main-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  gap: 2rem;
}
.main-wrap .content {
  flex: 1;
  min-width: 0;
}
.main-wrap .content h1 {
  font-family: 'Oleo Script', cursive;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.main-wrap .content p {
  color: var(--text-light);
  margin-bottom: .9rem;
  line-height: 1.8;
}
.main-wrap .content a {
  color: var(--accent);
}
.main-wrap .content h2 {
  font-family: 'Oleo Script', cursive;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 1.5rem 0 .8rem;
}
.main-wrap .content ul, .main-wrap .content ol {
  margin: .5rem 0 1rem 1.5rem;
  color: var(--text-light);
}
.main-wrap .content li { margin-bottom: .3rem; }
.main-wrap .sidebar {
  flex: 0 0 180px;
}
.sidebar-img {
  border-radius: 6px;
  width: 100%;
}
.navbar nav a.active {
  color: var(--accent);
  font-weight: 700;
}

/* FOOTER */
.site-footer {
  background: var(--accent-dark);
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: 1.3rem;
  font-size: .88rem;
}
.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: .55rem .7rem; font-size: .82rem; }
  .hero h1 { font-size: 2rem; }
  .about-cols { flex-direction: column; }
  .about-cols .aside-img { flex: none; width: 100%; max-width: 200px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .main-wrap { flex-direction: column; }
  .main-wrap .sidebar { flex: none; width: 100%; max-width: 200px; }
}
