@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,600&family=Poppins:wght@300;400;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.navbar a,
.dropbtn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0;
    appearance: none;
}

.navbar a:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-left a {
    margin-right: 30px;
}


.dropbtn {
    margin-left: 10px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    min-width: 120px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: #333;
    font-size: 18px;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero .bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.30));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-content {
    z-index: 2;
}

.main-title {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    line-height: 1.2;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.45);
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sub-title {
    font-size: 1.3rem;
    letter-spacing: 0.7px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
    margin-bottom: 35px;
}


.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 34px;
    border-radius: 36px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


.primary {
    background: linear-gradient(135deg, #FF6B6B, #FF8E72);
    color: white;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transition: 0.3s ease;
}

.primary:hover {
    background: linear-gradient(135deg, #FF8E72, #FF6B6B);
    transform: translateY(-4px);
}

.secondary {
    background: rgba(255, 240, 235, 0.5);
    backdrop-filter: blur(10px);
    color: #A64B4B;
    padding: 12px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 240, 235, 0.8);
    transition: 0.3s ease;
}

.secondary:hover {
    background: rgba(255, 240, 235, 0.9);
    transform: translateY(-4px);
}


.fade-in {
    opacity: 0;
    animation: fade 1.7s forwards ease;
}

@keyframes fade {
    to {
        opacity: 1;
    }
}





.about-section {
    padding: 70px 40px;
    text-align: center;
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: 2.0rem;
    font-style: italic;
    color: #000;
    margin-bottom: 10px;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: #d9d9d9;
    margin: 0 auto 50px auto;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    max-width: 1500px;
    width: 100%;
    margin: auto;
}

.about-image img {
    width: 560px;
    border-radius: 5px;
    object-fit: cover;
}

.about-text {
    max-width: 750px;
    text-align: left;
}

.about-text h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 2.1;
    color: #333;
    letter-spacing: 0.3px;
}





.rooms-section {
    padding: 70px 30px;
    text-align: center;
    background: #fff;
}

.room-divider {
    width: 60px;
    height: 2px;
    background: #d9d9d9;
    margin: 0 auto 50px auto;
}


.rooms-title {
    font-family: "Playfair Display", serif;
    font-size: 2.0rem;
    font-style: italic;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: 1px;
}


.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
}

.room-card {
    background: linear-gradient(90deg, #c62828, #e53935);
    color: white;
    padding: 18px;
    border-radius: 40px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.35);
    transition: 0.35s ease;
}

.room-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 45px rgba(198, 40, 40, 0.55);
    filter: brightness(1.1);
}


.testimonial-section {
    padding: 100px 40px;
    text-align: center;
    background: center/cover no-repeat;
    color: white;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: white;
    color: black;
    width: 350px;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.t-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    margin: 15px 0;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.2rem;
    padding: 0;
    cursor: pointer;
    color: black;
    z-index: 20;
}

.left-btn {
    left: 10px;
}

.right-btn {
    right: 10px;
}

.carousel-btn:hover {
    background: white;
}

.happy-title {
    font-family: "Playfair Display", serif;
    font-size: 3.8rem;
    font-style: italic;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: 0.3s;
}

.testimonial-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

.site-footer {
    background: #000;
    color: #e6e6e6;
    text-align: center;
    padding: 55px 20px;
    font-family: "Poppins", sans-serif;
}


.footer-top {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.8px;
}

.footer-divider {
    width: 85%;
    height: 1px;
    background: #444;
    margin: 0 auto 40px auto;
}


.footer-links {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 15px;
}

.footer-links a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #e63146;
    
}


.footer-divider {
    width: 80%;
    height: 1px;
    background: #333;
    margin: 25px auto;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.1s linear;
    will-change: transform;
    z-index: -1;
}


.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}


.scroll-indicator {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.95;
    animation: fadeIn 2s ease forwards 1.2s;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}


.scroll-arrow {
    font-size: 1.6rem;
    margin-top: 10px;
    animation: bounce 1.5s infinite ease-in-out;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.95;
    }
}


.nav-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    margin-right: 25px;
}




