body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
}

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);
}

.groepen-container {
    flex: 1; 
    padding: 2rem; 
    margin: 0 2rem; 
    text-align: center; 
    margin-top: 23px;
    margin: 0 auto;
    max-width: 950px;
}

.groepen {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    align-items: flex-start;
}

h2 {
    margin-top: 60px;
    margin-bottom: 50px; 
    color: #CA7734 ; 
    font-size: 50px; 
    text-align: left;
}    

.groep-btn {
    text-decoration: none;
    border: none;
    width: 300px; 
    display: block; 
}

.groep-btn img {
    width: 300px;
    border: 0;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    border-radius: 5%
}

.groep-btn:hover {
    transform: scale(1.03);
    transition: all 0.3s ease;
    cursor: pointer;
}
    
.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; 
}