﻿/*=========================================================
    PRAYAG GROUP OF HOTELS
    HOTEL.CSS
    PART - 1
=========================================================*/

/*=========================================
    HOTEL PAGE VARIABLES
=========================================*/

.hotel-page {
    --hotel-primary: #6B0F1A;
    --hotel-secondary: #D4AF37;
    --hotel-dark: #111111;
    --hotel-text: #555555;
    --hotel-white: #ffffff;
    --hotel-light: #f8f6f2;
    --hotel-border: #e8e8e8;
}

    /*=========================================
    COMMON
=========================================*/

    .hotel-page section {
        position: relative;
        padding: 100px 0;
    }

    .hotel-page img {
        max-width: 100%;
        display: block;
    }

    .hotel-page a {
        text-decoration: none;
    }

    .hotel-page ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .hotel-page h1,
    .hotel-page h2,
    .hotel-page h3,
    .hotel-page h4 {
        font-family: 'Cormorant Garamond',serif;
        color: var(--hotel-dark);
        font-weight: 700;
    }

    .hotel-page p {
        color: var(--hotel-text);
        line-height: 1.9;
        font-size: 16px;
    }

.hotel-section-tag {
    display: inline-block;
    color: var(--hotel-secondary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hotel-section-title {
    max-width: 750px;
    margin: auto;
}

    .hotel-section-title h2 {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .hotel-section-title p {
        font-size: 17px;
    }

/*=========================================
    BUTTONS
=========================================*/

.hotel-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--hotel-secondary);
    color: #111;
    font-weight: 700;
    border-radius: 50px;
    transition: .4s;
    border: 2px solid var(--hotel-secondary);
}

    .hotel-btn-primary:hover {
        background: transparent;
        color: var(--hotel-secondary);
    }

.hotel-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    color: #fff;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: .4s;
}

    .hotel-btn-outline:hover {
        background: #fff;
        color: var(--hotel-primary);
    }

.hotel-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/*=========================================
    HERO
=========================================*/

.hotel-hero {
    height: 100vh;
    min-height: 750px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.hotel-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity:.4;
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.60));

}

.hotel-hero-content {
    position: relative;
    z-index: 5;
    max-width: 760px;
}

.hotel-subtitle {
    display: inline-block;
    color: var(--hotel-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
}

.hotel-hero h1 {
    color: #fff;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hotel-hero p {
    color: #fff;
    font-size: 20px;
    max-width: 620px;
}

/*=========================================
    BREADCRUMB
=========================================*/

.hotel-breadcrumb {
    background: #fafafa;
    padding: 22px 0;
    border-bottom: 1px solid var(--hotel-border);
}

    .hotel-breadcrumb ul {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .hotel-breadcrumb li {
        color: #666;
        font-size: 15px;
    }

    .hotel-breadcrumb a {
        color: var(--hotel-primary);
        font-weight: 600;
    }

    .hotel-breadcrumb i {
        color: #999;
        font-size: 12px;
    }

/*=========================================
    ABOUT
=========================================*/

.hotel-about {
    background: var(--hotel-white);
}

.hotel-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

    .hotel-about-image img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        transition: .6s;
        background: rgba(0, 0, 0, 0.20);

    }

    .hotel-about-image:hover img {
        transform: scale(1.08);
    }

.hotel-experience {
    position: absolute;
    left: 40px;
    bottom: 40px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 190px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

    .hotel-experience h2 {
        color: var(--hotel-secondary);
        font-size: 54px;
        margin-bottom: 5px;
    }

    .hotel-experience span {
        display: block;
        color: #666;
        font-size: 15px;
    }

.hotel-about-content {
    padding-left: 30px;
}

    .hotel-about-content h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }

    .hotel-about-content p {
        margin-bottom: 22px;
    }

.hotel-highlights {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 40px 0;
}

.hotel-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: var(--hotel-light);
    border-radius: 15px;
    transition: .4s;
}

    .hotel-highlight:hover {
        background: var(--hotel-secondary);
        transform: translateY(-5px);
    }

    .hotel-highlight i {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--hotel-primary);
        font-size: 22px;
        flex-shrink: 0;
    }

    .hotel-highlight span {
        font-weight: 600;
        color: var(--hotel-dark);
    }
