﻿/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('@(Model.AboutUs.FirstOrDefault()?.ImageURL ?? "/images/default-bg.jpg")');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
}

/* About Sections */
.about-section {
    padding: 80px 0;
    position: relative;
}

    .about-section:nth-child(even) {
        background-color: #f9f9f9;
    }

.about-content {
    padding: 30px;
}

.about-img-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 350px;
}

    .about-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .about-img-container:hover img {
        transform: scale(1.03);
    }

.section-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-weight: 700;
}

    .section-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(#f2cf87,#af8643);
    }

/* Stats Section */
.stats-section {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3a86ff;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-thumbnail {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gallery-thumbnail:hover {
        opacity: 0.8;
        transform: scale(1.05);
    }

.main-gallery-img {
    height: 500px;
    object-fit: cover;
}

/* Responsive Adjustments */
@@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0;
    }

    .about-img-container {
        min-height: 250px;
        margin-bottom: 30px;
    }

    .main-gallery-img {
        height: 300px;
    }
}
