/* Suite Header/Banner Styles */
.suite-banner {
    background-image: url('../../images/entire.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 350px;
    background-repeat: no-repeat;
}

.suite-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Light overlay to help text readability if needed */
}

.gal-img-box.rita {
    z-index: 55;
}

.suite-banner .banner-container {
    padding: 0 15px;
    z-index: 2;
    transform: translateY(-20px);
}

/* Blue Blob behind title */
.blob-shape {
    position: absolute;
    width: 302px;
    z-index: 1;
    top: 99px;
    right: -13%;
}

.suite-banner h1 {
    font-size: 9.2rem;
    color: rgb(223, 206, 194);
    font-family: var(--heading-font);
    line-height: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    letter-spacing: -2px;
    font-weight: 500;
}

.suite-banner h1 span {
    display: block;
}

.banner-btn {
    position: relative;
    z-index: 3;
}

.banner-btn .main-btn {
    padding: 13px 65px;
    font-size: 17px;
    font-weight: 400;
    width: min-content;
    /* width: 400px; */
    line-height: 1.2;
    letter-spacing: 5px;
}

/* Gallery Section */
.suite-gallery {
    background-color: #dfcec2;
    padding: 101px 0 202px;
    position: relative;
}

.suite-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px;
    margin: 0px 30px;
}

.gal-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blobs in gallery */
.heart-blob {
    position: absolute;
    bottom: 34%;
    left: 28%;
    width: 172px;
    z-index: 1;
}

.blue-blob-sm {
    position: absolute;
    top: 38%;
    right: 28%;
    width: 146px;
    z-index: 88;
}

.green-tri-blob {
    position: absolute;
    bottom: -6%;
    width: 295px;
    z-index: 555;
    right: 36%;
}

/* Details Section */
.suite-features {
    background: url('../../images/atami-second.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 0;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.suite-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.suite-features h2 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.2;
    color: rgb(247, 242, 242);
    /* font-weight: normal; */
    font-family: math;
}

.icon-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.icon-item {
    text-align: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    /* height: 60px; */
    align-items: center;
    justify-content: center;
    margin-bottom: 31px;
}

.icon-item img {
    /* height: 45px; */
    width: 93px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.icon-item p {
    font-size: 27px;
    font-weight: 500;
    color: #f7ede3;
    margin-top: 5px;
}

.feature-btn {
    background-color: #ffbe38;
    border: none;
    width: 64% !important;
    color: #000000 !important;
    padding: 15px 60px;
    font-weight: 400 !important;
    height: 65px;
    vertical-align: center;
    /* display: flex; */
    padding: 23px 0 !important;
    letter-spacing: 8px;
}

.feature-btn:hover {
    background-color: #ffbd38ca;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .suite-banner h1 {
        font-size: 10rem;
    }
}

@media (max-width: 992px) {
    .suite-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .suite-banner h1 {
        font-size: 7rem;
    }
}

@media (max-width: 768px) {
    .suite-banner h1 {
        font-size: 5rem;
    }

    .icon-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .suite-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .suite-banner h1 {
        font-size: 7rem;
    }

    .suite-gallery {

        padding: 56px 0 93px;
        position: relative;
    }
}

@media (max-width: 768px) {
    .suite-banner h1 {
        font-size: 5rem;
    }

    .icon-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .suite-banner h1 {
        font-size: 5rem;
    }

    .icon-grid {
        gap: 30px;
    }

    .suite-banner {

        padding-top: 190px;

    }

    .suite-features {

        padding: 50px 0;

    }

    .suite-features h2 {
        font-size: 2rem;
        max-width: 100%;

    }

    .suite-gallery {

        padding: 52px 0 50px;

    }

    .icon-item p {
        font-size: 23px;
        font-weight: 500;
        color: #f7ede3;
        margin-top: 5px;
    }

    .user img {
        width: 27px !important;
    }

    .icon-wrapper {
        display: flex;
        gap: 8px;
        margin-bottom: 15px;
        /* height: 60px; */
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .icon-item img {
        /* height: 45px; */
        width: 54px;
        display: block;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

    .blob-shape {
        position: absolute;
        width: 223px;
        z-index: 1;
        top: 99px;
        right: 0%;
    }

    .green-tri-blob {
        position: absolute;
        bottom: -2%;
        width: 212px;
        z-index: 555;
        right: 9%;
    }

    .blue-blob-sm {
        position: absolute;
        top: 25%;
        right: 38%;
        width: 146px;
        z-index: 88;
    }

    .heart-blob {
        position: absolute;
        bottom: 34%;
        left: 28%;
        width: 150px;
        z-index: 1;
    }
}

@media screen and (max-width: 567px) {
    .suite-features {
        padding: 25px 0;
    }

    .green-tri-blob {
        position: absolute;
        bottom: 0%;
        width: 192px;
        z-index: 555;
        right: 9%;
    }

    .blue-blob-sm {

        top: 30%;

    }

    .heart-blob {

        bottom: 29%;


        z-index: 68;
    }

    .blob-shape {
        position: absolute;
        width: 216px;
        z-index: 1;
        top: 0;
        right: 0%;
    }

    .banner-btn {

        margin-bottom: 17px !important;
    }

    .icon-grid {

        margin-top: 29px;
    }

    .suite-features h2 {
        font-size: 1.8rem;

        margin-bottom: 29px;
    }

    .suite-gallery .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 0px 0px;
    }

    .suite-gallery {
        padding: 35px 0 35px;
    }

    .suite-banner h1 {
        font-size: 4rem;
    }

    .pp img {
        width: 36px !important;
    }

    .suite-banner {
        padding-top: 100px;
    }

}

@media screen and (max-width: 440px) {
    .suite-gallery .gallery-grid {

        grid-template-columns: repeat(1, 1fr);

    }

    .suite-banner {
        padding-top: 130px;
    }
}