/* About Us Section Styles */
.about-us-section {
    padding: 80px 0;
    background-color: #faf8f5;
    min-height: 600px;
}

    .about-us-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Images Column */
.about-images {
    display: flex;
    gap: 20px;
    align-items: stretch; /* 🔥 IMPORTANT */
}

.image-column-left,
.image-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%; 
    border-radius: 10px; 
}

    /* Height Classes - Exact Match */
    .image-item.small-height {
        height: 180px;
        margin-top:45px;
    }
    .image-item.small-height1 {
        height: 180px;
    }
    .image-item.large-height {
        height: 300px;
    }

    .image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
        border-radius: 10px;
    }

    .image-item:hover img {
        transform: scale(1.05);
    }

/* Image Overlay for Hotel */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.welcome-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Content Column */
.about-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #FF8000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #414D60;
    margin-bottom: 25px;
    font-weight: 400;
}

    .about-text p:last-child {
        margin-bottom: 0;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-images,
    .about-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-title {
        font-size: 36px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-images {
        flex-direction: column;
    }

    .image-column-left,
    .image-column-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .image-item.small-height,
    .image-item.large-height {
        height: 200px;
        flex: 1 1 48%;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.6;
    }

    .image-item.small-height,
    .image-item.large-height {
        height: 180px;
        flex: 1 1 100%;
    }
}
