﻿/* =========================
   VOLUNTEER HERO
========================= */

.Volunteer-hero {
    background: linear-gradient(135deg, #1e5f98 0%, #2c3e50 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    /* Title scaling */
    .Volunteer-hero h1 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        line-height: 1.2;
    }

    /* Subtitle scaling */
    .Volunteer-hero p.lead {
        font-size: clamp(1rem, 1.6vw, 1.3rem);
    }

/* Decorative sash */
.hero-sash {
    position: absolute;
    right: -40px;
    top: 50%;
    max-width: 100%;
    max-height: 400px;
    transform: translateY(-50%);
    width: auto;
    opacity: 0.15;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* =========================
   PAGE LAYOUT
========================= */

.Volunteer-style {
    margin: 0 auto;
    width: 80%;
    text-align: center;
    padding: 25px;
}

.Volunteer-body {
    text-align: left;
    font-family: 'Lato-Regular', sans-serif;
    font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1600 - 300)));
    line-height: 1.7;
}

    .Volunteer-body h3 {
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .Volunteer-body h4 {
        margin-bottom: 8px;
        color: #1e5f98;
        font-weight: 600;
    }

/* =========================
   DOT LIST STYLE
========================= */

ol.dot-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    ol.dot-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 18px;
    }

        ol.dot-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #2c3e50;
            font-size: 22px;
            line-height: 1;
        }

/* =========================
   LINKS
========================= */

.email-link,
.phone-link,
.website-link {
    color: #1e5f98;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

    .email-link:hover,
    .phone-link:hover,
    .website-link:hover {
        color: #2c3e50;
        text-decoration: underline;
    }

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
    .Volunteer-style {
        width: 95%;
        padding: 20px;
    }

    .Volunteer-body {
        font-size: 15px;
    }

    .hero-sash {
        max-height: 250px;
        right: -60px;
        opacity: 0.10;
    }
}

@media (max-width: 500px) {
    .Volunteer-style {
        padding: 15px;
    }

    .Volunteer-hero {
        border-radius: 15px;
    }

    .Volunteer-body h3 {
        font-size: 1.2rem;
    }

    .Volunteer-body h4 {
        font-size: 1rem;
    }
}

/* --- VOLUNTEER DRIVER SECTION STYLES --- */
.volunteer-driver-section {
    background-color: #f8fbff;
    padding: 3rem 0;
}

/* Contact box styling */
.contact-box {
    border-left: 5px solid #003774 !important;
    transition: transform 0.2s ease;
}

    .contact-box:hover {
        transform: translateY(-5px);
    }

/* Button sizing and spacing */
.btn-lg {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}

.btn-outline-primary {
    border-width: 2px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .volunteer-driver-section .col-lg-6 {
        margin-bottom: 2rem;
    }

    .contact-box {
        margin: 0 1rem;
    }
}
