﻿.about-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header img {
    max-width: 200px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-header img:hover {
    transform: scale(1.05);
}

.about-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: var(--minecraft-border);
    background: rgba(76, 175, 80, 0.05);
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-section ul li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.about-section ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    background: rgba(76, 175, 80, 0.05);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    object-fit: cover;
}

.team-member:hover img {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.team-member h3::before {
    content: "→";
    color: var(--secondary-color);
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover h3::before {
    opacity: 1;
}

.team-member p {
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 1.5rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
