@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,700;1,700&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* navbar */
.navbar {
    background: transparent !important;
    box-shadow: none;
}

.logo {
    width: 250px;
    height: auto;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #555;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: #007bff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 1.5rem;
}

.social-icon:hover .fab.fa-facebook-f {
    color: #3b5998;
}

.social-icon:hover .fab.fa-instagram {
    color: #E1306C;
}

.social-icon:hover .fab.fa-x-twitter {
    color: #1DA1F2;
}

@media (max-width: 991px) {
    .navbar-nav {
        justify-content: flex-start;
    }

    .social-icons {
        margin-left: auto;
    }
}


/* breadcrumbs start */
.b-banners-banner--img {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url('../img/background/nreadcrumb-gb.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    overflow: hidden;
}

/* .b-banners-banner--img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
} */

.banner__title {
    color: #fff !important;
    font-size: 3rem;
    font-weight: 500;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner__breadcrumbs {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
}

.banner__breadcrumb-item {
    display: inline-block;
}

.banner__breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: color 0.3s ease;
}

.banner__breadcrumb-item a:hover {
    color: #ff4081;
}

.banner__breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.u-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .b-banners-banner--img {
        height: 50vh;
        background-attachment: fixed;
        background-size: cover;
    }

    .banner__title {
        font-size: 2rem;
    }

    .banner__breadcrumbs {
        font-size: 0.75rem;
    }
}


/* breadcrumbs end */

























/* carousel */
.banner {
    position: relative;
    height: 100vh;
    background: url('../img/slider4.jpg') no-repeat center center;
    background-size: cover;
}

.banner-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    /* font-family: 'Arial', sans-serif; */
    z-index: 1;
}

.banner-caption h1 {
    font-size: 2.5rem;
    color: #94df94;
    font-weight: 600;
    font-style: italic;
    margin: 0.2em 0;
}

.banner-caption h2 {
    font-family: "Lora", serif;
    font-size: 4rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* margin: 0.5em 0; */
}

.banner-caption p:first-of-type {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0.2em 0;
}

.banner-caption p:last-of-type {
    font-size: 1.2rem;
    font-weight: normal;
    color: white;
    margin: 0.2em 0;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}


/* Main section background styling */
.main-section {
    /*background: url('../img/slider1.jpg') no-repeat center center fixed;*/
    /* Replace with your image URL */
    background-size: cover;
    /* Ensure the image covers the full viewport */
    height: 100vh;
}

/* For tablet and mobile devices */
@media (max-width: 768px) {
    .marginB-690 {
        margin-bottom: 690px;
    }

    .transparent-bg {
        background: transparent !important;
    }
}


/* Transparent column styling */
.transparent-bg {
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    height: 100%;
    text-align: center;
    padding: 2rem;
}

/* Right column solid background */
.col-md-6 {
    height: 100%;
}







/* General Styles */
.text-teal {
    color: rgb(36, 163, 154);
}

.list-section {
    padding: 20px 40px;
}

.image-row {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    /* Prevent images from wrapping to the next line */
    justify-content: space-between;
}

.image-row img {
    width: 100%;
    max-width: 33%;
    /* Each image will take up one-third of the container on desktop */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, filter 0.3s;
}

.image-row img:hover {
    transform: scale(1.05);
    /* Slight zoom effect */
    filter: brightness(1.2);
    /* Brightens the image */
}

.section-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.left-column {
    flex: 1;
}

.right-column {
    flex: 1;
}

/* Desktop View (screens > 992px) */
@media (min-width: 993px) {
    .image-row {
        display: flex;
        gap: 15px;
        flex-wrap: nowrap;
        /* Ensure images are in one line on desktop */
    }

    .image-row img {
        max-width: 33%;
        /* Ensure images take 1/3 of the row */
    }
}