.navbar {
    padding: 10px 50px !important;
    height: 80px;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar {
    height: 72px !important;
    padding: 0 40px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}





.nav-left a,
.nav-right a {
    font-size: 16px !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 45px;
}


.hamburger {
    font-size: 28px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
}


.hamburger-panel {
    display: none;
    position: absolute;
    top: 110px;
    left: 150px;
    background: #0f0f0f;
    width: 280px;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    z-index: 999;
}


.hamburger-panel a {
    display: block;
    padding: 16px 30px;
    color: #dcdcdc;
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hamburger-panel a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}


.hamburger.active+.hamburger-panel {
    display: block;
}


.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 15, 25, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    transition: right 0.5s ease;
    z-index: 2000;
}

.fullscreen-menu.open {
    right: 0;
}


.close-menu {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 42px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s ease;
}

.close-menu:hover {
    opacity: 1;
}


.menu-logo img {
    width: 120px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeSlide 0.7s forwards 0.2s;
}


.menu-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.menu-links a {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-style: italic;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 0.6s forwards;
}

.menu-links a:nth-child(1) {
    animation-delay: 0.3s;
}

.menu-links a:nth-child(2) {
    animation-delay: 0.4s;
}

.menu-links a:nth-child(3) {
    animation-delay: 0.5s;
}

.menu-links a:nth-child(4) {
    animation-delay: 0.6s;
}

.menu-links a:nth-child(5) {
    animation-delay: 0.7s;
}

.menu-links a:nth-child(6) {
    animation-delay: 0.8s;
}

.menu-links a:nth-child(7) {
    animation-delay: 0.9s;
}

.menu-links a:hover {
    color: #ffdfdf;
    transform: translateY(-3px);
    transition: 0.3s;
}


@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.rooms-title {
    color: #000 !important;
}


.faq-section {
    padding: 120px 40px 80px;
    text-align: center;
}

.faq-title {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-style: italic;
    color: #000;
    margin-bottom: 10px;
}

.faq-divider {
    width: 60px;
    height: 2px;
    background: #ddd;
    margin: 0 auto 40px auto;
}

