﻿
.PhoneSolidContainer {
    animation: infiniteZoom 4s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    transform: translateY(65px) scale(1); /* Ensuring both transformations */
}

@keyframes infiniteZoom {
    0% {
        transform: translateY(65px) scale(1);
    }

    50% {
        transform: translateY(65px) scale(1.05);
    }

    100% {
        transform: translateY(65px) scale(1);
    }
}

#mobileSliderSection {
    display: none;
}

#mobileSliderForm {
    display: none;
    width: 60vw;
}

#heroSlider .checkNowButton, #mobileSliderSection .checkNowButton {
    display: flex;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: var(--CrTe);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    text-decoration: none;
    line-height: 62px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-out;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    #heroSlider .checkNowButton:hover, #mobileSliderSection .checkNowButton:hover {
        background: black;
    }

#experienceSection #imageContainer {
    max-height: 450px;
}

.section-title {
    font-family: 'Gilda Display', serif;
    color: #222;
    line-height: 1.25em;
}

.section-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    color: #666;
}

.roomsAndSuitesCard {
    height: 28rem;
}

#extraServices #rightContainer {
    height: 550px;
}

#extraServices #rightContainer .list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#extraServices #rightContainer .list li {
    border: none;
    color: #666;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
}

#extraServices #rightContainer .list li:hover {
    background: none;
}

@keyframes wave {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.facilityCard {
    opacity: 0; /* Start invisible */
    transform: translateY(100px);
}

    .facilityCard.visible {
        animation: wave 0.8s ease-out forwards;
    }

/* Apply delay when .visible is added */
.cardFirstRow .facilityCard:nth-child(1).visible,
.cardSecondRow .facilityCard:nth-child(1).visible {
    animation-delay: 0s;
}

.cardFirstRow .facilityCard:nth-child(2).visible,
.cardSecondRow .facilityCard:nth-child(2).visible {
    animation-delay: 0.2s;
}

.cardFirstRow .facilityCard:nth-child(3).visible,
.cardSecondRow .facilityCard:nth-child(3).visible {
    animation-delay: 0.4s;
}




@media only screen and (max-width: 990px) {
    #SliderForm {
        display: none;
    }

    #mobileSliderForm {
        display: flex;
    }

    #mobileSliderSection {
        display: flex;
    }

    #sliderCallButton {
        display: none;
    }
}


@media only screen and (max-width: 768px) {
    #experienceSection {
        flex-direction: column;
    }

        #experienceSection > #imageContainer {
            flex: auto;
            height: 40vh;
            margin-top: 2rem;
        }

    #roomsAndSuites #upperCard {
        flex: auto;
        flex-direction: column;
    }

    #roomsAndSuites .roomsAndSuitesCard {
        flex: auto;
        height: 60vh;
    }

    #roomsAndSuites #lowerCard {
        flex: auto;
        flex-direction: column;
    }

        #roomsAndSuites #lowerCard .roomsAndSuitesCard {
            flex: auto;
            flex-direction: column;
            height: 40vh !important;
        }

    #extraServices > div:first-child {
        flex-direction: column;
    }

    #extraServices #rightContainer {
        flex-direction: column;
        flex: auto;
        margin-top: 20px;
    }

        #extraServices #rightContainer > div {
            flex: auto;
        }

    #hotelFacilities #cards > div {
        flex-direction: column;
    }

    .restaurantSection {
        overflow: hidden;
    }


        .restaurantSection > div:first-child > div:first-child, .restaurantSection > div:first-child > div:nth-child(3), .restaurantSection > div:first-child > div:nth-child(5), .restaurantSection > div:first-child > div:nth-child(7) {
        flex-direction: column;
        padding: 20px 0;
    }
        .restaurantSection > div:first-child > div:nth-child(2), .restaurantSection > div:first-child > div:nth-child(4), .restaurantSection > div:first-child > div:nth-child(6) {
            flex-direction: column-reverse;
            padding: 20px 0;
        } 
        .restaurantSection .darkButton {
        width: 50%;
        /* font-size: 12px; */
        padding-left: 10px;
        padding-right: 10px;
    } 
    .restaurantSection .content {
        padding: 20px 0px;
    }
    .OurNews .SlideUT {
        min-width: 100% !important;
    }
}

@media only screen and (max-width: 570px) {
    .heroSection {
        width: 90%;
    }

    #mobileSliderForm {
        width: 90vw;
    }

    #clientSay > div:first-child {
        width: 100%;
    }

    #clientSay .contentContainer {
        width: 100%;
    }
}


@media only screen and (max-width: 550px) {
    .heroSection {
        width: 90%;
    }

    #mobileSliderForm {
        width: 90vw;
    }
}

@media only screen and (max-width: 480px) {
    .heroSection h4 {
        font-size: 14px
    }

    .heroSection h1 {
        font-size: 40px
    }
}

@media only screen and (max-width: 380px) {
    .heroSection h1 {
        font-size: 30px
    }
}
