/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.92), rgba(0, 51, 102, 0.85)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 600;
    color: var(--skyblue);
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--skyblue) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--skyblue);
    font-weight: 600;
    margin-top: -20px;
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background-color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.mission-text strong {
    color: var(--navy);
    font-weight: 700;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.stat {
    text-align: center;
    padding: 15px 10px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.mission-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.6s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 51, 102, 0.95));
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.image-caption i {
    font-size: 1.2rem;
    color: var(--orange);
}

/* Founders Section */
.founders {
    padding: 100px 0;
    background-color: var(--light-gray);
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.founder-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.founder-image {
    position: relative;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    transition: transform 0.6s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.founder-badge i {
    font-size: 0.9rem;
}

.founder-content {
    padding: 40px 40px 40px 0;
}

.founder-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 5px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--orange);
}

.founder-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--skyblue);
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-bio {
    margin-bottom: 35px;
}

.founder-bio p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.highlight {
    background-color: rgba(255, 153, 0, 0.1);
    padding: 15px;
    border-left: 4px solid var(--orange);
    border-radius: 0 5px 5px 0;
    margin: 25px 0;
    font-weight: 600;
    color: var(--navy);
}

.mlb-draft-list {
    list-style-type: none;
    margin-top: 15px;
    padding-left: 0;
}

.mlb-draft-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.mlb-draft-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--skyblue);
    font-weight: bold;
}

/* Experience Timeline */
.experience-timeline {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--light-gray);
}

.experience-timeline h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-timeline h4 i {
    color: var(--orange);
}

.timeline {
    list-style: none;
    padding-left: 0;
}

.timeline li {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--medium-gray);
}

.timeline li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-date {
    flex: 0 0 180px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    padding-right: 20px;
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    display: block;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content span {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background-color: var(--white);
    animation: fadeInUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

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

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.philosophy-card {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--skyblue);
    box-shadow: 0 15px 30px rgba(0, 163, 224, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.philosophy-card:hover .philosophy-icon {
    background-color: var(--skyblue);
    transform: scale(1.1) rotate(5deg);
}

.philosophy-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, var(--navy) 0%, #002244 100%);
    border-radius: 15px;
    color: var(--white);
}

.cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .founder-card {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .founder-content {
        padding: 40px;
    }
    
    .mission-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .our-story,
    .founders,
    .philosophy {
        padding: 70px 0;
    }
    
    .founder-name {
        font-size: 1.7rem;
    }
    
    .timeline li {
        flex-direction: column;
    }
    
    .timeline-date {
        flex: none;
        margin-bottom: 10px;
        padding-right: 0;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .founder-content {
        padding: 30px 20px;
    }
    
    .mission-stats {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn {
        width: 100%;
    }
}
/* Best Solution: CSS Grid with explicit image control */
.founder-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-template-rows: auto; /* Let content determine row height */
    gap: 50px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: start; /* This is key - aligns items at top */
}

.founder-image {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    height: 100%; /* Take full height of its grid area */
    max-height: 600px; /* But limit it */
}

.founder-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.founder-content {
    grid-column: 2;
    grid-row: 1;
    padding: 40px 40px 40px 0;
    align-self: start; /* Start at top, don't stretch */
    min-height: auto; /* Don't force a minimum */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }
    
    .founder-image {
        grid-column: 1;
        grid-row: 1;
        height: 500px; /* Fixed height on mobile */
        max-height: 500px;
    }
    
    .founder-content {
        grid-column: 1;
        grid-row: 2;
        padding: 40px;
    }
}