* {
}

html {
    scroll-behavior: smooth;
}

/* Navbar Start */

/* Initial floating style */
.floating-nav {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    background-color: #b5e6ea;
    border-radius: 20px;
    border: 10px solid white;
    transition: all 0.4s ease;
    z-index: 1000;
}

.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0 !important;
    background-color: #b5e6ea !important;
    border: none !important;
    padding: 1rem 2rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.navbar-nav .nav-link {
    color: #000;
    font-weight: 600;
    position: relative;
    padding: 8px 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover and active underline */
.navbar-nav .nav-link::after,
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background-color: #000;
    transition: width 0.3s ease;
}

/* On hover */
.navbar-nav .nav-link:hover {
    color: #000 !important;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active state */
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav li {
    padding: 0px 20px;
    font-size: 1.2em;
}

.book_btn {
    font-size: 1.2em !important;
    border-radius: 30px !important;
    border: 2px solid #d2a541 !important;
    background: linear-gradient(145deg, #faebb2, #fff9dc) !important;
    color: #3a2c00 !important;
    padding: 10px 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    animation: none;
    transition: none;
    cursor: pointer;
}

/* Hover animation */
.book_btn:hover {
    animation: liftButton 0.8s forwards ease-in-out;
    color: #2a1d00 !important; /* darker text on hover */
}

/* Click effect */
.book_btn:active {
    animation: pressButton 0.2s forwards ease-out;
}

@keyframes liftButton {
    0% {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        background: linear-gradient(145deg, #faebb2, #fff9dc);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        background: linear-gradient(145deg, #ffe97f, #fff4b3);
    }
    100% {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
        background: linear-gradient(145deg, #ffe97f, #fff4b3);
    }
}

@keyframes pressButton {
    from {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    }
    to {
        transform: translateY(0px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Navbar End */
/* Inner Banner Start */
.innerBanner_wrapper {
    background-image: url("../img/banner1.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    min-height: 50vh;
    width: 100%;
}
.innerBanner_wrap {
    background-color: rgba(255, 255, 255, 0.5);
    /* padding-bottom: 50px;   */
    min-height: 50vh;
}
.innerPage_title {
    min-height: 50vh;
    color: #135b6d;
}
.innerPage_title h1 {
    font-size: 4em;
    font-family: "Merriweather", serif;
    font-weight: 700 !important;
}
.banner_logo {
    width: auto;
    height: 100px;
}
/* Inner Banner End */
/* About Start */
.aboutUs_gallery_wrapper {
    position: relative;
    background-image: url("../img/display5.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 180vh;
}

.aboutUs_gallery_wrap {
    position: absolute;
    background-color: rgba(0, 24, 48, 0.5); /* Instead of opacity */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* vertical center */
    align-items: center !important; /* horizontal center */
    text-align: center !important;
}
.aboutUs_container {
    padding: 80px 0px;
}
.aboutUs_header1 {
    font-family: "Merriweather", serif;
    color: #135b6d;
    font-weight: 700;
    font-size: 3em;
}
.aboutUs_desc p {
    text-align: justify center;
    font-size: 1.3em;
}
.aboutUs_header2 {
    font-family: "Merriweather", serif;
    color: white;
    background-color: #135b6d;
    font-weight: 700;
    font-size: 3em;
}
.aboutUs_mainSwiper img,
.aboutUs_thumbsSwiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.aboutUs_thumbsSwiper {
    height: 200px;
    margin-top: 10px;
    position: relative;
}

.aboutUs_thumbsSwiper .swiper-slide {
    width: 25%;
    opacity: 0.5;
    cursor: pointer;
    height: 200px; /* adjust to fit thumbnails */
}

.aboutUs_thumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #135b6d;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aboutUs_mainSwiper .swiper-slide {
    height: 600px; /* adjust based sa design */
}

.aboutUs_mainSwiper .swiper-slide img,
.aboutUs_thumbsSwiper .swiper-slide img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* adjust as needed */
    border-radius: 8px; /* optional: for rounded corners */
}

.aboutUs_villa_btn {
    font-size: 1.2em !important;
    border-radius: 30px !important;
    border: 2px solid #d2a541 !important;
    background: linear-gradient(145deg, #faebb2, #fff9dc) !important;
    color: #3a2c00 !important;
    padding: 10px 30px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    animation: none;
    transition: none;
    cursor: pointer;
}
.aboutUs_villa_btn:hover {
    color: white !important;
    background: #135b6d !important;
}
/* About End */
/* Book Start */
.book_wrapper {
    position: relative;
    background-image: url("../img/villa1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 180vh;
}

.book_wrap {
    position: absolute;
    background-color: rgba(0, 24, 48, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}
.book_header1 {
    font-family: "Merriweather", serif;
    color: white;
    font-weight: 700;
    font-size: 3em;
}
.book_underline {
    width: 100%;
    border: none;
    border-top: 8px solid #78b4d0; /* Solid colored line */
    margin: 0 auto 1rem auto;
    background: none;
    opacity: 1;
}
.booking_instructions {
    background-color: #e0f7f4;
    border-left: 15px solid #37b7a8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.booking_instructions .step-title {
    font-weight: 600;
    color: #007bff;
}

.booking_instructions p {
    margin: 0.25rem 0 0;
    color: #333;
    line-height: 1.6;
}

#calendar {
    max-width: 900px;
    margin: 30px auto;
    background-color: #e0f7f4;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(55, 183, 168, 0.15);
}
/* FullCalendar header text & buttons */
.fc-toolbar-title {
    color: #2e7066;
}

.fc .fc-button {
    background-color: #37b7a8;
    border: none;
    color: #fff;
}

.fc .fc-button:hover,
.fc .fc-button:focus {
    background-color: #2e7066;
    outline: none;
    box-shadow: none;
}
.fc-disabled-date {
    background-color: #92929282 !important;
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Modal Customization */
.modal-content {
    background-color: #e0f7f4;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.modal-header,
.modal-footer {
    border: none;
    background-color: #d0f2ef;
}

.modal-title {
    font-weight: 700;
    color: #2e7066;
}

.modal {
    padding-top: 40px !important; /* prevents sticky nav overlap */
}
.booking_btn {
    font-size: 1.2em !important;
    border-radius: 30px !important;
    border: 2px solid #d2a541 !important;
    background: linear-gradient(145deg, #faebb2, #fff9dc) !important;
    color: #3a2c00 !important;
    padding: 10px 30px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    animation: none;
    transition: none;
    cursor: pointer;
}
.booking_btn:hover {
    color: white !important;
    background: #135b6d !important;
}
/* Labels and Form Inputs */
label.form-label,
.book_legend {
    font-weight: 700;
    color: #2e7066;
}

.form-control,
.form-select {
    border-radius: 6px;
    border-color: #bce8e4;
}
/* Book End */
/* Gallery Start */
.uniqueGallery_wrapper {
    position: relative;
    background-image: url("../img/bg3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 150vh;
}

.uniqueGallery_wrap {
    position: absolute;
    background-color: rgba(0, 24, 48, 0.6); /* Instead of opacity */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* vertical center */
    align-items: center !important; /* horizontal center */
    text-align: center !important;
}
.uniqueGallery_header {
    font-family: "Merriweather", serif;
    color: white;
    font-weight: 700;
    font-size: 3em;
}
.uniqueGallery_albumBtns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.uniqueGallery_albumBtn {
    background-color: #135b6d;
    color: #ffffff;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(19, 91, 109, 0.2);
}

.uniqueGallery_albumBtn:hover {
    background-color: #b5e6ea;
    color: #135b6d;
    border-color: #135b6d;
    transform: translateY(-2px);
}

.uniqueGallery_albumBtn.active {
    background-color: #b5e6ea;
    color: #135b6d;
    border-color: #135b6d;
    box-shadow: 0 6px 14px rgba(19, 91, 109, 0.3);
    transform: scale(1.05);
}

.uniqueGallery_mainSwiper .swiper-slide {
    height: 600px; /* adjust as needed */
}

.uniqueGallery_mainSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 20px;
}
.uniqueGallery_thumbsSwiper .swiper-slide {
    height: 100px;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s;
}

.uniqueGallery_thumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #f90;
    border-radius: 10px;
}

.uniqueGallery_thumbsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Gallery End */
/* Contact Us Start */
.contactUs_wrapper {
    position: relative;
    background-image: url("../img/bg4.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: auto;
    padding: 100px 0px;
}
.contactUs_title {
    background-color: white;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 50px;
}
.contactUs_header1 {
    font-family: "Merriweather", serif;
    color: #135b6d;
    font-weight: 700;
    font-size: 3em;
}
.contactUs_header2 {
    font-family: "Merriweather", serif;
    color: #135b6d;
    font-size: 1.2em;
}
.contact-info p {
    color: #135b6d;
    font-size: 1.2em;
    font-weight: 700;
}
.contactUs_formBorder {
    border: none !important;
    border-bottom: 2px solid #135b6d !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.contactUs_formBorder:focus {
    border-bottom: 3px solid #0d3f4e !important;
}
.contactUs_formBorder1 {
    border: 2px solid #135b6d !important;
    /* border-radius: 50px !important; */
    box-shadow: none !important;
}
.contactUs_formBorder1:focus {
    border: 3px solid #0d3f4e !important;
}
.contact-left {
    border-right: 5px solid #0d3f4e; /* Adjust thickness and color as needed */
    padding-right: 30px; /* Optional: adds space between border and content */
    margin-right: 15px; /* Optional: adds space between columns */
}

/* Input text style */
.form-control {
    font-weight: 700; /* Bold input text */
    color: #135b6d; /* Desired input text color */
}

/* Floating label style */
.form-floating > label {
    font-weight: 600; /* Semi-bold label */
    color: #135b6d; /* Match label color to input */
}

/* Optional: adjust label when floating (after focus or input) */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #0d3f4e; /* Slightly darker on focus (optional) */
}

.submit_btn {
    font-size: 1.2em !important;
    border-radius: 30px !important;
    border: 2px solid #d2a541 !important;
    background: linear-gradient(145deg, #faebb2, #fff9dc) !important;
    color: #3a2c00 !important;
    padding: 10px 60px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    animation: none;
    transition: none;
    cursor: pointer;
}
.submit_btn:hover {
    color: white !important;
    background: #135b6d !important;
}
/* Contact Us End */
/* Footer Start */
.footer_wrapper {
    position: relative;
    background-image: url("../img/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 75vh; /* changed from height: 75vh to min-height */
}

.footer_wrap {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.65);
    width: 100%;
    height: 100%;
    padding: 0px 100px;
}
.footer_container {
    /* padding-top: 100px; */
}
.footer_logo {
    width: 90%;
    height: auto;
}
.footer_title {
    color: #135b6d;
    font-weight: 800;
}
.footer_contact {
    width: 100%;
}
.footer_contact p {
    color: #135b6d;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer_contact strong {
    color: #135b6d;
}

.footer-nav a {
    position: relative;
    padding: 0 15px;
    flex: 1;
    text-align: center;
}

.footer-nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 2px;
    background-color: #000000;
    opacity: 1;
}
.footer-nav a {
    font-size: 1.5rem;
    color: #135b6d !important;
    font-weight: 800;
    text-decoration: underline 2px #135b6d;
    text-underline-offset: 5px;
}
.footer-nav a:hover {
    color: #ffffff !important;
    text-decoration: underline 3px #ffffff;
    transition: color 0.3s ease;
}
.footer_copyright p {
    font-size: 1.4rem;
    font-weight: 670;
    color: #135b6d !important;
}
/* Footer End */
/* Social icons */
.banner_icons {
    transition: transform 0.3s ease;
}
.banner_icons:hover {
    transform: scale(1.1);
}
/* Scroll To Top CSS Start */
/* Style for the button */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #217bf4;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
}

/* Style for the button when hovering over it */
#scrollToTop:hover {
    background-color: #241e5f;
}
