/* outreach/volunteer.css */
/* Warm Luxury Design for Volunteer Page */

:root {
    --vol-bg: #fcfaf7;
    --vol-accent-gold: #c5a059;
    --vol-accent-gold-light: rgba(197, 160, 89, 0.15);
    --vol-accent-crimson: #b31b1b;
    --vol-text-main: #2d2d2d;
    --vol-text-muted: #5a5a5a;
    --vol-surface-white: rgba(255, 255, 255, 0.85);
    --vol-surface-glass: rgba(255, 255, 255, 0.65);
    --vol-shadow-sm: 0 4px 20px rgba(197, 160, 89, 0.06);
    --vol-shadow-lg: 0 20px 40px rgba(197, 160, 89, 0.08);
    --vol-font-serif: 'Playfair Display', serif;
    --vol-font-sans: 'Outfit', sans-serif;
}

/* Base Overrides */
body {
    background-color: var(--vol-bg);
    color: var(--vol-text-main);
    background-image: url('volunteer-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

/* Modern Hero Section */
.hero-volunteer {
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    text-align: center;
    border-radius: 0 0 5rem 5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.05);
}

.hero-bg-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--vol-accent-gold-light), transparent);
    top: -100px;
    right: -50px;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(179, 27, 27, 0.08), transparent);
    bottom: -50px;
    left: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-block;
    font-family: var(--vol-font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--vol-accent-gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(197, 160, 89, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--vol-font-serif);
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--vol-text-main) 30%, var(--vol-accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 20px rgba(197, 160, 89, 0.1);
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--vol-accent-gold);
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--vol-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Grid */
.vol-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.25rem;
    margin-bottom: 0;
}

.vol-feature-card {
    position: relative;
    aspect-ratio: 1;
    padding: 2.1rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)) padding-box,
        conic-gradient(from 160deg, rgba(197, 160, 89, 0.45), rgba(43, 105, 96, 0.25), rgba(197, 160, 89, 0.4)) border-box;
    box-shadow: 0 18px 40px rgba(17, 16, 14, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
}

.vol-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vol-shadow-lg);
}

.vol-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a7b4f;
}

.vol-card-title {
    font-family: var(--vol-font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.vol-card-text {
    font-size: 0.9rem;
    color: var(--vol-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Interest Form Section */
.vol-form-section {
    max-width: 100%;
    margin: 3rem auto 0;
    position: relative;
}

.vol-form-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 3rem;
    padding: clamp(2.5rem, 7vw, 5rem);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.vol-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vol-form-title {
    font-family: var(--vol-font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.vol-form-subtitle {
    color: var(--vol-text-muted);
}

.vol-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vol-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vol-label {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--vol-text-muted);
    margin-left: 0.5rem;
}

.vol-input,
.vol-textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    font-family: var(--vol-font-sans);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.vol-input:focus,
.vol-textarea:focus {
    outline: none;
    border-color: var(--vol-accent-gold);
    background: white;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15);
}

.full-width {
    grid-column: 1 / -1;
}

/* Interest Checkboxes redesign */
.vol-interests {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.vol-checkbox-Label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vol-checkbox-Label:hover {
    background: #fdfdfd;
    border-color: var(--vol-accent-gold);
}

.vol-checkbox-Label input:checked+span {
    color: var(--vol-accent-gold);
    font-weight: 700;
}


@media (max-width: 768px) {
    .vol-form-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .vol-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-volunteer {
        padding: 5rem 1.5rem 3rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .vol-feature-card {
        aspect-ratio: auto;
        border-radius: 2rem;
        padding: 1.6rem;
    }
}