.faq-subtext {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.faq-email {
    color: #c62828;
    text-decoration: none;
    font-weight: 600;
}

.faq-container {
    max-width: 1000px;
    margin: auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    font-size: 1.5rem;
    background: none;
    border: none;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    display: none;
    font-size: 1.1rem;
    padding: 15px 5px 5px;
    color: #444;
}

.faq-answer.show {
    display: block;
}

.faq-question span {
    font-size: 1.4rem;
    transition: 0.3s;
}

.faq-question.open span {
    transform: rotate(180deg);
}


.faq-answer p {
    margin: 8px 0 12px 0;
    font-size: 1.1rem;
    line-height: 1.9;
}

.faq-answer ul {
    margin: 10px 0 0 25px;
    padding-left: 0;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.terms-section {
    padding: 120px 40px 80px;
    max-width: 1000px;
    margin: auto;
}

.terms-title {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-style: italic;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.terms-container ul {
    margin-top: 30px;
    padding-left: 30px;
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
}

.terms-container li {
    margin-bottom: 20px;
}


.terms-container li ol {
    margin-left: 40px;
    padding-left: 25px;
}

.terms-container li ol li {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 12px;
}

.terms-container p {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-top: 40px;
}


.privacy-section {
    padding: 120px 40px 80px;
    max-width: 950px;
    margin: auto;
}

.privacy-title {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-style: italic;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
}

.privacy-container {
    margin-top: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.privacy-container h3 {
    font-size: 1.35rem;
    margin-top: 28px;
    margin-bottom: 8px;
    color: #111;
}

.privacy-container ul {
    padding-left: 40px;
    margin-bottom: 25px;
}

.privacy-container li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.privacy-container a {
    color: #c62828;
    text-decoration: none;
    font-weight: 600;
}

.privacy-container a:hover {
    text-decoration: underline;
}


.refund-section .terms-container {
    max-width: 950px;
    margin: auto;
    padding: 10px 20px;
}

.refund-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 10px;
    color: #000;
}

.refund-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.refund-section ul {
    padding-left: 40px;
    margin-bottom: 25px;
}

.refund-section ul li {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 14px;
}


.contact-section {
    padding: 120px 40px 80px;
    max-width: 1500px;
    margin: auto;
}

.contact-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-style: italic;
    color: #000;
    text-align: left;
}

.contact-container {
    margin-top: 40px;
    display: flex;
    gap: 60px;
}

.contact-left {
    width: 50%;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.contact-left h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.contact-left h3 {
    font-size: 1.45rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.wa-btn {
    display: inline-block;
    background: #115E3D;
    color: white;
    padding: 14px 28px;
    margin: 25px 0;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
}

.contact-left .email a {
    color: #c62828;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-map {
    width: 50%;
}


.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e53935;
    color: white;
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
    transition: 0.25s ease-in-out;
}

.directions-btn:hover {
    background: #c62828;
    transform: translateY(-3px);
}

.nav-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-section .faq-divider {
    width: 60px;
    height: 2px;
    background: #ddd;
    margin: 15px 0 40px 0;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #115E3D;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
}

.wa-btn:hover {
    background: #0d4a2f;
}

.wa-icon {
    width: 28px;
    height: 28px;
}

.hours-container {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
}

.hours-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-size: 1.1rem;
}

.hours-toggle .arrow {
    font-size: 1rem;
    color: #c62828;
    transition: 0.3s;
}

.hours-toggle.open .arrow {
    transform: rotate(180deg);
}

.hours-dropdown {
    max-height: 0;
    overflow: hidden;
    margin-left: 5px;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    opacity: 0;
}

.hours-dropdown.open {
    max-height: 500px;
    opacity: 1;
}

.day-row {
    display: grid;
    grid-template-columns: 60px auto;
    padding: 6px 0;
    font-size: 1.1rem;
    align-items: center;
}

.day-row span {
    color: #555;
}


.day-row.active {
    font-weight: 700;
    color: #000;
}

.btn,
button,
.room-card,
.wa-btn,
.directions-btn,
.carousel-btn {
    cursor: pointer;
}


.rooms-fullpage {
    padding: 40px 50px;
}

.gallery-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    text-align: center;
    font-style: italic;
    width: 100%;
    margin-bottom: 18px;
    color: #000;
}

.room-gallery {
    margin-bottom: 120px;
}


.rooms-header-clean {
    padding-top: 120px;
    text-align: center;
    padding-bottom: 20px;
}

.rooms-header-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-style: italic;
    color: #000;
}

.rooms-header-sub {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #444;
}

.room-card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
}



.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}


.carousel-indicators {
    position: absolute;
    bottom: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: 0.3s;
}

.carousel-indicators .dot.active {
    background: #fff;
    transform: scale(1.2);
}


.carousel {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 430px;
    margin: 30px auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    height: 100%;
    transition: transform 0.5s ease;
    box-sizing: content-box;
    justify-content: flex-start;
}

.carousel-track img {
    width: 300px;   
    object-fit: cover;
    border-radius: 16px;
    transform-origin: center center;
    opacity: 0.4;
    flex-shrink: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}



.carousel-track img.active {
    opacity: 1;
    transform: scale(1.12);
    max-width: 440px;   
}



.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}


.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1.2s ease forwards;
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elfsight-app-44745d69-7d8a-4e65-bd4e-9523663af8e2 {
    max-width: 1400px; 
    margin: auto;
}



