/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3em;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
    background-color: #fff;
}

/* Text Content Section */
.about-text-section {
    margin-bottom: 60px;
}

.about-intro-section {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.about-intro strong {
    color: #B22222;
    font-weight: 600;
}

/* Image Section */
.about-image-section {
    margin-bottom: 60px;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.about-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FFD700;
}

.overlay-content p {
    font-size: 1em;
    opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision-section {
    margin-top: 40px;
    width: 100%;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #B22222;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
    position: relative;
    width: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mission-card h3, .vision-card h3 {
    color: #B22222;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1em;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-section h2 {
    text-align: center;
    color: #B22222;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.value-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #B22222;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B22222, #CD5C5C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.value-icon i {
    font-size: 1.5em;
    color: white;
}

.value-card h3 {
    color: #B22222;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1em;
    font-weight: 600;
}

.value-card p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9em;
}

.values-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.values-conclusion p {
    font-size: 1.3em;
    line-height: 1.8;
    color: #1a1a1a;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-text-section {
        margin-bottom: 50px;
    }

    .about-image-section {
        margin-bottom: 50px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .image-container {
        aspect-ratio: 16/10;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 400px;
        padding: 0 15px;
    }

    .about-hero h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 15px;
    }

    .about-hero p {
        font-size: clamp(1rem, 3vw, 1.3rem);
        max-width: 100%;
    }

    .about-content {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .about-text-section {
        margin-bottom: 40px;
    }

    .about-intro {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-image-section {
        margin-bottom: 40px;
    }

    .image-container {
        aspect-ratio: auto;
        height: 250px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 400px;
    }

    .about-hero h1 {
        font-size: 2em;
    }

    .about-hero p {
        font-size: 1em;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-text-section {
        margin-bottom: 30px;
    }

    .about-image-section {
        margin-bottom: 30px;
    }

    .about-intro {
        font-size: 1em;
    }

    .mission-vision-section {
        margin-top: 25px;
    }

    .mission-card, .vision-card {
        padding: 20px;
    }

    .mission-card h3, .vision-card h3 {
        font-size: 1.2em;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 20px 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon i {
        font-size: 1.2em;
    }

    .values-section h2 {
        font-size: 1.8em;
    }

    .image-overlay {
        padding: 30px 20px 20px;
    }

    .overlay-content h3 {
        font-size: 1.2em;
    }

    .values-conclusion p {
        font-size: 1.1em;
    }

    .image-container {
        aspect-ratio: 16/9;
    }
} 