/* About Page Styles */

body {
    background-color: #fcfcfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* Reusing Header from header.css */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.about-hero {
    margin-top: 100px;
    /* Space for fixed header */
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%);
    color: #5d5d5d;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Container */
.container {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* Sections */
.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2.2rem;
    color: #764ba2;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #FF9A9E;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.about-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5568;
    text-align: justify;
}

/* Vision & Mission Grid */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #764ba2;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-card h3 i {
    color: #764ba2;
}

/* People Section */
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.profile-content {
    padding: 30px;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.profile-role {
    color: #764ba2;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-desc {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Patrons List */
.patrons-list {
    margin-top: 40px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #FF9A9E;
}

.patrons-list h3 {
    margin-bottom: 20px;
    color: #764ba2;
}

.patron-item {
    margin-bottom: 20px;
}

.patron-name {
    font-weight: 700;
    color: #2d3748;
    display: block;
}

.patron-desc {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 25px;
    }
}