:root {
    --color-primary: #228B22;
    --color-secondary: #8BC34A;
    --color-background: #F8FBF8;
    --color-footer-bg: #1B5E20;
    --color-button: #4CAF50;
    --color-button-text: #F5F5DC; /* Ivory */

    --section-bg-1: #E8F5E9;
    --section-bg-2: #F1F8E9;
    --section-bg-3: #DCEDC8;
    --section-bg-4: #FFFFFF;
    --section-bg-5: #DCE7D6;
    --section-bg-6: #F5F5DC;

    --font-family-main: 'Montserrat', sans-serif;

    --border-radius-base: 8px;
    --border-radius-card: 12px;
    --border-radius-button: 30px 10px 30px 10px;

    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);

    --transition-speed: 0.3s;
    --line-height-base: 1.7;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-family-main);
    color: #333;
    background-color: var(--color-background);
    line-height: var(--line-height-base);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-main);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Global Container for content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Backgrounds */
.section-bg-1 { background-color: var(--section-bg-1); }
.section-bg-2 { background-color: var(--section-bg-2); }
.section-bg-3 { background-color: var(--section-bg-3); }
.section-bg-4 { background-color: var(--section-bg-4); }
.section-bg-5 { background-color: var(--section-bg-5); }
.section-bg-6 { background-color: var(--section-bg-6); }

/* Header Style */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8); /* Lekko przezroczysty */
    backdrop-filter: blur(10px); /* Efekt szkła */
    padding: 15px 0;
    box-shadow: var(--shadow-light);
    transition: background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 5px 10px;
    border-radius: var(--border-radius-base);
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--border-radius-button); /* Zaokrąglone przyciski nawigacyjne */
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-button));
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease, transform 0.2s ease;
    box-shadow: var(--shadow-light);
}

.nav-link:hover {
    color: var(--color-button-text); /* Zmiana koloru tekstu na hooverze */
    background: linear-gradient(135deg, var(--color-button), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

/* Button Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-button); /* Asymetryczne zaokrąglenia */
    cursor: pointer;
    background: linear-gradient(145deg, var(--color-button), var(--color-primary));
    color: var(--color-button-text);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Delikatny cień */
    transition: all var(--transition-speed) ease;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Card Style */
.card {
    background-color: var(--section-bg-6); /* Jasny odcień beżu */
    border-radius: var(--border-radius-card); /* Lekko zaokrąglone narożniki */
    box-shadow: var(--shadow-light); /* Delikatny cień */
    padding: 25px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    overflow: hidden; /* Ensure image zoom stays within bounds */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius-base);
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out; /* Efekt zoom na hoverze */
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.card-description {
    font-size: 1rem;
    color: #555;
}

/* Image Style */
img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

/* Footer style */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-button-text);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-secondary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Specific Brutalism elements (shapes for sections) - conceptual */
/* This would typically be applied via specific classes or inline styles depending on the layout */
.section-brutal-shape {
    position: relative;
    padding: 80px 0;
    margin-bottom: 40px;
    overflow: hidden;
}

/* Example: Angled top/bottom edges for a brutalist feel */
.section-brutal-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Adjust height for desired angle */
    background: inherit; /* Use section background */
    transform: skewY(-2deg); /* Angle the top */
    transform-origin: top left;
    z-index: -1;
}

.section-brutal-shape::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; /* Adjust height for desired angle */
    background: inherit; /* Use section background */
    transform: skewY(2deg); /* Angle the bottom */
    transform-origin: bottom left;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .nav-link {
        padding: 8px 15px;
        font-size: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}