/*=========================================================
    HOTEL.CSS
    PART - 2
    Rooms & Amenities
=========================================================*/


/*=========================================
    LUXURY ROOMS
=========================================*/

.hotel-rooms {
    background: var(--hotel-light);
}

.hotel-room-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .45s;
    height: 100%;
    position: relative;
}

    .hotel-room-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0,0,0,.15);
    }

.hotel-room-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

    .hotel-room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s;
    }

.hotel-room-card:hover .hotel-room-image img {
    transform: scale(1.1);
}

.hotel-room-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
}

.hotel-room-price {
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--hotel-secondary);
    color: #111;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

    .hotel-room-price small {
        font-size: 12px;
        font-weight: 500;
    }

.hotel-room-content {
    padding: 35px;
}

    .hotel-room-content h3 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .hotel-room-content p {
        margin-bottom: 25px;
    }

.hotel-room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

    .hotel-room-features span {
        background: var(--hotel-light);
        padding: 10px 16px;
        border-radius: 30px;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #444;
    }

    .hotel-room-features i {
        color: var(--hotel-secondary);
    }

.hotel-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--hotel-primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

    .hotel-room-btn:hover {
        background: var(--hotel-secondary);
        color: #111;
    }

.hotel-room-footer {
    text-align: center;
    margin-top: 70px;
}


/*=========================================
    ROOM HOVER BORDER
=========================================*/

.hotel-room-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--hotel-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: .45s;
}

.hotel-room-card:hover::before {
    transform: scaleX(1);
}



/*=========================================
    AMENITIES
=========================================*/

.hotel-amenities {
    background: #fff;
}

.hotel-amenity-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .45s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .hotel-amenity-card:hover {
        transform: translateY(-10px);
        background: var(--hotel-primary);
    }

    .hotel-amenity-card::before {
        content: "";
        position: absolute;
        left: -120%;
        top: 0;
        width: 120%;
        height: 100%;
        background: rgba(255,255,255,.05);
        transform: skewX(-30deg);
        transition: .7s;
    }

    .hotel-amenity-card:hover::before {
        left: 130%;
    }

.hotel-amenity-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--hotel-light);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    margin-bottom: 25px;
}

    .hotel-amenity-icon i {
        font-size: 34px;
        color: var(--hotel-secondary);
    }

.hotel-amenity-card:hover .hotel-amenity-icon {
    background: #fff;
    transform: rotateY(180deg);
}

.hotel-amenity-card h4 {
    font-size: 28px;
    margin-bottom: 15px;
    transition: .3s;
}

.hotel-amenity-card p {
    transition: .3s;
    margin-bottom: 0;
}

.hotel-amenity-card:hover h4,
.hotel-amenity-card:hover p {
    color: #fff;
}



/*=========================================
    SECTION SPACING
=========================================*/

.hotel-rooms + .hotel-amenities {
    padding-top: 110px;
}



/*=========================================
    SIMPLE FADE EFFECT
=========================================*/

.hotel-room-card,
.hotel-amenity-card {
    opacity: 1;
    transition: transform .45s, box-shadow .45s, background .45s;
}
/*=========================================================
    HOTEL.CSS
    PART - 3
    Restaurant & Banquet
=========================================================*/


/*=========================================
    RESTAURANT
=========================================*/

.hotel-restaurant {
    background: var(--hotel-light);
    overflow: hidden;
}

.hotel-restaurant-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .hotel-restaurant-image img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        transition: .7s;
    }

    .hotel-restaurant-image:hover img {
        transform: scale(1.08);
    }

    .hotel-restaurant-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.25), transparent);
        pointer-events: none;
    }

