/* Kleuren en variabelen */
:root {
    --accent-color: #C89B6A;
    --accent-hover: #B68457;
    --soft-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --gold-gradient: linear-gradient(135deg, #C89B6A, #B68457);
}

/* Hero sectie */
.hero {
    background: url('../images/forest.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    margin-top: 60px;
}
.hero-content {
    padding: 30px;
    border-radius: 10px;
    animation: fadeInUp 2s ease-in-out;
    text-align: center;
}

.hero-content h1 {
    margin-top: -10px;
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.hero-content a {
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background-color: #A35E3B;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--soft-shadow);
}

.hero-content a:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Waarom sectie */
.why {
    text-align: left;
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
}

.why h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5A7D57;
    margin-bottom: 10px;
}

.why p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a3f35;
}

/* Over A-Tipis */
.about-atipis {
    width: 90%;
    max-width: 1300px;
    margin: 60px auto;
    text-align: left;
}

.about-atipis h2 {
    font-size: 32px;
    color: #5A7D57;
    margin-bottom: 20px;
}

.about-atipis h3 {
    font-size: 24px;
    color: #5A7D57;
    margin-top: 40px;
    margin-bottom: 10px;
}

.about-atipis p {
    font-size: 18px;
    color: #4a3f35;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* Services */
.services {
    width: 90%;
    margin: -40px auto 60px;
    padding: 20px 0;
    text-align: center;
    max-width: 1200px;
}

.services h2 {
    font-size: 32px;
    color: #5A7D57;
    margin-bottom: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.service-box img {
    width: 100%;
    height: 250px;
    object-fit: scale-down;
    border-radius: 10px;
    margin-bottom: 10px;
    filter: grayscale(20%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-box img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.service-box h3 {
    font-size: 22px;
    color: #5A7D57;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    color: #4a3f35;
}

/* Kleine knop */
.btn-small {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: #A35E3B;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    color: black;
}

/* Scroll to top knop */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 25px;
    background-color: #4a3f35;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    z-index: 1001;
    cursor: pointer;
    box-shadow: var(--soft-shadow);
}

#scrollTopBtn:hover {
    background-color: #A35E3B;
}

/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.3s;
}

/* Responsieve layout */
@media (max-width: 1300px) {
    /* Geen aparte width meer nodig door grid */
}

@media (max-width: 1024px) {
    /* Geen aparte width meer nodig */
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .why h2 {
        font-size: 28px;
    }

    .why p {
        font-size: 16px;
    }

    .hero-content a {
        font-size: 16px;
        padding: 10px 16px;
        display: inline-block;
        max-width: 90%;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
    }
}
