/* =========================================
   ABOUT US PAGE STYLES (about.css)
   ========================================= */

/* --- PAGE HEADER BANNER --- */
.page-header { 
    /* Placeholder background image */
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('../images/about-bg.jpg') center/cover no-repeat; 
    text-align: center; 
    color: var(--white); 
    padding: 120px 20px; 
}

.page-header h1 { 
    font-size: 3.5rem; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3); 
    margin-bottom: 15px; 
    font-family: 'Playfair Display', serif; 
    animation: fadeInDown 1s ease;
}

.page-header p { 
    font-size: 1.15rem; 
    max-width: 650px; 
    margin: 0 auto; 
    opacity: 0.95; 
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

/* --- FOUNDER SECTION --- */
.about-section { 
    padding: 80px 5%; 
    background: var(--white); 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    max-width: 1200px; 
    margin: -50px auto 60px; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    position: relative; 
    z-index: 10;
}

.about-img { 
    flex: 1; 
    position: relative; 
}

.about-img img { 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); 
    border: 8px solid var(--white); 
    object-fit: cover; 
    background: #f9f9f9;
}

/* Decorative Pink Border Behind Image */
.about-img::before { 
    content: ''; 
    position: absolute; 
    top: -15px; 
    left: -15px; 
    width: 100%; 
    height: 100%; 
    border: 3px solid var(--primary); 
    border-radius: 20px; 
    z-index: -1; 
}

.about-text { 
    flex: 1.2; 
}

.about-text h2 { 
    font-size: 2.8rem; 
    margin-bottom: 5px; 
    color: var(--secondary); 
    font-family: 'Playfair Display', serif;
}

.about-text h4 { 
    font-size: 1.4rem; 
    color: var(--primary); 
    margin-bottom: 25px; 
    font-weight: 600; 
}

.about-text p { 
    margin-bottom: 20px; 
    color: var(--text-light); 
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- STATS SECTION --- */
.stats-section {
    background: var(--secondary); 
    padding: 60px 5%; 
    display: flex; 
    justify-content: center; 
    gap: 80px; 
    flex-wrap: wrap; 
    text-align: center; 
    margin: 60px 0;
}

.stat-box h3 { 
    font-size: 3.5rem; 
    color: var(--primary); 
    margin-bottom: 5px; 
    font-family: 'Playfair Display', serif; 
}

.stat-box p { 
    color: var(--white); 
    font-size: 1.1rem; 
    font-weight: 400; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* --- FEATURES SECTION --- */
.features { 
    padding: 40px 5% 80px; 
    text-align: center; 
}

.features-title { 
    font-size: 2.5rem; 
    margin-bottom: 50px; 
    color: var(--secondary); 
    font-family: 'Playfair Display', serif;
}

.features-title span { 
    color: var(--primary); 
    font-style: italic; 
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.feature-card { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 15px; 
    box-shadow: var(--shadow); 
    transition: 0.3s ease; 
    border-bottom: 3px solid transparent; 
}

.feature-card:hover { 
    transform: translateY(-10px); 
    border-bottom-color: var(--primary); 
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.1);
}

.feature-card i { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 20px; 
    background: rgba(233, 30, 99, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.feature-card h3 { 
    margin-bottom: 15px; 
    color: var(--secondary); 
    font-size: 1.3rem; 
}

.feature-card p { 
    color: var(--text-light); 
    font-size: 1rem; 
}

/* --- CTA SECTION --- */
.cta-section { 
    background: rgba(233, 30, 99, 0.05); 
    padding: 80px 5%; 
    text-align: center; 
    border-top: 1px solid rgba(233, 30, 99, 0.1); 
    border-bottom: 1px solid rgba(233, 30, 99, 0.1); 
}

.cta-section h2 { 
    font-size: 2.5rem; 
    color: var(--secondary); 
    margin-bottom: 20px; 
    font-family: 'Playfair Display', serif; 
}

.cta-section p { 
    color: var(--text-light); 
    margin-bottom: 35px; 
    font-size: 1.1rem; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .about-section { 
        flex-direction: column; 
        text-align: center; 
        padding: 40px; 
        margin-top: -30px; 
    }
    .about-img::before { 
        display: none; /* Hide decorative border on mobile */
    }
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.2rem; }
    .page-header { padding: 80px 20px; }
    
    .about-text h2 { font-size: 2.2rem; }
    
    .stats-section { 
        gap: 40px; 
        flex-direction: column; 
        padding: 50px 20px; 
    }
    .stat-box h3 { font-size: 2.8rem; }
    
    .features-title { font-size: 2rem; margin-bottom: 30px;}
    
    .cta-section h2 { font-size: 2rem; }
    .cta-section { padding-bottom: 100px; } /* Extra padding for bottom nav */
}