body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem;
    max-width: 83%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: auto; 
    height: 75px;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    color: #7D825C; 
    margin: 0;
    line-height: 1; 
}

.nav-header {
    cursor: pointer;
    display: flex; 
    align-items: center; 
}

.nav-header img {
    border-radius: 50%;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

main {
    margin-top: 10px;
    background-color: #f3f0f0;
    min-height: 100vh;
    display: flex; 
    padding: 2rem; 
    box-sizing: border-box;
}

.menu {
    display: flex; 
    flex-direction: column;
    width: 20%; 
    padding-left: 1.5rem;
    gap: 1rem;
    margin-top: 80px;
    align-items: center;
}

.menu-btn {
    background-color: #ffffff; 
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 5px auto;
    border-radius: 30px;
    font-family: Poppins, sans-serif;
    font-size: 17px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 250px;
}

.menu-btn img {
    width: 25px;
}

a {
    text-decoration: none;
    color: black
}
    
.menu-btn:hover {
    transform: scale(1.05);
}

.welkom {
    flex: 1; 
    background-image: url('achtergrond-bos.png');
    background-size: cover; 
    background-position: center; 
    border-radius: 15px;
    padding: 2rem; 
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 23px;
    overflow: hidden;
    position: relative; 
    height: 700px;
}
    
.welkom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5);
    z-index: 1;
}
    
.welkom > * {
    position: relative;
    z-index: 2;
}
    
h2 {
    margin-top: 60px;
    margin-bottom: 40px; 
    line-height: 2; 
    font-size: 25px;
}

p {
    width: 500px; 
    margin-left: 50px; 
    margin-right: auto; 
    margin-top: 70px;
    color: rgb(0, 0, 0);
    text-align: left;
    font-size: 17px;
    font-style:italic;
    font-weight: bold;  
}

.nieuwegroep-btn {
    background-color: #CA7734;
    color: #fffbe6;
    border: none; 
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 0 #94612b;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 190px; 
}

.nieuwegroep-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn-container {
    text-align: left;
    margin-left: 50px;
}

.kampeervrienden {
    padding: 1rem;
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 90px;
}

.kampeervrienden-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 250px;
    padding: 10px 20px;
    margin: 5px auto;
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
    
.kampeervrienden-btn:hover {
    transform: scale(1.05);
}

.kampeervrienden-btn img {
    width: 25px;
}

.contacten {
    color: #636749;
    font-weight: 600; 
    padding: 10px 20px; 
    display: flex; 
    margin-left: 80px;
    font-size: 20px; 
}