.hotel-restaurant-content {
    padding-left: 40px;
}

    .hotel-restaurant-content h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }

    .hotel-restaurant-content p {
        margin-bottom: 20px;
    }

.hotel-feature-list {
    margin: 35px 0;
}

    .hotel-feature-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 14px 0;
        font-size: 17px;
        color: var(--hotel-dark);
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

        .hotel-feature-list li:last-child {
            border: none;
        }

    .hotel-feature-list i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--hotel-secondary);
        color: #111;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 14px;
    }

.hotel-restaurant-content .hotel-btn-primary {
    margin-top: 15px;
}



/*=========================================
    BANQUET
=========================================*/

.hotel-banquet {
    background: #fff;
    overflow: hidden;
}

.hotel-banquet-content {
    padding-right: 40px;
}

    .hotel-banquet-content h2 {
        font-size: 52px;
        margin-bottom: 25px;
    }

    .hotel-banquet-content p {
        margin-bottom: 20px;
    }

.hotel-banquet-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .hotel-banquet-image img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        transition: .7s;
    }

    .hotel-banquet-image:hover img {
        transform: scale(1.08);
    }

    .hotel-banquet-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.20), transparent);
        z-index: 1;
    }

.hotel-banquet-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin: 40px 0;
}

.hotel-banquet-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--hotel-light);
    padding: 20px;
    border-radius: 18px;
    transition: .4s;
}

    .hotel-banquet-item:hover {
        background: var(--hotel-secondary);
        transform: translateY(-6px);
    }

    .hotel-banquet-item i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #fff;
        color: var(--hotel-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }

    .hotel-banquet-item span {
        font-weight: 600;
        color: var(--hotel-dark);
    }



/*=========================================
    IMAGE DECORATION
=========================================*/

.hotel-restaurant-image::before,
.hotel-banquet-image::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 6px solid rgba(212,175,55,.25);
    border-radius: 25px;
    z-index: 2;
    pointer-events: none;
}

.hotel-restaurant-image::before {
    top: 25px;
    left: 25px;
}

.hotel-banquet-image::after {
    bottom: 25px;
    right: 25px;
}



/*=========================================
    HOVER ANIMATION
=========================================*/

.hotel-restaurant-image,
.hotel-banquet-image {
    transition: .45s;
}

    .hotel-restaurant-image:hover,
    .hotel-banquet-image:hover {
        transform: translateY(-8px);
    }



/*=========================================
    SECTION DIVIDER
=========================================*/

.hotel-restaurant + .hotel-banquet {
    border-top: 1px solid rgba(0,0,0,.05);
}



/*=========================================
    BUTTON ALIGNMENT
=========================================*/

.hotel-banquet-content .hotel-btn-primary,
.hotel-restaurant-content .hotel-btn-primary {
    min-width: 220px;
    text-align: center;
}
/*=========================================================
    HOTEL.CSS
    PART - 4
    Gallery & Testimonials
=========================================================*/


/*=========================================
    GALLERY
=========================================*/

.hotel-gallery {
    background: var(--hotel-light);
}

.hotel-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
}

    .hotel-gallery-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .7s;
    }

    .hotel-gallery-item:hover img {
        transform: scale(1.12);
    }

.hotel-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107,15,26,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .45s;
}

.hotel-gallery-item:hover .hotel-gallery-overlay {
    opacity: 1;
}

.hotel-gallery-overlay i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: var(--hotel-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transform: scale(.5);
    transition: .45s;
}

.hotel-gallery-item:hover .hotel-gallery-overlay i {
    transform: scale(1);
}

.hotel-gallery-footer {
    margin-top: 70px;
    text-align: center;
}



/*=========================================
    TESTIMONIALS
=========================================*/

.hotel-testimonials {
    background: #fff;
}

