:root {
    /* Kolory */
    --color-primary: #228B22; /* Forest Green */
    --color-secondary: #8BC34A; /* Light Green */
    --color-background: #F0F5F0; /* Light Grayish Green */
    --color-footer-bg: #1E3B00; /* Dark Forest Green */
    --color-button: #3CB371; /* Medium Sea Green */
    --color-text-dark: #1A1A1A;
    --color-text-light: #F0F5F0;
    --color-accent: #6C9D55; /* Slightly darker secondary for accents */

    /* Paleta tła sekcji */
    --section-bg-1: #F0F5F0;
    --section-bg-2: #E6F2E6;
    --section-bg-3: #F8FFF8;
    --section-bg-4: #D9EAD3;

    /* Typografia */
    --font-family-main: 'Roboto', sans-serif;
    --font-family-headings: 'Roboto', sans-serif; /* Używamy Roboto dla nagłówków, ale z innym weight/style */
    --font-size-base: 1rem;
    --line-height-base: 1.7;

    /* Odstępy i zaokrąglenia */
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --border-radius-soft: 12px;
    --border-radius-capsule: 9999px;

    /* Cienie */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-neumorphic: 5px 5px 10px rgba(0, 0, 0, 0.05), -5px -5px 10px rgba(255, 255, 255, 0.7);
}

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-main);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: 700; /* Używamy grubszego Roboto dla nagłówków */
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 5px rgba(139, 195, 74, 0.5);
}

ul, ol {
    margin-left: var(--spacing-md);
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

/* Custom classes for spacing and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-spacing {
    padding: var(--spacing-lg) 0;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.9), rgba(139, 195, 74, 0.8));
    backdrop-filter: blur(10px);
    padding: 1rem var(--spacing-md);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

.logo::before {
    content: '🌿'; /* Biomorficzny element - listek */
    margin-right: 8px;
    font-size: 1.5em;
    line-height: 1;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-md);
}

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: var(--border-radius-capsule);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(145deg, var(--color-button), var(--color-primary));
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(60, 179, 113, 0.6);
    background: linear-gradient(145deg, var(--color-primary), var(--color-button));
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Card Elements */
.card {
    background-color: var(--section-bg-3);
    border-radius: var(--border-radius-soft);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-neumorphic);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.8); /* Light border for neumorphism */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.08), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

.card-icon svg,
.card-icon img {
    width: 70%;
    height: 70%;
    color: var(--color-text-light); /* Assuming SVG, apply color */
}

/* 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);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-soft);
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--color-text-light);
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2), inset -1px -1px 3px rgba(255, 255, 255, 0.1);
}

.social-icon-wrapper:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 195, 74, 0.4);
}

.social-icon-wrapper svg {
    fill: var(--color-text-light);
    width: 20px;
    height: 20px;
}

/* Utility classes for text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .section-spacing {
        padding: var(--spacing-md) 0;
    }
}


/* 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;
    }
}