/* About Page Specific Styles */

/* Video Hero Styles */
.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 38, 71, 0.252),
        rgba(30, 76, 150, 0.274)
    );
    z-index: 2;
}

.about-hero .container {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Optimization for Video Hero */
@media screen and (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .about-hero p {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }

    .video-background video {
        /* Adjust focus to center on mobile */
        object-position: center center;
    }
}

.story {
    background-color: var(--white);
}

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

.story-content h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Vision & Mission Section */
.vision-mission {
    background: linear-gradient(to right, var(--secondary-color), var(--dark-blue));
    color: var(--white);
    padding: 5rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision, .mission {
    padding: 2rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.vision h2, .mission h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* Strengths Section */
.strengths {
    background-color: var(--light-gold);
}

.strengths h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.strength-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
}

.strength-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.strength-card ul {
    list-style: none;
    padding-left: 0;
}

.strength-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.strength-card ul li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Future Plans Section */
.future {
    background-color: var(--white);
}

.future h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.timeline-item {
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    background: linear-gradient(to right, rgba(30, 76, 150, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 0 8px 8px 0;
}

.timeline-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.timeline-item ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision, .mission {
        padding: 1.5rem;
    }

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

    .story-content h2,
    .strengths h2,
    .future h2 {
        font-size: 1.8rem;
    }

    .strength-card {
        padding: 1.5rem;
    }
}