/* Tablet and Mobile View (screens ≤ 992px) */
@media (max-width: 992px) {
    .coffee-breakfast-section {
        width: 90%;
        /* Make the section narrower for tablets and mobile */
    }

    .section-wrapper {
        flex-direction: column;
        gap: 20px;
        /* Stack the columns */
    }

    .left-column,
    .right-column {
        flex: none;
        width: 100%;
        /* Make the columns full-width */
    }

    .image-row {
        flex-wrap: nowrap;
        /* Prevent images from wrapping to the next line */
        gap: 10px;
        /* Slightly reduce the gap between images */
    }

    .image-row img {
        max-width: 33%;
        /* Ensure images stay in one line */
    }
}

/* Mobile View (screens ≤ 576px) */
@media (max-width: 576px) {
    .coffee-breakfast-section {
        width: 100%;
        /* Full width for mobile */
    }

    .image-row img {
        max-width: 33%;
        /* Keep images in one line, each taking 33% of the row */
    }

    .section-wrapper {
        margin: 20px 0;
        /* Reduce margin on mobile */
    }

    .left-column,
    .right-column {
        flex: none;
        width: 100%;
        /* Stack the columns for mobile */
    }

    .list-unstyled {
        font-size: 1.2rem;
        /* Increase font size slightly for mobile readability */
    }
}





.check-out-section {
    background: url('../img/slider1.jpg') no-repeat center center fixed;
    background-size: cover;
    /* height: 100vh; */
    position: relative;
    color: #ffffff;
    text-align: center;
    padding: 50px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 128, 128, 0.8);
    /* Transparent teal overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}

h1 {
    /* font-family: 'Arial', sans-serif; */
    font-weight: bold;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}









/* Custom CSS for the map container */
.map-section {
    /* margin: 50px 0; */
    padding: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    /* Adjust as needed */
    overflow: hidden;
}

iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* Optional: Add some responsive behavior */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}





footer {
    background-color: #f8f9fa;
    font-size: 0.9rem;
    color: #333;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer img {
    max-width: 100%;
    height: auto;
}

footer .border-top {
    border-top: 2px solid #007bff;
}







/* ********** 
Property detail page styles
********** */

/* gallery  */
.cp_wrapper {
    padding: 40px;
    background-color: #F5F5F5;
    border-radius: 10px;
    margin-top: 10px;
}

.cp_wrapper .component--gallery+.component--gallery {
    margin-top: 80px
}

.cp_wrapper .component--gallery .gallery__image .item__thumbnail img {
    transition: var(--trans-image);
}

.cp_wrapper .component--gallery .gallery__image:hover .item__thumbnail img,
.cp_wrapper .component--gallery .gallery__image:focus .item__thumbnail img {
    transform: var(--transform-image);
}

.grid-area {
    position: relative;
    overflow: hidden;
}

.grid-area img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--br-img, 16px);
}

.component--gallery .gallery {
    min-height: 400px;
    display: grid;
    gap: var(--gap-100, 4px);
    border-radius: var(--br-alt, 16px);
    overflow: hidden;
}

.component--gallery .gallery .grid-area-a {
    grid-area: a;
}

.component--gallery .gallery .grid-area-b {
    grid-area: b;
}

.component--gallery .gallery .grid-area-c {
    grid-area: c;
}

.component--gallery .gallery .grid-area-d {
    grid-area: d;
}

.component--gallery .gallery .grid-area-e {
    grid-area: e;
}

.component--gallery .gallery {
    grid-template-areas: "a a b c" "a a d e";
}

.component--gallery .gallery[data-gallery-images="4"] {
    grid-template-areas: "a a b c" "a a b d";
}

.component--gallery .gallery[data-gallery-images="3"] {
    grid-template-areas: "a a b c";
}

.component--gallery .gallery[data-gallery-images="2"] {
    grid-template-areas: "a b";
}

.component--gallery .gallery[data-gallery-images="1"] {
    grid-template-areas: "a";
}

