/* About Page Styles */

/* About Hero */
.about-hero {
    margin-top: 60px;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 52, 96, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 0.95;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: white;
}

.story-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    animation: scaleIn 0.8s ease;
}

/* Mission & Vision */
.mission-vision {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-box,
.vision-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease;
}

.mission-box::before,
.vision-box::before {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: var(--accent-color);
    margin-bottom: 1.5rem;
    border-radius: 3px;
    animation: slideIn 0.6s ease;
}

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

.mission-box p,
.vision-box p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: white;
}

.why-choose h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

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

.reason-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--light-color);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background-color: white;
}

.reason-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.3rem;
}

.reason-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Amenities Section */
.amenities-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.amenities-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.amenity-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.amenity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.amenity-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;
}

.amenity-card p {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-btn {
    min-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .story-section .container {
        grid-template-columns: 1fr;
    }

    .story-section h2 {
        font-size: 2rem;
    }

    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .amenity-card img {
        height: 150px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 250px;
        margin-top: 50px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .story-section {
        padding: 2.5rem 0;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .mission-vision {
        padding: 2.5rem 0;
    }

    .amenities-section {
        padding: 2.5rem 0;
    }

    .amenities-section h2 {
        font-size: 1.5rem;
    }

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

    .reason-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cta-btn {
        width: 100%;
    }
}
