:root {
    --primary: #689d8d;
    --primary-dark: #4f8173;
    --dark: #0b1d26;
    --dark-2: #102831;
    --cream: #f7f5ef;
    --white: #ffffff;
    --text: #667477;
    --light: #eef2ef;
    --border: #dce4e1;
    --gold: #c9a96e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}


a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button,
a {
    transition: all 0.3s ease;
}


/* NAVBAR */

.navbar {
    padding: 15px 0;
    background: rgba(11, 29, 38, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
z-index: 1030;
}


.logo {
    width: 85px;
    height: auto;
}

.navbar-nav {
    gap: 4px;
}

.nav-link,
.dropdown-toggle {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 14px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 28px);
}

.nav-link:hover,
.nav-link.active {
    color: #a9c8bd !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-book {
    margin-left: 15px;
}


/* BUTTONS */

.book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff !important;
    padding: 13px 26px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.book-now:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(104, 157, 141, 0.25);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border: 1px solid var(--dark);
    color: var(--dark);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.outline-btn:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

.outline-btn i {
    transition: transform 0.3s ease;
}

.outline-btn:hover i {
    transform: translateX(5px);
}

/* HERO*/
.hero {
    position: relative;
    min-height: 90vh;
    background:
        url('image/Photo (19).JPG') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7, 23, 31, 0.94) 0%,
            rgba(7, 23, 31, 0.78) 38%,
            rgba(7, 23, 31, 0.20) 75%,
            rgba(7, 23, 31, 0.05) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 620px;
    color: #fff;
    padding-top: 70px;
}

.subtitle,
.section-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero .subtitle {
    color: #a8c3bb;
}

.title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 25px;
    color: #fff;
}

.title span {
    color: #a7c5bb;
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 25px;
}

.description {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.8;
    color: #d5dfdc;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-secondary {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding-bottom: 5px;
}

.btn-secondary:hover {
    color: #a9c8bd;
    border-color: var(--primary);
}


/* GENERAL SECTIONS */

.section-padding {
    padding: 110px 0;
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--dark);
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-line {
    width: 45px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 22px;
}

.section-heading p {
    max-width: 600px;
    line-height: 1.8;
    color: var(--text);
}

.center-heading {
    text-align: center;
}

.center-heading .section-line {
    margin-left: auto;
    margin-right: auto;
}


/* ABOUT */

.about-section {
    background: #fff;
}

.about-images {
    position: relative;
    min-height: 560px;
    padding: 0 70px 70px 0;
}

.about-main-image {
    width: 85%;
    height: 500px;
    overflow: hidden;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

.about-small-image {
    position: absolute;
    width: 230px;
    height: 260px;
    right: 0;
    bottom: 0;
    border: 10px solid #fff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    left: -20px;
    bottom: 50px;
    width: 130px;
    height: 130px;
    background: var(--dark);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #fff;
}

.experience-badge strong {
    font-family: Georgia, serif;
    font-size: 28px;
    color: var(--primary);
}

.experience-badge span {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-section .section-heading h2 {
    max-width: 500px;
}

.about-section p {
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
}

.about-features i {
    color: var(--primary);
}

/*   FACILITIES */

.facilities-section {
    background: var(--cream);
}

.facility-card {
    height: 100%;
    text-align: center;
    padding: 45px 25px;
    background: #fff;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: rgba(104, 157, 141, 0.3);
    box-shadow: 0 20px 50px rgba(11, 29, 38, 0.08);
}

.facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf4f1;
    color: var(--primary);
    border-radius: 50%;
    font-size: 27px;
    transition: all 0.4s ease;
}

.facility-card:hover .facility-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}

.facility-card h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
}

.facility-card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/*  ROOMS */

.rooms-section {
    background: #fff;
}

.room-card {
    background: #fff;
    height: 100%;
    box-shadow: 0 8px 35px rgba(11, 29, 38, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 29, 38, 0.14);
}

