/* =====================================================
HERO
===================================================== */

.hero {
    min-height: 650px;
    
    background: linear-gradient( rgba(0,0,0,.55), rgba(0,0,0,.55) ), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        font-size: 4.5rem;
        font-weight: 800;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 650px;
    }

/* =====================================================
BOOKING WIDGET
===================================================== */

.booking-widget {
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.booking-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

/* =====================================================
ROOMS
===================================================== */

.room-card {
    overflow: hidden;
    border-radius: 20px;
    transition: .3s;
}

    .room-card:hover {
        transform: translateY(-8px);
    }

    .room-card img {
        height: 280px;
        object-fit: cover;
    }

.room-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

/* =====================================================
AMENITIES
===================================================== */

.amenity-card {
    border-radius: 20px;
    transition: .3s;
}

    .amenity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12) !important;
    }

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(202,169,107,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .amenity-icon i {
        font-size: 2rem;
        color: var(--primary);
    }

/* =====================================================
ABOUT HOTEL
===================================================== */

.about-hotel {
    background: #fff;
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: 25px;
}

    .about-image-wrapper img {
        transition: .5s;
    }

    .about-image-wrapper:hover img {
        transform: scale(1.05);
    }

.about-stat {
    text-align: center;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
}

    .about-stat h3 {
        color: var(--primary);
        font-size: 2rem;
        font-weight: 700;
    }

/* =====================================================
GALLERY
===================================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .gallery-item img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .5s;
    }

.gallery-large img {
    height: 664px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    background: linear-gradient( transparent, rgba(0,0,0,.75) );
    opacity: 0;
    transition: .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: #fff;
}

/* =====================================================
TESTIMONIALS
===================================================== */

.testimonial-card {
    border-radius: 20px;
    padding: 30px;
    transition: .3s;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
    }

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-stat h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

/* =====================================================
CTA
===================================================== */

.cta-section {
    background: linear-gradient( rgba(0,0,0,.75), rgba(0,0,0,.75) ), url('../images/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.cta-card {
    padding: 80px 40px;
}

    .cta-card h2 {
        font-size: 3rem;
        font-weight: 700;
    }

.cta-feature i {
    color: var(--primary);
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

