/* ---------- Color palette ---------- */
:root {
    --sand: #F4EDE2;
    --ocean: #0E86D4;
    --ocean-dark: #0B6EA6;
    --accent: #F3C26B;
    /* sand-gold accent */
    --text-dark: #0b2530;
}

html {
    scroll-behavior: smooth;
}

/* ---------- Global ---------- */
html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--text-dark);
    /* background:linear-gradient(180deg,var(--sand),#fff 60%); */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

.container-lg {
    max-width: 1500px;
}

/* Navbar styling */
.navbar {
    transition: background-color 0.4s ease;
    background: rgb(0 0 0 / 80%);
}

.bg-light {
    background-color: rgb(7 41 43) !important;
}

.navbar.scrolled {
    background-color: rgb(7 41 43);
    backdrop-filter: blur(6px);
}

.book-now-back,
.book-now-back:focus,
.book-now-back:active,
.book-now-back:visited {
    background-color: #c29c5b !important;
}

.book-now-back:hover {
    color: #FFFFFF !important;
    background-color: #07292b !important;
    border-color: #07292b !important;
}

.book-now-btn,
.book-now-btn:focus,
.book-now-btn:active,
.book-now-btn:visited {
    border-radius: 0;
    border-color: #c29c5b !important;
}

.book-now-btn:hover {
    background-color: #c29c5b;
    border-color: #c29c5b;
    color: #FFFFFF;
}

.sent-message-btn,
.sent-message-btn:focus,
.sent-message-btn:active,
.sent-message-btn:visited {
    border-radius: 0;
    border-color: #c29c5b !important;
    background-color: #c29c5b !important;
}

.sent-message-btn:hover {
    color: #FFFFFF !important;
    background-color: #07292b !important;
    border-color: #07292b !important;
}

.more-details-btn,
.more-details-btn:focus,
.more-details-btn:active,
.more-details-btn:visited {
    border-radius: 0;
    border-color: #c29c5b;
    color: #07292b;
    font-weight: 600;
}

.more-details-btn:hover {
    background-color: #07292b;
    border-color: #07292b;
    color: #FFFFFF;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Custom toggler */
.custom-toggler {
    border: none;
    background: transparent;
}

.custom-toggler:focus {
    outline: none;
    box-shadow: none;
}

.custom-toggler .navbar-toggler-icon {
    background-image: none;
    width: 25px;
    height: 2px;
    background-color: white;
    position: relative;
    transition: all 0.3s;
}

.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.custom-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.custom-toggler .navbar-toggler-icon::after {
    top: 8px;
}

.custom-toggler.collapsed .navbar-toggler-icon {
    background-color: transparent;
}

.custom-toggler.collapsed .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.custom-toggler.collapsed .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile menu styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgb(7 41 43);
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
    }

    .nav-link {
        text-align: center;
        padding: 10px 0;
        font-size: 1.1rem;
    }
}

/* ---------- Hero (video) ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6) saturate(1.05);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 55, 100, 0.25), rgba(5, 30, 55, 0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1rem;
    max-width: 980px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    margin-bottom: .5rem;
    letter-spacing: 0.6px;
}

.hero p.lead {
    font-size: 1.05rem;
    opacity: 0.95;
}

.btn-accent {
    background: linear-gradient(90deg, var(--ocean), var(--ocean-dark));
    border: 0;
    color: #fff;
    box-shadow: 0 6px 18px rgba(14, 134, 212, 0.25);
}

.card-img,
.card-img-top {
    border-radius: 0px !important;
}

.card {
    border-radius: 0px !important;
}

/* ---------- Section about us ---------- */
.section-details {
    padding-top: 4rem !important;
    padding-bottom: 3rem !important;
}

/* ---------- Section headings ---------- */
.section-title {
    font-weight: 700;
    color: #b48948;
    margin-bottom: .5rem;
}

.section-sub {
    color: #f6f0e4;
    margin-bottom: 1.5rem;
}

.section-sub-sc {
    color: #0b2530;
    margin-bottom: 1.5rem;
}

/* ---------- Amenities ---------- */
.amenity-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    gap: 1rem;
    align-items: center;
    height: 100%;
}

.amenity-card .bi {
    font-size: 1.6rem;
    color: var(--ocean);
    background: linear-gradient(180deg, rgba(14, 134, 212, 0.08), transparent);
    padding: 0.7rem;
    border-radius: 12px;
}

/* ---------- Rooms ---------- */
.room-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(10, 20, 30, 0.08);
}

.room-carousel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    background: linear-gradient(90deg, var(--ocean), var(--ocean-dark));
    color: white;
    padding: .45rem .6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
}

/* ---------- Gallery ---------- */
.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-grid img {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.img-modal-btn {
    cursor: pointer;
    color: #c29c5b !important;
    background: black;
    padding: 5px;
}

.bg-dark {
    background-color: #161616f0 !important;
}

.gallery-img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Modal image smooth transition */
.modal-img {
    max-height: 90vh;
    max-width: 90vw;
    transition: transform 0.5s ease, opacity 0.7s ease;
    cursor: pointer;
}

/* ---------- Testimonials ---------- */
.testimonial {
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

/* ---------- Booking form ---------- */
.booking-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #fff);
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(10, 20, 30, 0.06);
}

/* ---------- Footer ---------- */
footer {
    background: linear-gradient(180deg, #07292b, #07292b);
    color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 0;
}

.footer-title {
    color: #c29c5b;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width:768px) {
    .hero {
        min-height: 64vh;
    }

    .gallery-grid img {
        height: 160px;
    }
}

.modal-dialog-border {
    border-radius: 0 !important;
}

.room-main-img {
    height: 450px;
    object-fit: cover;
}


.room-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, border 0.2s;
}

.room-thumb:hover {
    transform: scale(1.05);
    border: 2px solid #c29c5b;
}

.active-thumb {
    border: 2px solid #c29c5b;
}

#rent-vehicle .card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#rent-vehicle .card:hover img {
    transform: scale(1.05);
}

.location-details-list {
    color: #f6f0e4;
}

.location-details-main {
    color: #f6f0e4;
}

.icon-text-color {
    color: #c29c5b;
}

.bg-contact {
    border: 1px solid #c29c5b;
}

.contact-form {
    border-radius: 0px;
}