.hotel-testimonial-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .45s;
    overflow: hidden;
}

    .hotel-testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.14);
    }

    .hotel-testimonial-card::before {
        content: "❝";
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 90px;
        color: rgba(212,175,55,.12);
        font-family: serif;
    }

.hotel-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

    .hotel-rating i {
        color: #FFC107;
        font-size: 18px;
    }

.hotel-testimonial-card p {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--hotel-text);
    line-height: 1.9;
}

.hotel-review-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .hotel-review-user img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--hotel-secondary);
    }

    .hotel-review-user h5 {
        margin: 0;
        font-size: 22px;
        color: var(--hotel-dark);
    }

    .hotel-review-user span {
        color: #777;
        font-size: 15px;
    }



/*=========================================
    GLASS HOVER
=========================================*/

.hotel-testimonial-card::after {
    content: "";
    position: absolute;
    left: -150%;
    top: 0;
    width: 120%;
    height: 100%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,.35), transparent );
    transition: .8s;
}

.hotel-testimonial-card:hover::after {
    left: 150%;
}



/*=========================================
    IMAGE BORDER EFFECT
=========================================*/

.hotel-gallery-item::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(255,255,255,.45);
    opacity: 0;
    transition: .4s;
    z-index: 2;
}

.hotel-gallery-item:hover::before {
    opacity: 1;
}



/*=========================================
    SECTION TITLE
=========================================*/

.hotel-gallery .hotel-section-title,
.hotel-testimonials .hotel-section-title {
    margin-bottom: 25px;
}



/*=========================================
    RESPONSIVE GRID FIX
=========================================*/

.hotel-gallery .row {
    row-gap: 30px;
}
/*=========================================================
    HOTEL.CSS
    PART - 5
    Contact • CTA • Responsive
=========================================================*/


/*=========================================
    CONTACT
=========================================*/

.hotel-contact {
    background: var(--hotel-white);
}

.hotel-contact-info {
    height: 100%;
}

    .hotel-contact-info h2 {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .hotel-contact-info > p {
        margin-bottom: 40px;
    }

.hotel-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    margin-bottom: 20px;
    background: var(--hotel-light);
    border-radius: 18px;
    transition: .4s;
}

    .hotel-contact-item:hover {
        transform: translateX(10px);
        background: var(--hotel-primary);
    }

    .hotel-contact-item i {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--hotel-secondary);
        color: #111;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 22px;
    }

    .hotel-contact-item h5 {
        margin-bottom: 6px;
        font-size: 22px;
    }

    .hotel-contact-item p {
        margin: 0;
    }

    .hotel-contact-item:hover h5,
    .hotel-contact-item:hover p {
        color: #fff;
    }

.hotel-map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .hotel-map iframe {
        width: 100%;
        height: 550px;
        border: none;
    }



/*=========================================
    BOOKING CTA
=========================================*/

.hotel-booking-cta {
    background: linear-gradient(rgba(107,15,26,.88), rgba(107,15,26,.88)), url("../images/hotel-prayag/cta-bg.jpg") center/cover;
}

.hotel-booking-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

    .hotel-booking-box span {
        display: inline-block;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--hotel-secondary);
        margin-bottom: 18px;
    }

    .hotel-booking-box h2 {
        color: #fff;
        font-size: 58px;
        margin-bottom: 25px;
    }

    .hotel-booking-box p {
        color: #f4f4f4;
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 18px;
    }

    .hotel-booking-box .hotel-buttons {
        justify-content: center;
    }



/*=========================================
    IMAGE RADIUS
=========================================*/

.hotel-room-image,
.hotel-about-image,
.hotel-gallery-item,
.hotel-banquet-image,
.hotel-restaurant-image,
.hotel-map {
    border-radius: 25px;
}



/*=========================================
    SMOOTH ANIMATION
=========================================*/

