/* Kwiaciarnia Pasadena — static one-pager */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poiret+One&display=swap');

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

:root {
  --accent: #e04d6d;
  --text: #2a2a2a;
  --text-light: #555;
  --bg: #fff;
  --bg-dark: #2a2a2a;
  --bg-section: #fafafa;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #c13a58; }

h1, h2, h3 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Header image ---- */
.hero-image {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 500px;
}

/* ---- Navbar ---- */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo img {
  height: 55px;
  width: auto;
}
.navbar .logo a {
  display: flex;
  align-items: center;
}
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.navbar nav ul li a {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: .5px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.navbar nav ul li a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text);
  padding: 5px;
}

/* ---- Sections ---- */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--text);
}
.section-title .line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
}

/* O Kwiaciarni */
.section-about {
  padding: 60px 0;
  background: var(--bg);
}
.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}
.about-text {
  flex: 1;
}
.about-text p {
  margin-bottom: 12px;
  color: var(--text-light);
}
.about-image {
  flex: 0 0 380px;
  border-radius: 6px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  border-radius: 6px;
}

/* Parallax-like banner */
.parallax-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.parallax-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.parallax-banner .overlay-text {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.parallax-banner .overlay-text h2 {
  font-family: 'Poiret One', cursive;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 2px;
}

/* Nasza oferta */
.section-offer {
  padding: 60px 0;
  background: var(--bg-section);
}
.offer-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.offer-list ul {
  list-style: none;
  padding: 0;
}
.offer-list ul li {
  padding: 10px 0;
  font-size: 17px;
  color: var(--text-light);
  border-bottom: 1px solid #eee;
}
.offer-list ul li:last-child {
  border-bottom: none;
}

/* Photo gallery row (images from Wayback) */
.photo-row {
  padding: 50px 0;
  background: var(--bg);
}
.photo-row .photos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.photo-row .photos img {
  border-radius: 6px;
  max-width: 700px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Kontakt */
.section-contact {
  padding: 60px 0;
  background: var(--bg-dark);
  color: #ddd;
}
.section-contact h2 {
  color: #fff;
}
.section-contact .line {
  background: var(--accent);
}
.contact-info {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.contact-hours {
  margin-top: 20px;
  line-height: 2;
}
.contact-hours strong {
  color: #fff;
}

/* Footer */
.site-footer {
  background: #222;
  color: #999;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
.site-footer a {
  color: #ccc;
}
.site-footer a:hover {
  color: var(--accent);
}


/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-image img { max-height: 300px; }

  .navbar nav ul { display: none; }
  .navbar nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    gap: 10px;
  }
  .mobile-toggle { display: block; }

  .about-content {
    flex-direction: column;
  }
  .about-image {
    flex: none;
    width: 100%;
  }

  .parallax-banner {
    background-attachment: scroll;
    min-height: 250px;
  }
  .parallax-banner .overlay-text h2 { font-size: 26px; }

  .photo-row .photos img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .section-about, .section-offer, .section-contact, .photo-row {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .section-title h2 { font-size: 24px; }
  .navbar .logo img { height: 42px; }
}
