body {
    font-family: Arial, sans-serif;
}

/* Top Location */
.top-location {
    font-size: 14px;
    color: #c89b2d;
}

/* Navbar */
.navbar-nav .nav-link {
    font-weight: 600;
    padding: 15px;
}

/* Slider */
.slider-bg {
    height: 520px;
    background-size: cover;
    background-position: center;
}

.intro-box {
    background: rgba(30, 30, 30, 0.95);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    max-width: 420px;
}

/* Amenities */
.amenities-title {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 32px;
}

.amenities-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    background: #ddd;
}

.btn-gold {
    background: #d4a12c;
    color: #fff;
    border-radius: 0;
    padding: 10px 25px;
}

.btn-gold:hover {
    background: #b5891e;
}

/* Footer */
footer {
    background: #2f2f2f;
    color: #ccc;
}

footer h6 {
    color: #fff;
    font-weight: bold;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    color: #d4a12c;
}

.footer-bottom {
    background: #000;
    color: #d4a12c;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-bg {
        height: 400px;
    }

    .intro-box {
        max-width: 100%;
        text-align: center;
    }
}

/* Slider */
.slider-bg {
    height: 500px;
    background-size: cover;
    background-position: center;
}

/* Text Card */
.intro-box {
    background: rgba(40, 40, 40, 0.95);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    max-width: 420px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .slider-bg {
        height: 380px;
    }

    .intro-box {
        max-width: 100%;
        text-align: center;
    }
}



.home-activities .left {
    height: 400px;
    margin-bottom: 30px;
}

/* Image Gallery */
.home-activities .left .image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Images */
.home-activities .left .image-gallery .image1 {
    width: 20%;
    height: 25%;
    background-color: lightgray;
    top: 2%;
    left: 40%;
    position: absolute;
}

.home-activities .left .image-gallery .image2 {
    width: 12%;
    height: 17%;
    background-color: lightgray;
    top: 10%;
    left: 63%;
    position: absolute;
}

.home-activities .left .image-gallery .image3 {
    width: 35%;
    height: 48%;
    background-color: lightgray;
    top: 30%;
    left: 40%;
    position: absolute;
}

.home-activities .left .image-gallery .image4 {
    width: 23%;
    height: 30%;
    background-color: lightgray;
    top: 30%;
    left: 14.5%;
    position: absolute;
}

.home-activities .left .image-gallery .image5 {
    width: 7.5%;
    height: 10%;
    background-color: lightgray;
    top: 62.5%;
    left: 30%;
    position: absolute;
}

.home-activities .left .image-gallery .image6 {
    width: 18%;
    height: 24%;
    background-color: lightgray;
    top: 30%;
    left: 78%;
    position: absolute;
}

.home-activities .left .image-gallery .image7 {
    width: 10%;
    height: 15%;
    background-color: lightgray;
    top: 57%;
    left: 78%;
    position: absolute;
}

.home-activities .left .image-gallery .image8 {
    width: 18%;
    height: 25%;
    background-color: lightgray;
    top: 81%;
    left: 50%;
    position: absolute;
}

/* Desktop */
@media screen and (min-width: 1200px) {
    .home-activities .left .image-gallery {
        transform: scale(1.2);
    }

    .home-activities {
        padding: 50px 0;
    }

    .home-activities .right {
        margin-top: 25px;
        padding-left: 55px;
    }
}

/* Tablet & below */
@media screen and (max-width: 991px) {
    .home-activities .left .image-gallery .image1 {
        top: 2%;
        left: 33%;
    }

    .home-activities .left .image-gallery .image2 {
        top: 10%;
        left: 55%;
    }

    .home-activities .left .image-gallery .image3 {
        top: 30%;
        left: 33%;
    }

    .home-activities .left .image-gallery .image4 {
        left: 8%;
    }

    .home-activities .left .image-gallery .image5 {
        left: 15.5%;
        width: 15.5%;
        height: 15%;
    }

    .home-activities .left .image-gallery .image6 {
        left: 70%;
    }

    .home-activities .left .image-gallery .image7 {
        top: 57%;
        left: 70%;
        width: 22%;
    }

    .home-activities .left .image-gallery .image8 {
        top: 80%;
        left: 40%;
    }

    .home-activities .right {
        margin-top: 25px;
    }
}

/* Right Content */
.home-activities .right {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-activities .right h2 {
    color: #000;
}

.home-activities .right .icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
}

.social-icon i {
    font-size: 20px;
}

.page-title {
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.page-title h1 {
    font-weight: bold;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 30px;
}

/* Modal Image */
.modal-img {
    width: 100%;
}

.contact-section {
    padding: 20px 0;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 22px;
    color: #0d6efd;
    margin-top: 4px;
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}


.breadcrumb-section {
    background: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #555;
}