/* ===== BASIS ===== */

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f6f2;
    color: #333;
    line-height: 1.6;
}

/* ===== NAVIGATIE ===== */

.main-nav {
    background: #1f1f1f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    color: white;
    text-decoration: none;
}

/* ===== MENU ===== */

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #d4af37;
}

/* ===== HAMBURGER ===== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
}

/* ===== RESPONSIVE NAV ===== */

@media (max-width: 900px) {

.nav-container {
    flex-wrap: wrap;
}

.nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1f1f1f;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
}

.nav-menu.active {
    display: flex;
}

.hamburger {
    display: flex;
}

}

/* ===== HERO ===== */

.hero {
    background:
        linear-gradient(rgba(60,0,30,0.7), rgba(60,0,30,0.7)),
        url('https://images.unsplash.com/photo-1511379938547-c1f69419868d')
        no-repeat center center/cover;

    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* ===== BUTTON ===== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #bfa046;
    color: #2c0018;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #d4b85f;
}

/* ===== CONTENT ===== */

section {
    padding: 70px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c0018;
}

#repetities,
#agenda {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.optreden {
    text-align: center;
}

/* ===== FOOTER ===== */

footer {
    background: #2c0018;
    color: #f8f6f2;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
}