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

body {
    font-family: Arial, sans-serif;
    background: #1b140f;
    color: white;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #231912;
    padding: 20px 0;
    border-bottom: 1px solid #4b3728;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.hero {
    
    background-image: url('images/de_palingkoerier.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 250px;
}

.hero h2 {
    font-size: 60px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #d4b08a;
    color: black;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

section {
    padding: 20px 0;
}

.cards,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.card,
.news-card {
    background: #2a1d15;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #4b3728;
}

.card {
    padding: 30px;
}

.card span {
    display: inline-block;
    margin-top: 20px;
    background: #d4b08a;
    color: black;
    padding: 8px 15px;
    border-radius: 30px;
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.contact {
    text-align: center;
}

footer {
    background: #231912;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #4b3728;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #2a1d15;
    border: 1px solid #4b3728;
    color: white;
    border-radius: 10px;
}

@media(max-width:768px) {

    .nav {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        height: 45vh;
        background-size: contain;
        background-position: center top;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h2 {
        font-size: 40px;
    }
}