/* C:\Users\irina\Documents\001Schwanden2027\schwanden2027\public\css\pages\helfer.css */

/* HERO */

.volunteer-hero {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: 1.5rem;
}

.volunteer-hero .page-title {
    margin-bottom: 1rem;
}

/* LAYOUT */

.volunteer-section {
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.volunteer-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* INFO KACHEL */

.volunteer-info {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-xl);
    background: linear-gradient(
        135deg,
        var(--color-lightblue) 0%,
        var(--color-darkblue) 100%
    );
    color: var(--color-white);
    box-shadow: var(--shadow-hover);
}

.volunteer-info h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1rem;
}

.volunteer-info p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* FORM KACHEL */

.volunteer-form-wrapper {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: var(--radius-xl);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

/* SECTIONS */

.form-section {
    margin-bottom: 1.5rem;
}

.form-section-title {
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-darkblue);
}

/* CHECKBOX LISTEN */

.checkbox-list--roles,
.checkbox-list--availability {
    display: grid;
    gap: 0.7rem;
}

/* SUBMIT */

.volunteer-submit {
    margin-top: 1rem;
}

/* SUCCESS MESSAGE  */

.form-success {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background-color: var(--color-schwandenyellow);
    color: var(--color-black);
    font-weight: 600;
}

/* ERROR */

.form-error {
    font-size: 0.85rem;
    color: var(--color-glarusred);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .volunteer-layout {
        grid-template-columns: 1fr;
    }
}
