/* kwiaciarniamielec.pl — clean static rewrite */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #3a2d2d;
  background: #fffaf5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #b04a5a; text-decoration: none; }
a:hover { text-decoration: underline; }

/* header */
.site-header {
  background: #fff;
  border-bottom: 3px solid #d99aab;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: #8e2c3f;
  letter-spacing: 0.5px;
}
.brand small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6b5454;
  letter-spacing: 1px;
  margin-top: 2px;
}
.brand a { color: inherit; }

nav.main {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
nav.main a {
  display: block;
  padding: 10px 14px;
  color: #5c4343;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
nav.main a:hover { background: #fbe7ed; color: #8e2c3f; text-decoration: none; }
nav.main a.current { background: #8e2c3f; color: #fff; }

/* hero */
.hero {
  position: relative;
  height: 420px;
  background: linear-gradient(rgba(60,30,40,0.35), rgba(60,30,40,0.5)), center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  padding: 0 20px;
}
.hero h1 small {
  display: block;
  font-size: 18px;
  margin-top: 14px;
  letter-spacing: 4px;
  opacity: 0.92;
}

/* main content */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}
.intro {
  font-size: 19px;
  line-height: 1.8;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  color: #4a3535;
}
.intro p + p { margin-top: 18px; }

h2 {
  font-size: 30px;
  font-weight: 400;
  color: #8e2c3f;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
h2 + .subtitle {
  text-align: center;
  color: #8b6c6c;
  margin-bottom: 36px;
  font-style: italic;
}

/* cards (homepage tiles) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.card img { height: 200px; object-fit: cover; width: 100%; }
.card .body { padding: 20px 22px; }
.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #8e2c3f;
  margin-bottom: 8px;
}
.card p { font-size: 15px; color: #5c4343; }
.card a.more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #b04a5a;
}

/* article layout */
.article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 48px;
}
.article.flip { direction: rtl; }
.article.flip > * { direction: ltr; }
.article img {
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  max-height: 380px;
  object-fit: cover;
}
.article .text p + p { margin-top: 16px; }
.article ul { margin: 14px 0 0 20px; }
.article li { margin-bottom: 6px; }

/* contact */
.contact-info {
  background: #fff;
  border-left: 4px solid #d99aab;
  padding: 28px 32px;
  margin: 36px auto;
  max-width: 560px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.contact-info h3 {
  color: #8e2c3f;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 22px;
}
.contact-info dl { line-height: 1.9; }
.contact-info dt {
  font-weight: 600;
  color: #6b4848;
  display: inline-block;
  min-width: 130px;
}
.contact-info dd { display: inline; }
.contact-info dd::after { content: ""; display: block; }

/* footer */
.site-footer {
  background: #2d1f23;
  color: #d4c4c4;
  text-align: center;
  padding: 32px 24px;
  margin-top: 48px;
  font-size: 14px;
}
.site-footer a { color: #f3c5d2; }

@media (max-width: 760px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav.main { width: 100%; justify-content: flex-start; }
  nav.main a { padding: 8px 10px; font-size: 13px; }
  .hero { height: 320px; }
  .hero h1 { font-size: 30px; }
  .article { grid-template-columns: 1fr; gap: 24px; }
  .article.flip { direction: ltr; }
  .container { padding: 36px 20px; }
  h2 { font-size: 24px; }
}
