/* About Us Page Styles */
.about-us {
    background-color: var(--white);
    padding-bottom: 100px;
}

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background-color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    /* background-color: var(--primary-color); */
}

.about-description {
    max-width: 900px;
    margin: 50px auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 300;
    padding: 0 20px;
    text-align: left!important;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background-color: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.welcome-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 60px;
    line-height: 1.4;
}

.welcome-text h3 {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.logo-section {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-section img {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.logo-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
}

/* Image Grid */
.welcome-images {
    position: relative;
}

.welcome-images .image-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    height: 600px;
}

.welcome-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* First image takes full height */
.welcome-images .image-grid img:first-child {
    grid-row: 1 / span 2;
}

/* Second and third images take half height each */
.welcome-images .image-grid img:nth-child(2),
.welcome-images .image-grid img:nth-child(3) {
    height: 290px;
}

.welcome-images img:hover {
    transform: scale(1.02);
}

/* Community Image Section */
.community-image {
    width: 90%;
    max-width: 1400px;
    height: 500px;
    overflow: hidden;
    margin: 100px auto 0;
    padding: 0 20px;
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .welcome-content {
        gap: 60px;
    }
}

@media screen and (max-width: 992px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .welcome-text h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .welcome-images .image-grid {
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .welcome-images .image-grid img:first-child {
        grid-row: auto;
    }

    .welcome-images img,
    .welcome-images .image-grid img:nth-child(2),
    .welcome-images .image-grid img:nth-child(3) {
        height: 300px;
    }

    .community-image {
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.4rem;
    }

    .about-description {
        font-size: 1rem;
        margin-top: 40px;
        padding: 0 40px;
    }

    .welcome-content {
        padding: 0 20px;
    }

    .welcome-text h2 {
        font-size: 1.8rem;
    }

    .welcome-text h3 {
        font-size: 1.4rem;
    }

    .welcome-images img,
    .welcome-images .image-grid img:nth-child(2),
    .welcome-images .image-grid img:nth-child(3) {
        height: 240px;
    }

    .community-image {
        height: 400px;
        margin-top: 60px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .about-us {
        padding-bottom: 60px;
    }

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

    .about-description {
        padding: 0 20px;
    }

    .welcome-content {
        padding: 0 15px;
    }

    .welcome-images img,
    .welcome-images .image-grid img:nth-child(2),
    .welcome-images .image-grid img:nth-child(3) {
        height: 200px;
    }

    .community-image {
        height: 300px;
        padding: 0 15px;
    }
} 