.component--gallery .gallery[data-gallery-images="4"] .grid-area-e,
.component--gallery .gallery[data-gallery-images="3"] .grid-area-e,
.component--gallery .gallery[data-gallery-images="3"] .grid-area-d,
.component--gallery .gallery[data-gallery-images="2"] .grid-area-e,
.component--gallery .gallery[data-gallery-images="2"] .grid-area-d,
.component--gallery .gallery[data-gallery-images="2"] .grid-area-c,
.component--gallery .gallery[data-gallery-images="1"] .grid-area-e,
.component--gallery .gallery[data-gallery-images="1"] .grid-area-d,
.component--gallery .gallery[data-gallery-images="1"] .grid-area-c,
.component--gallery .gallery[data-gallery-images="1"] .grid-area-b {
    display: none;
}

.component--gallery .gallery .gallery__image,
.component--gallery .gallery .gallery__image img {
    border-radius: 0;
}

.component--gallery .gallery .gallery__image img {
    transition: var(--trans-image);
}

.component--gallery .gallery .gallery__image a {
    display: block;
}

.component--gallery .gallery .gallery__image a:hover img,
.component--gallery .gallery .gallery__image a:focus img {
    transform: var(--transform-image);
}

.component--gallery .gallery[data-show-more="false"] .gallery__more {
    display: none;
}

.component--gallery .gallery[data-show-more="true"] .gallery__more {
    position: absolute;
    inset: 0;
    background-color: var(--image-shadow-50);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--ff-sans-700);
    font-size: var(--fs-700, 30px);
    color: var(--color-white, #FFFFFFFF);
    pointer-events: none;
}

@media(max-width:1024px) {

    .component--gallery .gallery,
    .component--gallery .gallery[data-gallery-images="4"],
    .component--gallery .gallery[data-gallery-images="3"],
    .component--gallery .gallery[data-gallery-images="2"],
    .component--gallery .gallery[data-gallery-images="1"] {
        min-height: 300px;
        grid-template-areas: "a";
    }

    .component--gallery .gallery .grid-area-b,
    .component--gallery .gallery .grid-area-c,
    .component--gallery .gallery .grid-area-d,
    .component--gallery .gallery .grid-area-e {
        display: none;
    }

    .component--gallery .gallery[data-show-more="true"] .gallery__more,
    .component--gallery .gallery[data-show-more="false"] .gallery__more {
        padding: 10px 12px 8px;
        display: flex;
        gap: var(--gap-200, 4px);
        align-items: center;
        inset: auto var(--gap-200, 8px) var(--gap-200, 8px) auto;
        font-family: var(--ff-sans);
        font-size: var(--fs-500, 16px);
        line-height: var(--lh-100, 1.00);
        border-radius: var(--br-alt-200, 8px);
        background-color: var(--image-shadow-20);
    }

    .component--gallery .gallery__more__icon img {
        position: relative;
        margin-top: -2px;
        width: 20px;
    }
}

@media(max-width:767px) {
    .component--gallery .gallery {
        min-height: 250px;
    }
}

.gallery__image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: var(--br-img, 16px);
}

.hidden-images {
    display: none;
}

/* amenetis style  */
.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.accordion-body ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.accordion-body ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    margin-right: 8px;
    color: #007bff;
    font-size: 18px;
}


/* rate table  */
@media screen and (max-width: 600px) {
    .rate-table {
        border: 0;
        display: flex;
        flex-direction: column;
    }

    .rate-table thead {
        display: none;
    }

    .rate-table tbody {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .rate-table tbody tr {
        display: flex;
        flex-direction: column;
        border: 2px solid #ddd;
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .rate-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px;
        font-size: 14px;
        text-align: right;
    }

    .rate-table td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        color: #333;
    }
}

.card {
    border: 1px solid #ddd;
}

.card-header {
    font-size: 1.25rem;
    font-weight: bold;
    background-color: #f8f9fa;
}

.review-card {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
}

.reviewer-img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    color: #333;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
}

.star-rating {
    color: #f4b400;
    font-size: 1.2rem;
}


/* about page  */

.aboutext {
    padding: 50px 15px;
    /* background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
}

.aboutext h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.aboutext p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.aboutext b {
    color: #007bff;
}