/* Kleurenschema: Donkerblauw, Grijs en Wit */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Diep donkerblauw */
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.selection-container {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid #4b5563;
    max-width: 90%;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #ffffff;
}

.flags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.flag-choice {
    text-decoration: none;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.flag-choice:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

.flag-img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    border: 2px solid transparent;
}

.flag-choice:hover .flag-img {
    border-color: #60a5fa;
}

.divider {
    font-size: 2rem;
    color: #4b5563;
}

.contact-info {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #4b5563;
}
/* De Shiny Button Styling */
.shiny-button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0a192f 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 50px; /* Mooie ronde hoeken */
    border: 1px solid #60a5fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.shiny-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
    border-color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1e293b 100%);
}

/* De 'glans' die eroverheen schiet bij hover */
.shiny-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.shiny-button:hover::after {
    left: 100%;
    top: 100%;
}