/* about.css */
body,
html {
    background-image:
        linear-gradient(to right, rgba(255, 102, 0, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 102, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4em 2em;
    max-width: 1200px;
    margin: 0 auto;
}

h1.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5em;
    text-shadow: 0 0 0.2em var(--primary-color);
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2rem);
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1em;
}

.content-wrapper {
    max-width: 1000px;  /* Increased from 800px */
    width: 100%;        /* Added to ensure full width usage */
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.description {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1em;
    text-align: justify;  /* Changed from center to justify for better readability */
    max-width: 100%;      /* Changed from 600px to use full width of content-wrapper */
}


#leadership {
    width: 100%;
    margin: 2em 0;
    padding: 2em;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
}

#leadership h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5em;
    text-shadow: 0 0 0.2em var(--primary-color);
}

.leadership-bios {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.bio {
    flex: 1;
    max-width: 400px;
    background: rgba(255, 102, 0, 0.05);
    padding: 1.5em;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bio:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.headshot {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1em;
    display: block;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.bio:hover .headshot {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.bio h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5em;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}

.bio p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
    line-height: 1.6;
    text-align: left;
}


@media (max-width: 1024px) {  /* Added media query for responsiveness */
    .content-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .leadership-bios {
        flex-direction: column;
        align-items: center;
    }

    .bio {
        max-width: 100%;
    }
}