@media (max-width: 768px) {

  
    body {
        overflow-x: hidden;
    }

    section {
        padding: 50px 20px !important;
    }

   


    .fullscreen-menu {
        padding-top: 90px !important;
    }

    .menu-links a {
        font-size: 1.9rem !important;
        letter-spacing: 1px;
    }

    .close-menu {
        top: 25px;
        right: 30px;
        font-size: 32px;
    }

 
@media (max-width: 768px) {

  

 
    .about-section {
        padding: 50px 20px !important;
    }

    .about-title {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
    }

    .about-divider {
        margin: 0 auto 20px auto !important;
    }

    .about-image img {
        width: 100% !important;
        height: 260px !important;   
        object-fit: cover !important;
        border-radius: 6px;
    }

    .about-text h3 {
        font-size: 1.3rem !important;
    }

    .about-text p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

  
    body {
        padding-top: 0 !important;
    }
}

    

  
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .about-title {
        font-size: 2.4rem !important;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

   
    .rooms-title {
        font-size: 2.2rem !important;
    }

    .room-card {
        font-size: 1.05rem;
        padding: 14px;
        border-radius: 32px;
    }

  
    .carousel {
        height: 260px !important;
        width: 100% !important;
        margin: 25px auto !important;
        overflow: hidden !important;
    }

    .carousel-track {
        gap: 10px !important;
    }

    .carousel-track img {
        max-width: 160px !important;
        opacity: 0.6 !important;
    }

    .carousel-track img.active {
        transform: scale(1.07) !important;
        opacity: 1 !important;
    }

    .carousel-btn {
        font-size: 1rem !important;
        padding: 6px 10px !important;
        top: 45%;
    }

    .carousel-btn.prev { left: 0; }
    .carousel-btn.next { right: 0; }

 
    .faq-title {
        font-size: 2.3rem !important;
    }

    .faq-question {
        font-size: 1.2rem !important;
    }

    .faq-answer {
        font-size: 1rem !important;
        line-height: 1.5;
    }

 
    .contact-title {
        text-align: center !important;
        font-size: 2.4rem !important;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-left,
    .contact-map {
        width: 100% !important;
    }

    .wa-btn, .directions-btn {
        font-size: 1rem !important;
        padding: 14px 20px !important;
        border-radius: 40px;
    }


    .terms-title,
    .privacy-title {
        font-size: 2.4rem !important;
    }

    .terms-container li,
    .privacy-container p,
    .privacy-container li {
        font-size: 1.02rem !important;
        line-height: 1.6 !important;
    }

   
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 1rem !important;
    }

    .footer-top {
        font-size: 1rem !important;
    }
}


@media (max-width: 768px) {

 
    .navbar {
        height: 65px !important;
        padding: 0 15px !important;
        justify-content: space-between !important;
    }


    .nav-logo {
        height: 55px !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }


    .nav-left a,
    .nav-right a {
        display: none !important;
    }

 
    .hamburger {
        display: block !important;
        font-size: 28px;
        z-index: 2000;
    }

  
    .hero-content {
        top: 48% !important;
        transform: translate(-50%, -50%);
        width: 90%;
    }


    .main-title {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
    }

    .sub-title {
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
    }

 
    .btn,
    .primary,
    .secondary {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }


    .scroll-indicator span {
        font-size: 1.1rem !important;
    }
}



@media (max-width: 768px) {

 
    .room-gallery,
    .contact-section,
    .faq-section,
    .terms-section,
    .privacy-section,
    .refund-section {
        padding-top: 120px !important;
    }

 
    .rooms-title,
    .contact-title,
    .faq-title,
    .terms-title,
    .privacy-title {
        margin-top: 50px !important;
    }
}


@media (max-width: 768px) {

    .contact-section .faq-divider {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}



@media (max-width: 768px) {
    .rooms-header-clean {
        padding-top: 90px !important;  
        padding-bottom: 10px !important;
    }

    .rooms-header-title {
        font-size: 2.4rem !important;
        margin-top: 10px !important;
    }

    .room-divider {
        margin: 15px auto !important;
    }

    .rooms-header-sub {
        font-size: 1rem !important;
        margin-top: 0 !important;
    }


    .rooms-fullpage {
        padding-top: 10px !important;
    }
}


@media (max-width: 768px) {
    .room-gallery {
        margin-top: 20px !important;
        margin-bottom: 60px !important;
    }

    .gallery-title {
        font-size: 1.9rem !important;
        margin-bottom: 15px !important;
    }
}



@media (max-width: 768px) {

    .terms-container ul {
        padding-left: 20px !important;
    }

    .terms-container li {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
    }

  
    .terms-container li ol {
        margin-top: 12px !important;
        margin-left: 18px !important;
        padding-left: 18px !important;
    }

    .terms-container li ol li {
        font-size: 1.02rem !important;
        line-height: 1.6 !important;
        margin-bottom: 10px !important;
        text-indent: 0 !important;
        padding-left: 5px !important;
    }
}



@media (max-width: 768px) {

 
    .menu-logo img {
        width: 110px !important;
        margin-bottom: 10px !important;
    }

 
    .menu-links {
        gap: 12px !important;
    }

   
    .menu-links a {
        font-size: 1.55rem !important;  
        letter-spacing: 1px !important;
    }


    .fullscreen-menu {
        padding-top: 70px !important; 
    }

 
    .close-menu {
        font-size: 28px !important;
        top: 18px !important;
        right: 22px !important;
    }
}



@media (max-width: 768px) {

    .faq-question {
        font-size: 1.1rem !important;  
    }

    .faq-question span {
        font-size: 1.1rem !important;
    }

    .faq-answer {
        font-size: 0.95rem !important;   
        line-height: 1.45 !important;
    }

    .faq-answer p {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
    }

    .faq-answer ul {
        margin-left: 18px !important; 
    }

    .faq-answer li {
        font-size: 0.95rem !important;   
        line-height: 1.45 !important;
    }
}


@media (max-width: 768px) {

    .terms-container ul {
        padding-left: 18px !important;
    }

    .terms-container li {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .terms-container li ol li {
        font-size: 0.9rem !important;
        line-height: 1.45 !important;
        margin-bottom: 8px !important;
    }

    .terms-container p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-top: 20px !important;
    }
}


@media (max-width: 768px) {
    .privacy-container h3 {
        font-size: 1.15rem !important;
        margin-top: 25px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }
}



@media (max-width: 768px) {

 
    .contact-left {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }


    .contact-left h2 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }


    .contact-left h3 {
        font-size: 1.1rem !important;
        margin-top: 20px !important;
        margin-bottom: 8px !important;
    }


    .contact-left p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }


    .contact-left p br {
        line-height: 1 !important;
    }

  
    .wa-btn {
        font-size: 0.95rem !important;
        padding: 12px 20px !important;
        border-radius: 35px !important;
    }

    .directions-btn {
        font-size: 0.95rem !important;
        padding: 12px 20px !important;
        border-radius: 35px !important;
    }


    .hours-toggle,
    .day-row,
    .email {
        font-size: 0.95rem !important;
    }

    .day-row span {
        font-size: 0.95rem !important;
    }
}


