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

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease;
}

.panel:hover::before {
    background: rgba(255, 107, 0, 0.6);
}

.panel-jongeren {
    background-image: url('images/jongeren.jpg');
}

.panel-adventure {
    background-image: url('images/adventure.jpg');
}

.panel-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.panel h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.panel p {
    font-size: 1.1rem;
    max-width: 350px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #ff6b00;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.panel:hover .btn {
    background: #fff;
    color: #ff6b00;
}

.divider {
    width: 4px;
    background: #ff6b00;
    position: relative;
    z-index: 10;
}

.logo {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
}

.logo h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.logo span {
    color: #ff6b00;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .panel {
        flex: 1;
        min-height: 50vh;
    }

    .divider {
        width: 100%;
        height: 4px;
    }

    .panel h2 {
        font-size: 1.8rem;
    }

    .panel p {
        font-size: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}
