/* kwiatynaslub.pl — Flora Dekor */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --pink: #e586a7;
  --pink-dark: #c4607f;
  --green: #747c2d;
  --green-light: #a3ac5e;
  --text: #3a3a3a;
  --text-light: #666;
  --bg: #fdfbf9;
  --bg-alt: #f5f0eb;
  --white: #fff;
  --max-w: 1100px;
}

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

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

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

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

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,251,249,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229,134,167,.15);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .5px;
}
.logo span { color: var(--pink); }

nav { display: flex; gap: 32px; }
nav a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .3s;
}
nav a:hover::after,
nav a.active::after { width: 100%; }
nav a.active { color: var(--pink-dark); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 520px;
  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: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.45));
}
.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero-text p {
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-alt); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--green);
  text-align: center;
  margin-bottom: 40px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: -24px auto 40px;
}

/* ===== CARDS GRID ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.card img {
  width: 100%; height: 220px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 8px;
}
.card-body p {
  color: var(--text-light);
  font-size: 15px;
}

/* ===== TWO-COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.two-col-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 16px;
}
.two-col-text p { margin-bottom: 16px; color: var(--text-light); }
.two-col-text ul {
  list-style: none;
  padding: 0;
}
.two-col-text li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-light);
}
.two-col-text li::before {
  content: '\2022';
  color: var(--pink);
  position: absolute;
  left: 4px;
  font-size: 18px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 48px 24px;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}
.cta-strip p { font-weight: 300; opacity: .85; }

/* ===== GALLERY (bukiety page) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.gallery-item img {
  width: 100%; height: 300px;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  padding: 16px 20px;
  background: var(--white);
}
.gallery-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 4px;
}
.gallery-caption p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 12px;
}
.contact-card p { color: var(--text-light); font-size: 15px; }

/* ===== FOOTER ===== */
footer {
  background: #2c2c2c;
  color: rgba(255,255,255,.6);
  padding: 40px 24px;
  text-align: center;
  font-size: 14px;
}
footer a { color: rgba(255,255,255,.75); }
footer a:hover { color: var(--pink); }
.footer-copy { margin-top: 16px; font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  nav.open { display: flex; }
  .hero { height: 380px; }
  .hero-text h1 { font-size: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 16px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}