@media (max-width: 768px) {

   
    .refund-section h3 {
        font-size: 1.15rem !important;
        line-height: 1.3 !important;
        margin-top: 25px !important;
        margin-bottom: 10px !important;
    }


    .refund-section ul li {
        font-size: 0.95rem !important;
        line-height: 1.45 !important;
    }


    .refund-section p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
}


@media (max-width: 768px) {
    .contact-left .email a {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        display: inline-block;
    }
}


@media (max-width: 768px) {
    .rooms-header-sub {
        margin-bottom: 20px !important;  
    }
}



.site-footer {
    padding: 45px 20px !important;   
}

.footer-top {
    font-size: 1.1rem !important;    
    margin-bottom: 20px !important; 
}

.footer-divider {
    margin: 15px auto !important;   
}

.footer-links {
    gap: 25px !important;       
}

.footer-links a {
    font-size: 1rem !important;   
    letter-spacing: 1px !important;  
}


@media (max-width: 768px) {

    .carousel {
        height: 260px;
        overflow: hidden;
    }

    .carousel-track {
        gap: 10px;
        will-change: transform;
        transition: transform 0.28s cubic-bezier(0.25, 0.9, 0.3, 1);
    }

    .carousel-track img {
        width: 160px;
        flex-shrink: 0;
        opacity: 0.6;
        will-change: transform, opacity;
        transition: transform 0.28s cubic-bezier(0.25, 0.9, 0.3, 1),
                    opacity 0.2s linear;
    }

    .carousel-track img.active {
        transform: scale(1.07);
        opacity: 1;
    }
}