.hotel-room-card,
.hotel-gallery-item,
.hotel-testimonial-card,
.hotel-amenity-card,
.hotel-highlight,
.hotel-banquet-item,
.hotel-contact-item {
    transition: all .4s ease;
}



/*=========================================
    TABLET
=========================================*/

@media(max-width:991px) {

    .hotel-page section {
        padding: 80px 0;
    }

    .hotel-hero {
        min-height: 650px;
    }

        .hotel-hero h1 {
            font-size: 56px;
        }

        .hotel-hero p {
            font-size: 18px;
        }

    .hotel-about-content,
    .hotel-restaurant-content,
    .hotel-banquet-content {
        padding: 0;
    }

    .hotel-about-image img,
    .hotel-restaurant-image img,
    .hotel-banquet-image img {
        height: 500px;
    }

    .hotel-section-title h2 {
        font-size: 42px;
    }

    .hotel-about-content h2,
    .hotel-restaurant-content h2,
    .hotel-banquet-content h2,
    .hotel-contact-info h2 {
        font-size: 42px;
    }

    .hotel-highlights {
        grid-template-columns: 1fr;
    }

    .hotel-banquet-features {
        grid-template-columns: 1fr;
    }

    .hotel-map iframe {
        height: 420px;
    }

    .hotel-booking-box h2 {
        font-size: 42px;
    }
}



/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px) {

    .hotel-page section {
        padding: 70px 0;
    }

    .hotel-hero {
        min-height: 560px;
        text-align: center;
    }

        .hotel-hero h1 {
            font-size: 42px;
        }

        .hotel-hero p {
            font-size: 16px;
        }

    .hotel-buttons {
        flex-direction: column;
    }

    .hotel-btn-primary,
    .hotel-btn-outline {
        width: 100%;
    }

    .hotel-section-title h2,
    .hotel-about-content h2,
    .hotel-restaurant-content h2,
    .hotel-banquet-content h2,
    .hotel-contact-info h2 {
        font-size: 34px;
    }

    .hotel-about-image img,
    .hotel-restaurant-image img,
    .hotel-banquet-image img {
        height: 360px;
    }

    .hotel-room-image {
        height: 240px;
    }

    .hotel-gallery-item img {
        height: 260px;
    }

    .hotel-room-content {
        padding: 25px;
    }

    .hotel-contact-item {
        flex-direction: column;
        text-align: center;
    }

        .hotel-contact-item i {
            margin: auto;
        }

    .hotel-map iframe {
        height: 320px;
    }

    .hotel-booking-box h2 {
        font-size: 34px;
    }

    .hotel-booking-box p {
        font-size: 16px;
    }

    .hotel-review-user {
        flex-direction: column;
        text-align: center;
    }

        .hotel-review-user img {
            margin-bottom: 10px;
        }

    .hotel-experience {
        left: 20px;
        right: 20px;
        bottom: 20px;
        min-width: auto;
    }
}



/*=========================================
    SMALL MOBILE
=========================================*/

@media(max-width:480px) {

    .hotel-hero h1 {
        font-size: 34px;
    }

    .hotel-section-title h2 {
        font-size: 30px;
    }

    .hotel-room-price {
        font-size: 15px;
        padding: 10px 16px;
    }

    .hotel-highlight {
        flex-direction: column;
        text-align: center;
    }

    .hotel-amenity-card {
        padding: 35px 20px;
    }

    .hotel-booking-box h2 {
        font-size: 28px;
    }

    .hotel-booking-box span {
        font-size: 13px;
        letter-spacing: 2px;
    }
}
.hotel-btn-primary,
.hotel-btn-outline,
.hotel-room-btn {
    position: relative;
    overflow: hidden;
}

.hotel-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,.45);
    animation: hotelRipple .6s linear;
    pointer-events: none;
}

@keyframes hotelRipple {

    to {
        transform: scale(4);
        opacity: 0;
    }
}