/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)),
        url('https://trackercdn.com/cdn/esports-data/fortnite/teams/reccffqpeamljwsak.png?v=638694646960000000');
}

.leadership-section {
    padding: 6rem 2rem;
    background-color: var(--background-dark);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background-color: var(--background-light);
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Remove default link styles */
.leader-card a {
    text-decoration: none;  /* Remove underline */
    color: inherit;  /* Inherit text color */
    display: block;  /* Ensure the entire card is clickable */
}

/* Prevent highlight effect when clicking */
.leader-card a:focus,
.leader-card a:active {
    outline: none;  /* Remove outline when clicked */
    background: none;  /* Remove any background change when clicked */
}


.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
}

.role {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-gray);
    padding: 0 1.5rem 1.5rem;
}

.mission-section {
    background-color: var(--background-light);
    padding: 6rem 2rem;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}