/* flowers-city.pl — CSS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --accent: #A90446;
  --accent-light: #d4266e;
  --bg: #fefcfa;
  --bg-alt: #fdf5f0;
  --text: #2d2a28;
  --text-light: #6b6560;
  --heading: #1e1a17;
  --white: #fff;
  --border: #e8ddd6;
  --shadow: 0 2px 16px rgba(0,0,0,.07);
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--heading);
  line-height: 1.25;
}

h1 { font-size: 2.6rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: .6em; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: .4em; }

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

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

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

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 68px;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent);
}
.site-logo span { color: var(--heading); }

nav ul { list-style: none; display: flex; gap: 28px; }
nav a {
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav a:hover, nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--heading); margin: 5px 0;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 440px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(169,4,70,.75), rgba(30,26,23,.6));
}
.hero-content { position: relative; z-index: 1; max-width: 600px; padding: 64px 0; }
.hero h1 { color: var(--white); margin-bottom: .4em; }
.hero p { font-size: 1.15rem; line-height: 1.6; opacity: .92; margin-bottom: 1.4em; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--accent-light); color: var(--white); transform: translateY(-1px); }

/* ── Sections ── */
section { padding: 64px 0; }
section:nth-child(even) { background: var(--bg-alt); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: .6em auto 0; }

/* ── Cards grid ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 a { color: var(--heading); }
.card-body h3 a:hover { color: var(--accent); }
.card-body p { color: var(--text-light); font-size: .93rem; margin-top: .4em; }

/* ── Two-col layout ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }
.two-col .text h2 { margin-bottom: .5em; }
.two-col .text p { margin-bottom: 1em; }

/* ── Feature list ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; margin-top: 40px; }
.feature { text-align: center; padding: 28px 20px; }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature h3 { font-size: 1.15rem; }
.feature p { color: var(--text-light); font-size: .9rem; margin-top: .3em; }

/* ── Contact info ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.contact-info { list-style: none; }
.contact-info li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .95rem; }
.contact-info li strong { display: block; color: var(--heading); font-weight: 600; margin-bottom: 2px; }

/* ── Footer ── */
.site-footer {
  background: var(--heading);
  color: rgba(255,255,255,.7);
  padding: 40px 0 28px;
  font-size: .88rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
}
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-col a:hover { color: var(--white); }
.footer-col li + li { margin-top: 6px; }
.footer-bottom {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: rgba(255,255,255,.45);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 360px; }
  .hero-content { padding: 40px 0; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col.reverse .text { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  nav.open ul {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    gap: 0;
  }
  nav.open li { padding: 10px 0; }
  .menu-toggle { display: block; }
  .footer-inner { flex-direction: column; }
}
