@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Prata&display=swap');


:root {
    --blue: #176b87;
    --blue-dark: #082f3d;
    --blue-light: #72c8dd;
    --white: #ffffff;
    --cream: #f7f5ef;
    --text-dark: #16323d;
    --transition: 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
}


a {
    text-decoration: none;
}

/* NAVBAR*/
.navbar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.logo {
    width: 200px;
}

.nav-link {
    position: relative;
    color: #16323d;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: var(--blue-light);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #16323d !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 95%;
}

.flag {
    text-decoration: none !important;
}

.flag::after {
    background-color: white;
}

/* General */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.section-eyebrow span {
    width: 42px;
    height: 1px;
    background: var(--blue);
}

.section-eyebrow p {
    margin: 0;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.title {
    margin-bottom: 30px;
    color: var(--blue-dark);
    font-family: "Cinzel", serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.15;
}

.title em {
    color: var(--blue);
    font-style: normal;
}

/* BUTTON */
.book-now {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 15px 21px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all var(--transition);
}

.book-now i {
    font-size: 15px;
    transition: transform var(--transition);
}

.book-now:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.book-now:hover i {
    transform: translate(4px, -4px);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 16px 22px;
    background: var(--blue);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition);
}

.hero-btn i {
    font-size: 15px;
    transition: transform var(--transition);
}

.hero-btn:hover {
    background: var(--white);
    color: var(--blue-dark);
}

.hero-btn:hover i {
    transform: translateX(6px);
}

.section {
    padding: 100px 0;
    background: var(--cream);
}

/* HERO SECTION - CAROUSEL*/
.carousel-item {
    position: relative;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Override Bootstrap default */
    bottom: auto;
    right: auto;
    width: 70%;
    color: white;
}

.carousel-inner,
.carousel-item,
.carousel-inner img {
    height: 98vh;
    object-fit: cover;
    width: 100%;
}

.carousel-inner img {
    filter: brightness(0.5);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.hero-eyebrow span {
    display: block;
    width: 42px;
    height: 1px;
    background: var(--blue-light);
}

.hero-eyebrow p {
    margin: 0;
    color: var(--blue-light);
    font-weight: 600;
    letter-spacing: 4px;
}

.carousel-caption h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(58px, 7vw, 104px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--white);
}

.carousel-caption h1 em {
    color: var(--blue-light);
    font-style: normal;
    font-weight: 400;
}

.hero-description {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 62px;
    height: 62px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    transition: all 0.4s ease;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 17px;
    height: 17px;
    transition: transform 0.4s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--blue);
    border-color: var(--blue);
}


/* ABOUT US SECTION*/
.about-images {
    position: relative;
    min-height: 620px;
    padding: 0 70px 70px 0;
}

