/* ===================================
   About Page Styles
   =================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 70px; /* Offset for fixed navbar */
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Why It Matters Section */
.why-matters-section {
    padding: 4rem 0;
}

.why-matters-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.matters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.matter-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.matter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
}

.matter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.matter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #654321;
}

.matter-card p {
    line-height: 1.7;
    color: #555;
}

/* Traditions Section */
.traditions-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.traditions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.traditions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.traditions-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tradition-point {
    margin-bottom: 2rem;
}

.tradition-point h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #654321;
}

.tradition-point p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .traditions-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Promise Section */
.promise-section {
    padding: 4rem 0;
}

.promise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8B4513;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.promise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
}

.promise-card:hover {
    border-color: #8B4513;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.promise-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #8B4513;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.promise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #654321;
    margin-top: 1rem;
}

.promise-card p {
    line-height: 1.7;
    color: #555;
}

/* Chicago Section */
.chicago-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(101, 67, 33, 0.05) 100%);
}

.chicago-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chicago-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.chicago-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.chicago-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.chicago-commitments {
    list-style: none;
    padding: 0;
}

.chicago-commitments li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: #333;
}

.chicago-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .chicago-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: #555;
}

.team-feature {
    max-width: 600px;
    margin: 0 auto;
}

.developer-credit {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.developer-credit h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #654321;
}

.developer-credit p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.developer-credit strong {
    font-size: 1.3rem;
    color: #8B4513;
}

/* Community Callout */
.community-callout {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
}

.callout-content {
    text-align: center;
}

.callout-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.callout-content .lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.community-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.action-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.action-item p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.action-item .btn-primary {
    background: white;
    color: #8B4513;
}

.action-item .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Welcome Final */
.welcome-final {
    padding: 4rem 0;
    background: #f8f9fa;
}

.welcome-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.welcome-box h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.welcome-box .tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #654321;
    margin-bottom: 1.5rem;
}

.welcome-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.welcome-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .matters-grid,
    .promise-grid,
    .community-actions {
        grid-template-columns: 1fr;
    }
    
    .welcome-box {
        padding: 2rem;
    }
    
    .welcome-actions {
        flex-direction: column;
    }
    
    .welcome-actions .btn-primary,
    .welcome-actions .btn-secondary {
        width: 100%;
    }
}
