/*
    Nieuwe Kleuren Huisstijl:
    - Donkere Achtergrond: #0A4F55
    - Accent Groen: #3AB19B
    - Lichte Tekst: #F5F5ED
    - Donkere Tekst: #0B2B26
    - Wit: #FFFFFF
*/

/* Algemene Stijlen */
body {
    background-color: #0A4F55; /* NIEUWE DONKERE ACHTERGROND */
    color: #0B2B26;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
}

/* Logo container styling */
.logo-container {
    text-align: center;
    margin-bottom: 40px; /* Ruimte tussen logo en progressiebalk */
}
.logo {
    max-width: 180px;
    opacity: 0.9; /* Subtiele doorzichtigheid */
}

/* Glassmorphism Container */
.form-container {
    background: rgba(255, 255, 255, 0.9); /* Iets minder transparant voor leesbaarheid */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px; /* Rondere hoeken */
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); /* Duidelijkere schaduw op donkere achtergrond */
}

/* Progressiebalk - aangepast voor donkere achtergrond */
.progress-bar-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.progress-bar-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25); /* Lichte lijn voor contrast */
    z-index: 1;
}
.progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    background-color: #3AB19B;
    z-index: 2;
    width: 0%;
    transition: width 0.4s ease;
}
.step {
    width: 40px;
    height: 40px;
    background-color: transparent; /* Transparant maken */
    color: #FFFFFF; /* Witte nummers */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.25); /* Lichte rand */
    transition: all 0.4s ease;
}
.step.active {
    border-color: #3AB19B;
    color: #3AB19B;
    background-color: rgba(58, 177, 155, 0.1); /* Lichte gloed */
}
.step.completed {
    background-color: #3AB19B;
    border-color: #3AB19B;
    color: #FFFFFF;
}

/* Formulier Stappen */
.form-step {
    display: none;
    animation: fadeIn 0.5s;
}
.form-step.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Knoppen */
.btn-primary {
    background-color: #3AB19B;
    border-color: #3AB19B;
    color: #FFFFFF;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #2E8C7A; /* Iets donkerdere hover */
    border-color: #2E8C7A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
    background-color: transparent;
    border-color: #0A4F55;
    color: #0A4F55;
    padding: 10px 25px;
    font-weight: bold;
}
.btn-secondary:hover {
    background-color: #0A4F55;
    border-color: #0A4F55;
    color: #FFFFFF;
}

/* Formulier velden */
.form-label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control, .form-select {
    background-color: rgba(245, 245, 237, 0.7); /* Lichte beige tint */
    border: 1px solid rgba(10, 79, 85, 0.3);
    color: #0B2B26;
}
.form-control:focus, .form-select:focus {
    background-color: #FFFFFF;
    border-color: #3AB19B;
    box-shadow: 0 0 0 0.25rem rgba(58, 177, 155, 0.25);
}

h2 {
    color: #0A4F55;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Samenvatting */
#summary dl {
    background-color: rgba(10, 79, 85, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(10, 79, 85, 0.1);
}
#summary dt {
    font-weight: bold;
    color: #0A4F55;
}