/* PlantPlezier - Tuinieren & Plantenplezier */

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

:root {
    --forest: #2D6A4F;
    --leaf: #52B788;
    --earth: #D4A373;
    --cream: #F5F0EB;
    --bark: #8B6F47;
    --text-primary: #2B2B2B;
    --text-light: #5A5A5A;
    --white: #FAFAF8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --radius: 6px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito Sans', Arial, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
}

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

a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--leaf);
}

/* Site navigation */

.site-top {
    background: var(--white);
    border-bottom: 2px solid var(--cream);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-top-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-brand img {
    height: 44px;
    width: auto;
}

.site-brand span {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--forest);
    letter-spacing: -0.3px;
}

.primary-navigation {
    display: flex;
    list-style: none;
    gap: 6px;
}

.primary-navigation li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--radius);
    transition: background 0.2s ease, color 0.2s ease;
}

.primary-navigation li a:hover,
.primary-navigation li a.current {
    background: var(--cream);
    color: var(--forest);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hero section */

.landing-hero {
    background: linear-gradient(135deg, var(--forest) 0%, #1B4332 100%);
    color: var(--white);
    padding: 80px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(82, 183, 136, 0.12);
    border-radius: 50%;
}

.landing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(212, 163, 115, 0.08);
    border-radius: 50%;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-action {
    display: inline-block;
    background: var(--earth);
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.25s ease, transform 0.15s ease;
}

.hero-action:hover {
    background: var(--bark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Intro block */

.intro-block {
    padding: 70px 24px;
    background: var(--white);
}

.intro-block-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--leaf);
    margin-bottom: 16px;
}

.intro-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-block p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Feature cards */

.feature-grid {
    padding: 60px 24px 80px;
    background: var(--cream);
}

.feature-grid-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.feature-grid-header {
    text-align: center;
    margin-bottom: 48px;
}

.feature-grid-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.feature-grid-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--forest);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-card-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--forest);
}

.feature-card-link:hover {
    color: var(--leaf);
}

/* Seasonal tip banner */

.seasonal-banner {
    background: var(--forest);
    color: var(--white);
    padding: 56px 24px;
}

.seasonal-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.seasonal-banner-text {
    flex: 1;
}

.seasonal-banner-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.seasonal-banner-text p {
    opacity: 0.88;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.seasonal-banner-visual {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasonal-banner-visual svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.banner-link {
    display: inline-block;
    background: var(--earth);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.banner-link:hover {
    background: var(--bark);
    color: var(--white);
}

/* Blogroll placeholder - will be added in Phase 4 */

.recent-tips {
    padding: 70px 24px;
    background: var(--white);
}

.recent-tips-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.recent-tips-header {
    text-align: center;
    margin-bottom: 44px;
}

.recent-tips-header h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 10px;
}

.recent-tips-header p {
    color: var(--text-light);
    font-size: 1.02rem;
}

.tips-listing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.tip-item {
    border-bottom: 1px solid #e8e3dd;
    padding-bottom: 32px;
}

.tip-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tip-date {
    font-size: 0.82rem;
    color: var(--bark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.tip-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tip-item h3 a {
    color: var(--text-primary);
}

.tip-item h3 a:hover {
    color: var(--forest);
}

.tip-excerpt {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.tip-excerpt a {
    color: var(--forest);
    text-decoration: underline;
}

.tip-read-on {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--forest);
}

.tip-read-on:hover {
    color: var(--leaf);
}

/* Newsletter section */

.newsletter-signup {
    padding: 60px 24px;
    background: var(--cream);
    text-align: center;
}

.newsletter-signup-inner {
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-signup h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.newsletter-signup p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc5ba;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--forest);
}

.newsletter-form button {
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #245840;
}

/* Footer */

.site-footer {
    background: #1B2E24;
    color: #c5cec8;
    padding: 52px 24px 28px;
}

.site-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-menu h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-about p {
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-menu ul {
    list-style: none;
}

.footer-menu ul li {
    margin-bottom: 8px;
}

.footer-menu ul li a {
    color: #c5cec8;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-menu ul li a:hover {
    color: var(--leaf);
}

.footer-contact p {
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--leaf);
}

.footer-bottom {
    border-top: 1px solid #2d4438;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: #c5cec8;
    margin-left: 18px;
}

.footer-bottom a:hover {
    color: var(--leaf);
}

/* Content pages generic */

.page-heading {
    background: var(--cream);
    padding: 52px 24px;
    text-align: center;
}

.page-heading h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 10px;
}

.page-heading p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-body {
    padding: 50px 24px;
    max-width: 860px;
    margin: 0 auto;
}

.page-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin: 32px 0 14px;
}

.page-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 10px;
}

.page-body p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.page-body ul, .page-body ol {
    margin: 0 0 16px 24px;
    color: var(--text-light);
}

.page-body li {
    margin-bottom: 6px;
    line-height: 1.7;
}

/* Blog post layout */

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.88rem;
    color: var(--bark);
    font-weight: 600;
}

/* Cookie notice */

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1B2E24;
    color: #ddd;
    padding: 16px 24px;
    z-index: 999;
    display: none;
}

.cookie-bar.visible {
    display: block;
}

.cookie-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-bar p {
    font-size: 0.88rem;
    flex: 1;
    min-width: 250px;
    line-height: 1.5;
}

.cookie-bar p a {
    color: var(--leaf);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-accept {
    background: var(--leaf);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
}

.cookie-decline {
    background: transparent;
    color: #bbb;
    border: 1px solid #555;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: inherit;
}

/* Responsive */

@media (max-width: 900px) {
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .seasonal-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .seasonal-banner-visual {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .primary-navigation {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 12px 24px 20px;
        border-bottom: 2px solid var(--cream);
        box-shadow: var(--shadow-md);
    }

    .primary-navigation.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .site-top-inner {
        position: relative;
    }

    .landing-hero {
        padding: 56px 20px 64px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