.room-image {
    position: relative;
    /* height: 300px; */
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-label {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 13px;
    background: var(--dark);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 38, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-view {
    padding: 12px 20px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-view:hover {
    background: #fff;
    color: var(--dark);
}

.room-content {
    padding: 28px;
}

.room-content h3 {
    font-family: Georgia, serif;
    color: var(--dark);
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 12px;
}

.room-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.room-bottom {
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.room-bottom span {
    color: #777;
    font-size: 14px;
}

.room-bottom i {
    color: var(--primary);
}

.room-bottom a {
    color: var(--dark);
    font-weight: 600;
}

.room-bottom a:hover {
    color: var(--primary);
}


/* CTA */

.cta-section {
    position: relative;
    padding: 120px 0;
    background:
        url('image/Photo (80).JPG') center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 38, 0.78);
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 750px;
    margin: auto;
}

.cta-content h2 {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: clamp(35px, 5vw, 55px);
    margin-bottom: 20px;
}

.cta-content p {
    color: #d5dfdc;
    line-height: 1.8;
    margin-bottom: 30px;
}


/*  TESTIMONIALS */

.testimonial-section {
    background: #fff;
}

.testimonial-card {
    position: relative;
    background: var(--cream);
    padding: 45px;
    min-height: 350px;
    margin: 10px;
    border: 1px solid #e8ecea;
}

.quote-icon {
    position: absolute;
    right: 35px;
    top: 30px;
    color: rgba(104, 157, 141, 0.15);
    font-size: 70px;
}

.stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.testimonial-card>p {
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: #46565a;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 15px;
    color: var(--dark);
    margin: 0 0 4px;
}

.testimonial-author span {
    font-size: 12px;
    color: #888;
}

.owl-nav {
    text-align: center;
    margin-top: 25px;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border) !important;
    color: var(--dark) !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-dot span {
    background: #ccd7d3 !important;
    transition: all 0.3s ease;
}

.owl-dot.active span,
.owl-dot:hover span {
    background: var(--primary) !important;
}

/* FOOTER */

.footer {
    background: #07151c;
    color: #9caeb1;
    padding: 80px 0 0;
}

.footer-logo {
    width: 120px;
    margin-bottom: 25px;
}

.footer-description {
    max-width: 330px;
    line-height: 1.8;
    font-size: 14px;
}

.footer h4 {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9caeb1;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    font-size: 17px;
}

.footer p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid #1d3037;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
    color: #718488;
}

.map {
    width: 100%;

}

.logo1 {
    width: 120px;
}

/*  ANIMATIONS */

.fadeinleft {
    opacity: 0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright {
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown {
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fadeinup {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.2s ease-out;
}

.fade-in {
    opacity: 0;
    transition: all 1.3s ease-in;
}

.active-left,
.active,
.active-right,
.active-down,
.active-up {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
}

.fadein {
    opacity: 0;
}


/* CONTACT */

.contact-info {
    margin-top: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child {
    border-top: 1px solid var(--border);
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf4f1;
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-info-item span {
    display: block;
    margin-bottom: 5px;
    color: #899597;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
    margin: 0;

    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-map {
    width: 100%;
    height: 650px;
}

/* CONTACT RESPONSIVE */
@media (max-width: 768px) {

    .contact-section {
        padding: 75px 0;
    }

    .contact-info-item {
        padding: 18px 0;
    }

    .room-bottom {
        font-size: 12px;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }

    .contact-map {
        height: 400px;
    }
}

/* Hero Section General */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7, 23, 31, 0.90) 0%,
            rgba(7, 23, 31, 0.68) 45%,
            rgba(7, 23, 31, 0.25) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .subtitle {
    color: #a8c3bb;
    margin-bottom: 18px;
}

.page-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 25px;
}

.page-hero-title span {
    color: #a7c5bb;
}

.page-hero .divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 25px;
}

.breadcrumb a,
.breadcrumb .active,
.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 65vh;
    background:
        url('image/Photo (2).JPG') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 65vh;
    background:
        url('image/Photo (66).JPG') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    min-height: 65vh;
    background:
        url('image/Photo (40).JPG') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Rooms Hero Section */
.rooms-hero {
    position: relative;
    min-height: 65vh;
    background:
        url('image/Photo (53).JPG') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* hero Section Responsive */
@media (max-width: 767px) {
    .page-hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(7, 23, 31, 0.90),
                rgba(7, 23, 31, 0.60));
    }

    .page-hero-content {
        padding-top: 60px;
    }

    .page-hero-title {
        font-size: 45px;
    }

    .page-hero-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 39px;
    }

    .first {
        order: 0;
    }
}

/*  RESPONSIVE */
@media (max-width: 1199px) {
    .navbar-book {
        margin-left: 8px;
    }

    .about-images {
        min-height: 500px;
    }

    .about-main-image {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding-top: 50px;
    }

    .about-images {
        margin-bottom: 30px;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 75px 0;
    }

    .hero {
        min-height: 750px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(7, 23, 31, 0.88),
                rgba(7, 23, 31, 0.55));
    }

    .hero-content {
        padding-top: 70px;
    }

    .title {
        font-size: 45px;
    }

    .description {
        font-size: 14px;
    }

    .buttons {
        gap: 20px;
    }
.about-images {
        min-height: 400px;
        padding-right: 35px;
    }

    .about-main-image {
        height: 380px;
        width: 90%;
    }

    .about-small-image {
        width: 150px;
        height: 180px;
    } 

    .experience-badge {
        width: 100px;
        height: 100px;
        left: -5px;
        bottom: 30px;
    }

    .experience-badge strong {
        font-size: 22px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
        min-height: auto;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}


@media (max-width: 480px) {
    .hero {
        min-height: 700px;
    }

    .title {
        font-size: 39px;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

}

