/* Styles specific to the About page */

/* --- Page Hero --- */
.page-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1073&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}


/* --- Main About Section --- */
.about-main-section {
    padding: 80px 0;
}

.about-main-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-main-section .about-image-col img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-main-section .about-content-col .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-main-section .about-content-col h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.about-main-section .about-content-col p {
    color: #555;
    line-height: 1.8;
}

/* --- Director Section --- */
.director-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.director-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.director-image-col img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.director-content-col .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.director-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.5rem;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.25rem;
}

.director-title {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

/* --- Journey/Timeline Section --- */
.journey-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--light-gray);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--primary-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 30px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 30px;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 3rem;
    }

    .director-grid {
        grid-template-columns: 1fr;
    }

    .about-main-section .about-grid {
        grid-template-columns: 1fr;
    }

    .director-image-col {
        order: -1;
        margin-bottom: 2rem;
    }

    .director-content-col .section-title,
    .about-main-section .about-content-col .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
    }
}