/*
 * Rechtspositie page styling
 * Dedicated CSS for /rechtspositie page functionality
 */

/* Rechtspositie title styling like homepage */
.rechtspositie-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rf-red);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Yvonne profile using existing system styling with hover effect */
.yvonne-profile-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.yvonne-profile.interactive:hover .yvonne-profile-placeholder {
    transform: scale(2);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
}

.yvonne-profile-placeholder i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.yvonne-profile-placeholder .profile-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Yvonne profile hover effect with minimal !important usage */
div.profile-picture-medium.yvonne-profile.interactive {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

div.profile-picture-medium.yvonne-profile.interactive:hover {
    transform: scale(1.5);
    z-index: 1000;
    position: relative;
    transition: all 0.3s ease;
}

div.profile-picture-medium.yvonne-profile.interactive:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: none; /* Reset any transform on image itself */
}

div.profile-picture-medium.yvonne-profile.interactive:hover .yvonne-profile-placeholder {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Process step icons - clean approach using CSS cascade */
.rechtspositie-process-step {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.rechtspositie-process-step .bi {
    font-size: 3rem;
    color: var(--rf-red);
    transition: transform 0.3s ease;
}

.rechtspositie-process-step:hover .bi {
    transform: scale(1.1);
}

/* Form styling */
.yvonne-info-alert {
    background-color: #e8f4f8;
}

.yvonne-form-icon {
    color: var(--rf-red);
}

/* Checkbox styling - ensure Rechtfabriek red color */
.form-check-input:checked {
    background-color: var(--rf-red);
    border-color: var(--rf-red);
}

.form-check-input:focus {
    border-color: var(--rf-red);
    box-shadow: 0 0 0 0.2rem rgba(189, 30, 16, 0.25);
}

.yvonne-required-asterisk {
    font-size: 1em;
}

.yvonne-required-note {
    font-size: 0.95em;
}

.yvonne-disclaimer {
    background-color: #f6f6f6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rechtspositie-title {
        font-size: 2rem;
        text-align: center;
    }

    .yvonne-profile.interactive:hover {
        transform: scale(1.2);
    }

    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .d-flex.justify-content-between button {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .rechtspositie-title {
        font-size: 1.75rem;
    }
}