.about-image-main {
    width: 78%;
    height: 530px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-main:hover img {
    transform: scale(1.04);
}

.about-image-small {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 48%;
    height: 290px;
    overflow: hidden;
    border: 12px solid var(--cream);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-small:hover img {
    transform: scale(1.06);
}

/* EXPERIENCE BADGE */
.about-experience {
    position: absolute;
    left: 25px;
    bottom: 0;
    width: 150px;
    height: 150px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.about-experience span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.about-experience strong {
    font-family: "Prata", serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.about-experience small {
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* CONTENT */
.about-content {
    padding-left: 55px;
    max-width: 620px;
}

.about-intro {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-family: "Prata", serif;
    font-size: 18px;
    line-height: 1.7;
}

.about-text {
    margin-bottom: 35px;
    color: rgba(22, 50, 61, 0.72);
    font-size: 15px;
    line-height: 1.9;
}

/* FEATURES */
.about-features {
    display: flex;
    gap: 35px;
    margin-bottom: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(23, 107, 135, 0.18);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.about-feature i {
    color: var(--blue);
    font-size: 25px;
    line-height: 1;
}

.about-feature h4 {
    margin-bottom: 5px;
    color: var(--blue-dark);
    font-family: "Prata", serif;
    font-size: 16px;
    font-weight: 400;
}

.about-feature p {
    margin: 0;
    color: rgba(22, 50, 61, 0.62);
    font-size: 12px;
    line-height: 1.6;
}

/* Statistics */
.statistics {
    background:
        linear-gradient(rgba(0, 0, 0, 0.596), rgba(0, 0, 0, 0.548)),
        url('../image/img14.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 60vh;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.number {
    color: white;
    font-family: "Cinzel", serif;
    text-align: center;
    font-size: 4rem;
}

.name {
    color: white;
    text-align: center;
    font-size: 20px;
}

/* ROOMS SECTION */
.room-card {
    height: 100%;
    background: var(--white);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(8, 47, 61, 0.12);
}

.room-card:hover .room-image img {
    transform: scale(1.06);
}

/* ROOM CONTENT */

.room-content {
    padding: 28px 28px 30px;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.room-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(22, 50, 61, 0.58);
    font-size: 11px;
}

.room-meta i {
    color: var(--blue);
    font-size: 14px;
}

.room-content h3 {
    margin-bottom: 12px;
    color: var(--blue-dark);
    font-family: "Prata", serif;
    font-size: 25px;
    font-weight: 400;
}

.room-content p {
    color: rgba(22, 50, 61, 0.65);
    font-size: 13px;
    line-height: 1.8;
}

/* Facilities */
.facilities-intro {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(22, 50, 61, 0.65);
    font-size: 14px;
    line-height: 1.8;
}

.facilities-card {
    position: relative;
    height: 100%;
    min-height: 235px;
    padding: 38px 30px 32px;
    background: #ffffff;
    border: 1px solid rgba(23, 107, 135, 0.15);
    text-align: center;
    overflow: hidden;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.facilities-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.facilities-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23, 107, 135, 0.35);
    box-shadow: 0 18px 45px rgba(8, 47, 61, 0.12);
}

.facilities-card:hover::before {
    width: 70px;
}

.facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 107, 135, 0.08);
    border: 1px solid rgba(23, 107, 135, 0.12);
    border-radius: 50%;
    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.facility-icon i {
    color: var(--blue);
    font-size: 27px;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.facilities-card h4 {
    margin-bottom: 10px;
    color: var(--blue-dark);
    font-family: "Prata", serif;
    font-size: 19px;
    font-weight: 400;
}

.facilities-card p {
    max-width: 270px;
    margin: 0 auto;
    color: rgba(22, 50, 61, 0.58);
    font-size: 13px;
    line-height: 1.7;
}

.facility-line {
    display: block;
    width: 25px;
    height: 1px;
    margin: 22px auto 0;
    background: var(--blue-light);
    transition: width 0.4s ease;
}

.facilities-card:hover .facility-line {
    width: 50px;
}

/* Gallery */
.owl-gallery .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.owl-gallery .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    padding: 0 !important;
    background: rgba(23, 107, 135, 0.25) !important;
    border: none;
    transition: all 0.35s ease;
}

.owl-gallery .owl-dots .owl-dot:hover {
    background: var(--blue) !important;
}

.owl-gallery .owl-dots .owl-dot.active {
    width: 55px;
    background: var(--blue) !important;
}

.owl-gallery .owl-dots .owl-dot span {
    display: none;
}

/* TESTIMONIALS */

.testimonials-section {
    background: var(--white);
}

.testimonials-section .section-description {
    max-width: 650px;
}

.owl-testimonials {
    padding: 10px 10px 40px;
}

.testimonial-card {
    position: relative;
    background: var(--cream);
    padding: 45px 40px 40px;
    border: 1px solid rgba(8, 47, 61, 0.12);
    transition: all 0.35s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(8, 47, 61, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: #c49a4a;
    font-size: 14px;
}

.testimonial-quote {
    position: absolute;
    top: 35px;
    right: 35px;
}

.testimonial-quote i {
    color: rgba(23, 107, 135, 0.12);
    font-size: 55px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 35px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(8, 47, 61, 0.12);
    padding-top: 25px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Prata", serif;
    font-size: 18px;
    border-radius: 50%;
}

.testimonial-author h5 {
    margin: 0 0 3px;
    color: var(--blue-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: #777;
    font-size: 13px;
}

/* FOOTER */
.site-footer {
    background: var(--blue-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-widget h5 {
    position: relative;
    color: var(--white);
    font-family: "Prata", serif;
    font-size: 17px;
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.footer-widget h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--blue-light);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--blue-light);
    padding-left: 5px;
}

.contact-item a {
    color: inherit;
    padding: 20px 0;
}

.map-footer {
    width: 100%;
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.footer-bottom a {
    color: inherit;
}

.footer-bottom i {
    color: var(--blue-light);
    margin: 0 3px;
}

.logoo {
    display: inline-block;
    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;
}

/* Hero section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-section .section-eyebrow {
    margin-bottom: 20px;
}

.hero-section .section-eyebrow p {
    color: #fff;
}

.hero-section h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-family: "Cinzel", serif;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 25px;
    color: #fff;
}

.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.about-hero {
    background: url('../image/img20.jpg') center center / cover no-repeat;

}

.contact-hero {
    background: url('../image/img18.jpg') center center / cover no-repeat;
}

.gallery-hero {
    background: url('../image/img26.jpg') center center / cover no-repeat;
}

.rooms-hero {
    background: url('../image/img4.jpg') center center / cover no-repeat;
}

/* CONTACT SECTION */
.contact-section {
    background: #f8f7f4;
}

.contact-intro {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-icon i {
    color: #222;
}

.contact-item:hover .contact-icon {
    transform: translateY(-4px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-details span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

.contact-details a,
.contact-details p {
    margin: 0;
    color: #222;
    font-size: 17px;
    text-decoration: none;
    line-height: 1.5;
}

.contact-details a {
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #888;
}

.contact-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/*ROOMS PAGE*/
.room-page-content {
    padding: 20px 30px;
}

.room-page-content .section-eyebrow {
    margin-bottom: 20px;
}

.room-page-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.room-page-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.room-page-meta i {
    font-size: 17px;
}

.room-page-content p {
    color: #666;
}

.title2 {
    color: var(--blue-dark);
    font-family: "Cinzel", serif;
    font-size: 2.8 rem;
    font-weight: 500;
    line-height: 1.15;
}

@media(max-width:768px) {
    .nav-link {
        padding-left: 0px !important;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: fit-content;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .statistics {
        height: auto;
    }
}

@media(max-width:425px) {
    .carousel-control-next {
        right: 10px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .about-image-main {
        width: 100% !important;
    }

    .about-content {
        padding-left: 0;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }

}

@media (max-width: 320px) {
    .carousel-control-next {
        right: 2px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-caption h1 {
        font-size: 3rem;
    }

    .hero-description {
        line-height: 1.6;
    }

    .about-images {
        padding: 0 !important;
    }

    .room-page-meta {
        flex-wrap: wrap;
    }

    .room-page-content {
        padding: 20px 10px;
    }
    .contact-details a, .contact-details p{
        font-size:16px;
    }
}