/* About Section Styles */
.about-section {
    margin-top: 2em;
    padding: 3em;
    background-color: var(--bg-color);
    min-height: 100vh;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-family: "Aldrich", sans-serif;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .about-title {
    /* Gradient Text Effect */
    background: linear-gradient(
        to right,
        var(--accent-color),
        var(--text-color)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.7;
    font-family: "Quicksand", sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background-color: var(--header-bg);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

[data-theme="dark"] .about-card {
    background-color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .about-card:hover {
    box-shadow: 0 20px 50px rgba(148, 226, 26, 0.15);
}

.about-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--accent-bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-size: 2.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.about-card p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
    font-family: "Aldrich", sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-card {
    background-color: var(--header-bg);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

[data-theme="dark"] .team-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background-color: var(--bg-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.member-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 2rem;
    }
}
