/* =========================================================
   Content Layout
   ========================================================= */

.page-content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 30px;
}

.content-section p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--maroon);
    margin-bottom: 24px;
}

/* =========================================================
   Global Hero Grid System
   ========================================================= */

.hero-wrapper {
    position: relative;
}

.hero-grid {
    display: grid;
}

.hero-3 {
    grid-template-columns: repeat(3, 1fr);
}

.hero-4 {
    grid-template-columns: repeat(4, 1fr);
}

.hero-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Maroon strip under hero rows */
.hero-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    background: var(--maroon);
}

/* Tablet */
@media (max-width: 992px) {
    .hero-3,
    .hero-4 {
        grid-template-columns: 1fr;
    }
}

.page-hero {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 80%;
}

.why-horses-hero {
    width: 100%;
    height: 420px;   /* adjust if needed */
    overflow: hidden;
}

.why-horses-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%; /* THIS is the magic */
    display: block;
}

/* Tablet */
@media (max-width: 1024px) {
    .page-hero {
        height: 300px;
    }
}

/* =========================================================
   Team Page
   ========================================================= */

.team-member {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.team-photo img {
    width: 260px;
    border-radius: 14px;
    object-fit: cover;
}

.team-bio h2 {
    color: var(--maroon);
    margin-top: 0;
    margin-bottom: 16px;
}

/* Mobile */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
    }

    .team-photo img {
        width: 100%;
        max-width: 320px;
    }
}

/* =========================================================
   Horses Page Hero Grid
   ========================================================= */

/* =========================================================
   Horses Page Hero Grid
   ========================================================= */

.horses-hero {
    background: var(--maroon);
    padding: 0;
}

.horses-hero-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.horses-hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.horses-hero-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================================================
   Facility Page Hero Grid
   ========================================================= */

.facility-hero {
    background: var(--maroon);
}

.facility-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.facility-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile */
@media (max-width: 992px) {
    .facility-hero-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Therapy Page
   ========================================================= */

.sub-strip {
    background: #6e8aa6;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 0;
}

.therapy-row {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

.therapy-image img {
    width: 320px;
    border-radius: 14px;
    display: block;
}

.therapy-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.therapy-content li {
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .therapy-row {
        flex-direction: column;
    }

    .therapy-image img {
        width: 100%;
        max-width: 420px;
    }
}

/* =========================================================
   Two Column Layout
   ========================================================= */

.hero-2 {
    grid-template-columns: repeat(2, 1fr);
}

.two-col {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.two-col .col {
    flex: 1;
}

/* Mobile */
@media (max-width: 768px) {

    .hero-2 {
        grid-template-columns: 1fr;
    }

    .two-col {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   Volunteer Page – Clean Layout
========================================= */

.volunteer-page h2 {
    color: var(--maroon);
    margin-bottom: 20px;
}

.volunteer-cta {
    margin-bottom: 50px;
}

.volunteer-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.vol-card {
    flex: 1;
}

.vol-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.vol-card h3 {
    margin-top: 20px;
    color: var(--maroon);
    font-size: 22px;
}

.vol-card p {
    margin-top: 10px;
    color: var(--maroon);
    font-size: 18px;
    line-height: 1.6;
}

/* Mobile */

@media (max-width: 992px) {
    .volunteer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .vol-card img {
        height: 280px;
    }
}




/* Mobile */

@media (max-width: 992px) {
    .volunteer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .vol-card img {
        height: 280px;
    }
}

/* Events message styling */

.events-message {
    text-align: center;
    margin-top: 40px;
}

.events-message p {
    color: var(--maroon);
    font-size: 22px;
    font-weight: 600;
}


/* =========================================================
   FAQ Page – Two Flowing Columns
   ========================================================= */

.faq-content {
    max-width: 1100px;
    margin: 60px auto;
    column-count: 2;
    column-gap: 100px;
}

.faq-content h3 {
    color: var(--maroon);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
    break-after: avoid;
}

.faq-content p {
    color: var(--maroon);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Mobile */
@media (max-width: 900px) {
    .faq-content {
        column-count: 1;
    }
}
/* FAQ hero override */
.faq-hero {
    background-position: center 20%;
}


/* =========================================================
   Donate Page
   ========================================================= */

.donate-content {
    max-width: 1100px;
    margin: 60px auto;
}

.donate-intro {
    color: var(--maroon);
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

.donate-button-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.donate-btn {
    background: #6e9dc5;
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.donate-item img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.donate-item h3 {
    color: var(--maroon);
    font-size: 22px;
    margin-bottom: 12px;
}

.donate-item p {
    color: var(--maroon);
    font-size: 18px;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 900px) {
    .donate-grid {
        grid-template-columns: 1fr;
    }
}
/* Donate hero crop adjustment */
.donate-hero {
    background-position: center 10%;
}

/* ===============================
   Contact Form Alerts
=============================== */

.form-alert {
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    font-weight: 500;
}

.form-alert.success {
    background: #e6f4ea;
    color: #1e6f3d;
    border: 1px solid #b7e1c1;
}

.form-alert.error {
    background: #fdecea;
    color: #8a1f1f;
    border: 1px solid #f5c2c2;
}

/* ===============================
   Contact Form Layout
=============================== */

.contact-wrapper {
    max-width: 600px;
    margin: 40px auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-form label {
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--brown);
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b2e3c;
    box-shadow: 0 0 0 2px rgba(139,46,60,0.15);
}

.btn-primary {
    background: #8b2e3c;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

.btn-primary:hover {
    background: #6f2430;
}