/* ==========================================================================
   SIMPLE 4-BOX GALLERY LAYOUT
   ========================================================================== */

/* Gallery Category Container */
.gallery-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 32px;
    color: #f7aa20 !important;
    /* Golden Yellow */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Main Gallery Grid: 4 Images + 1 Booking Card */
.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Images take 2/3, Booking takes 1/3 */
    gap: 20px;
    align-items: start;
}

/* 2x2 Image Grid (Left Side) */
.image-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.image-grid-4 .gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid-4 .gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 170, 32, 0.3);
}

.image-grid-4 .gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Booking Card (Right Side) */
.booking-card-side {
    background: linear-gradient(135deg, #531317 0%, #6b1a1f 100%);
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    min-height: 610px;
    /* Match 2x2 grid height */
    transition: transform 0.3s ease;
}

.booking-card-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(247, 170, 32, 0.3);
}

.booking-card-side h3 {
    color: #f7aa20;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.booking-card-side .butn-light a span {
    padding: 15px 35px;
    font-size: 14px;
    border: 2px solid #f7aa20;
    color: #f7aa20;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.booking-card-side .butn-light a:hover span {
    background: #f7aa20;
    color: #531317;
    transform: scale(1.05);
}

/* Portrait Section */
.portrait-section {
    margin-top: 60px;
}

.portrait-section h3 {
    color: #f7aa20 !important;
    /* Golden Yellow */
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.portrait-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.portrait-grid .gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portrait-grid .gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 170, 32, 0.3);
}

.portrait-grid .gallery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    .gallery-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-card-side {
        min-height: auto;
        padding: 30px 20px;
    }

    .image-grid-4 .gallery-image img {
        height: 200px;
    }

    .portrait-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portrait-grid .gallery-image img {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .category-title {
        font-size: 24px;
    }

    .image-grid-4 {
        grid-template-columns: 1fr;
    }

    .image-grid-4 .gallery-image img {
        height: 250px;
    }

    .portrait-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portrait-grid .gallery-image img {
        height: 350px;
    }
}