/* About Page Styles */

.about-hero {
    margin-top: 120px;
    text-align: center;
    padding: 60px 20px 40px;
}

.about-hero h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Shared section wrapper */
.about-section {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 30px;
}

/* Story card — matches itemcontainer white-card style */
.about-card {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-card h2 {
    color: #ff9800;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
}

/* Team grid */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 1 250px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 1.3rem;
}

.team-card p {
    color: #666;
    font-weight: 500;
}

/* Features grid */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    color: #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 1 300px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ff9800;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    font-weight: 500;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-hero {
        margin-top: 160px;
        padding: 40px 15px 20px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .team-grid,
    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card,
    .feature-card {
        flex: 0 1 100%;
        max-width: 400px;
        width: 100%;
    }

    .about-card {
        padding: 25px;
    }
}
