body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}


header {
    background-color: #4a7c59;
    color: white;
    padding: 20px;
    text-align: center;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0 0 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

nav a:hover {
    background-color: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

nav a.active {
    background-color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.6);
}


main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}


.content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}


h2 {
    color: #2d5016;
    margin-bottom: 15px;
}

h3 {
    color: #4a7c59;
    margin: 20px 0 10px 0;
}


p {
    margin-bottom: 10px;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}


.lunch-location, .attractie, .sport-facility, .bedrijf {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 5px solid #4a7c59;
}

.lunch-location img, .attractie img, .sport-facility img, .bedrijf img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}


.highlights {
    background-color: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #4a7c59;
    margin: 20px 0;
}

.highlights ul {
    list-style: none;
    padding-left: 0;
}


.tips, .sport-events {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #4a7c59;
}


.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.info-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid #4a7c59;
}


footer {
    background-color: #2d5016;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}


.hero {
    text-align: center;
    margin-bottom: 20px;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
}
