/* ============================================
   ARISE BY GRACE - ABOUT PAGE STYLES
   ============================================ */

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ----- PAGE BANNER ----- */
.page-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

/* About page banner with image */
.about-banner {
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.75), rgba(13, 71, 161, 0.65)),
        url('images/image5.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}

/* Fallback if image doesn't load */
.about-banner {
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.80), rgba(13, 71, 161, 0.70)),
        url('images/image11.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(13, 71, 161, 0.05));
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    padding: 40px 20px;
}

.banner-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.banner-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ----- ABOUT INTRO ----- */
.about-intro {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text .section-tag {
    margin-bottom: 8px;
}

.about-intro-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    color: #1B5E20;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-intro-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(27, 94, 32, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1B5E20;
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}

.about-intro-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ----- MISSION, VISION, VALUES ----- */
.mission-vision {
    padding: 80px 0;
    background: #F8FAF8;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 2rem;
    color: #1B5E20;
}

.mv-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    color: #0D47A1;
    margin-bottom: 12px;
}

.mv-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.mv-card ul {
    text-align: left;
    padding: 0;
    margin: 0;
}

.mv-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #555;
    font-size: 0.95rem;
}

.mv-card ul li i {
    color: #1B5E20;
    font-size: 0.8rem;
}

/* ----- CURRICULUM SECTION ----- */
.curriculum-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.curriculum-card {
    text-align: center;
    padding: 35px 25px;
    background: #F8FAF8;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 94, 32, 0.08);
}

.curriculum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-color: #1B5E20;
}

.curriculum-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.curriculum-icon i {
    font-size: 1.8rem;
    color: #1B5E20;
}

.curriculum-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #0D47A1;
    margin-bottom: 8px;
}

.curriculum-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ----- TEAM SECTION ----- */
.team-section {
    padding: 80px 0;
    background: #F8FAF8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 94, 32, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 12px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B5E20;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #1B5E20;
    color: #FFFFFF;
    transform: scale(1.1);
}

.team-card h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #0D47A1;
    padding: 20px 20px 4px;
}

.team-card span {
    display: block;
    font-size: 0.85rem;
    color: #1B5E20;
    font-weight: 600;
    padding: 0 20px;
}

.team-card p {
    padding: 8px 20px 20px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ----- TIMELINE SECTION ----- */
.timeline-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1B5E20, #0D47A1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #1B5E20;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 4px #1B5E20;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 20px 30px;
    background: #F8FAF8;
    border-radius: 12px;
    border-left: 4px solid #1B5E20;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid #1B5E20;
}

.timeline-year {
    display: inline-block;
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: #0D47A1;
    margin-bottom: 6px;
}

.timeline-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   ABOUT PAGE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image img {
        height: 350px;
    }

    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .curriculum-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 240px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: 100%;
        border-left: 4px solid #1B5E20 !important;
        border-right: none !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid #1B5E20 !important;
        border-right: none !important;
    }

    .about-intro-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }

    .about-intro-image img {
        height: 250px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .team-image {
        height: 200px;
    }
}