:root {
    --primary-green: #4f772d;
    --dark-green: #31572c;
    --light-green: #90a955;
    --accent-color: #ecf39e;
    --text-dark: #1a1a1a;
    --text-light: #fefefe;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('images/slimme-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    /* Preserving text alignment for layout stability */
    padding: 20px;
    /* Preserving padding for mobile responsiveness */
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter overlay for soft natural light effect */
    background: linear-gradient(135deg, rgba(49, 87, 44, 0.4), rgba(26, 26, 26, 0.3));
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    animation: fadeIn 1.2s ease-out;
}

/* Typography */
.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.info-block {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    font-size: 1.1rem;
    border-left: 4px solid var(--light-green);
    text-align: left;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--dark-green);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Cookie Banner */
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    display: none;
    /* Controlled by JS */
    animation: slideUp 0.5s ease-out forwards;
    border-top: 1px solid #f0f0f0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.8rem;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    outline: none;
}

.cookie-btn.accept {
    background-color: #5f7f4f;
    color: #ffffff;
    border: 1px solid #5f7f4f;
}

.cookie-btn.accept:hover {
    background-color: #4f6f3f;
    border-color: #4f6f3f;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #4a4a4a;
    border: 1px solid #cccccc;
}

.cookie-btn.reject:hover {
    background-color: #f5f5f5;
    border-color: #bbbbbb;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes gentleBreathe {
    0% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 55% 55%;
    }

    100% {
        background-position: 50% 50%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .content-container {
        padding: 25px;
        width: 90%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
    }
}