﻿/*=========================================================
    HOME PAGE
    OUR HOTELS SECTION
=========================================================*/

.hotels-section {
    padding: 100px 0;
    background: #f8f6f2;
    position: relative;
    overflow: hidden;
}

/*=========================================
    SECTION HEADING
=========================================*/

.section-heading {
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    color: #D4AF37;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/*=========================================
    HOTEL CARD
=========================================*/

.hotel-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: .45s;
    height: 100%;
    position: relative;
}

    .hotel-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.15);
    }

/*=========================================
    IMAGE
=========================================*/

.hotel-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

    .hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s;
    }

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
}

/*=========================================
    HOTEL TAG
=========================================*/

.hotel-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D4AF37;
    color: #111;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

/*=========================================
    CONTENT
=========================================*/

.hotel-content {
    padding: 30px;
}

    .hotel-content h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #111;
    }

    .hotel-content p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
    }

/*=========================================
    BUTTON
=========================================*/

.hotel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #6B0F1A;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: .35s;
}

    .hotel-btn:hover {
        background: #D4AF37;
        color: #111;
    }

    .hotel-btn i {
        transition: .35s;
    }

    .hotel-btn:hover i {
        transform: translateX(6px);
    }

/*=========================================
    TOP BORDER ANIMATION
=========================================*/

.hotel-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
    z-index: 3;
}

.hotel-card:hover::before {
    transform: scaleX(1);
}

/*=========================================
    RESPONSIVE
=========================================*/

@media (max-width:991px) {

    .hotels-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

        .section-heading h2 {
            font-size: 42px;
        }

    .hotel-image {
        height: 240px;
    }
}

@media (max-width:767px) {

    .hotels-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .hotel-content {
        padding: 25px;
    }

        .hotel-content h3 {
            font-size: 28px;
        }

    .hotel-image {
        height: 220px;
    }

    .hotel-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:480px) {

    .section-heading h2 {
        font-size: 30px;
    }

    .hotel-image {
        height: 200px;
    }
}
