/* Botanica Kwiaciarnia — botanica-kwiaciarnia.eu */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Nunito+Sans:wght@300;400;600&display=swap');

:root {
    --accent: #2e6b4f;
    --accent-light: #3d8a67;
    --accent-dark: #1e4a36;
    --gold: #c9a96e;
    --gold-light: #e0c98f;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #faf9f6;
    --bg-alt: #f0ede6;
    --white: #fff;
    --border: #ddd8ce;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--accent-dark);
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

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

/* 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,0.04);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: 0.02em;
}
.logo span { color: var(--gold); }

.main-nav { display: flex; gap: 2rem; list-style: none; }
.main-nav a {
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--gold);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,74,54,0.55) 0%, rgba(30,74,54,0.75) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}
.hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gold);
    color: var(--white);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn:hover { background: var(--gold-light); color: var(--white); }

/* Sections */
.section { padding: 4rem 2rem; }
.section-alt { background: var(--bg-alt); }

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

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.8rem auto 0;
}

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-body p { font-size: 0.95rem; color: var(--text-light); }

/* Content page */
.page-header {
    position: relative;
    height: 35vh;
    min-height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}
.page-header img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-header .hero-overlay {
    background: linear-gradient(180deg, rgba(30,74,54,0.5) 0%, rgba(30,74,54,0.7) 100%);
}
.page-header h1 {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.content { max-width: 800px; margin: 0 auto; }
.content h2 { margin-top: 2rem; }
.content p { margin-bottom: 1rem; }
.content ul, .content ol { margin: 0.5rem 0 1.5rem 1.5rem; }
.content li { margin-bottom: 0.3rem; }

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.two-col img { width: 100%; height: auto; }

/* Contact info */
.contact-info { font-size: 1.05rem; }
.contact-info p { margin-bottom: 0.8rem; }
.contact-info strong { color: var(--accent-dark); }

/* Footer */
.site-footer {
    background: var(--accent-dark);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
}
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: var(--gold); }
.footer-copy { margin-top: 0.5rem; opacity: 0.7; }

/* Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; gap: 0.8rem; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }

    .hero { height: 55vh; min-height: 320px; }
    .hero-content h1 { font-size: 2.2rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .card-grid { grid-template-columns: 1fr; }

    .header-inner { padding: 0.6rem 1.2rem; }
    .section { padding: 2.5rem 1.2rem; }
}
