﻿/* ========================================
   STEWARDSHIP PAGE STYLES
   Using Navy Blue (#1a2044) and Coral (#c98b7a)
   ======================================== */

:root {
    --navy-blue: #1a2044;
    --coral: #c98b7a;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-color: #4a4a4a;
}

/* Hero Section */
.stewardship-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 32, 68, 0.85) 0%, rgba(26, 32, 68, 0.9) 100%), url('/images/vymhost/stewardship-hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 32, 68, 0.25);
    z-index: 1;
}

.stewardship-hero .container {
    position: relative;
    z-index: 2;
}

.stewardship-hero .hero-title {
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.stewardship-hero .hero-subtitle-main {
    color: var(--coral);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.stewardship-hero .hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Introduction Section */
.intro-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    color: var(--navy-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--navy-blue));
    margin: 0 auto 40px;
    border-radius: 2px;
}

.intro-text {
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

    .intro-text strong {
        color: var(--navy-blue);
        font-weight: 700;
    }

/* Introduction Image */
.intro-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

    .intro-image:hover {
        transform: scale(1.05);
    }

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

/* Featured Image in Services Section */
.featured-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

    .featured-image:hover {
        transform: scale(1.03);
    }

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--coral);
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 32, 68, 0.15);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral), #d4a294);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(201, 139, 122, 0.3);
}

    .service-icon i {
        font-size: 2rem;
        color: var(--white);
    }

.service-title {
    color: var(--navy-blue);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-divider {
    width: 50px;
    height: 3px;
    background: var(--coral);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.service-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: var(--white);
}

/* Process Image */
.process-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-image {
    width: 100%;
    height: auto;
    display: block;
}

.process-step {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px 25px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .process-step:hover {
        border-color: var(--coral);
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(201, 139, 122, 0.2);
    }

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--coral), #d4a294);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(201, 139, 122, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
}

    .step-icon i {
        font-size: 1.8rem;
        color: var(--navy-blue);
    }

.step-title {
    color: var(--navy-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Legacy Section */
.legacy-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.legacy-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.legacy-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

    .legacy-image:hover {
        transform: scale(1.05);
    }

/* Call to Action Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, rgba(26, 32, 68, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-block;
    padding: 15px 45px;
    background: var(--coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 139, 122, 0.3);
    position: relative;
    z-index: 1;
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(201, 139, 122, 0.5);
        color: var(--white);
        text-decoration: none;
    }

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 992px) {
    .stewardship-hero .hero-title {
        font-size: 3rem;
    }

    .stewardship-hero .hero-subtitle-main {
        font-size: 1.5rem;
    }

    .stewardship-hero .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .stewardship-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .stewardship-hero .hero-subtitle-main {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .intro-text,
    .legacy-text {
        font-size: 1.05rem;
        text-align: left;
    }
}

@media (max-width: 544px) {
    .stewardship-hero {
        padding: 120px 15px 80px;
    }

        .stewardship-hero .hero-title {
            font-size: 2rem;
            letter-spacing: 2px;
        }

        .stewardship-hero .hero-subtitle-main {
            font-size: 1.1rem;
        }

        .stewardship-hero .hero-subtitle {
            font-size: 1rem;
        }

    .section-title {
        font-size: 1.7rem;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}
