/* =====================================================
   BUTTONS
===================================================== */

.btn-primary-jaz {
    background: #5353a6;
    color: #fff;
    border-radius: 6px;
    padding: 10px 22px;
    font-weight: 600;
    border: none;
    transition: 0.2s;
}

    .btn-primary-jaz:hover {
        background: #42429c;
        color: #fff;
    }

/* Booking Button */

.booking-button a {
    display: block;
    color: #ddd2c2;
    text-decoration: none;
}

/* =====================================================
   IMAGE STYLE
===================================================== */

.img-rounded {
    border-radius: 10px;
}

.img-soft-shadow {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* =====================================================
   CARD
===================================================== */

.jaz-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .jaz-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.section-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 32px;
}

/* =====================================================
   GALLERY
===================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

    .gallery-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 8px;
    }

/* mobile */

@media (max-width: 991px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* =====================================================
   ROOM CARD
===================================================== */

.room-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}

    .room-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.room-card-body {
    padding: 18px;
}

.room-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.room-card-text {
    font-size: 14px;
    color: #666;
}

/* =====================================================
   ACCESS MAP
===================================================== */

.access-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.access-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.access-map-photo img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {

    .access-map-section {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   HERO CAPTION
===================================================== */

.hero-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

/* =====================================================
   FEATURE LIST
===================================================== */

.feature-list {
    list-style: none;
    padding: 0;
}

    .feature-list li {
        margin-bottom: 10px;
        font-size: 15px;
    }

        .feature-list li i {
            color: #5353a6;
            margin-right: 8px;
        }

/* =====================================================
   DIVIDER
===================================================== */

.divider {
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
/*    background: #f6f6f6;*/
    /*margin-top: 60px;
    padding: 40px 0;*/
}

    .site-footer p {
        margin: 0;
        font-size: 14px;
        /*color: #777;*/
    }
