:root {
    --navy: #1E1E45;
    --pink: #E899B5;
    --light-bg: #F9F9FB;
    --border: #EEEEEE;
    --text: #1E1E45;
    --text-muted: #555555;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    line-height: 1.8;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */

.top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    padding: 10px 0;
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar-contact a,
.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.92;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.top-bar-contact a:hover,
.top-bar-right a:hover {
    color: var(--pink);
    opacity: 1;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.7rem;
}

/* NAVIGATION */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    width: 100%;
    height: 110px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area img {
    width: auto;
    height: 95px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--pink);
}

.book-stay-btn {
    padding: 14px 26px;
    border-radius: 999px;
    background: #E78AB6;
    color: var(--white) !important;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 25px rgba(231, 138, 182, 0.28);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.book-stay-btn:hover {
    background: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(30, 30, 69, 0.22);
}

/* MOBILE MENU */

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--navy);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 20px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* FOOTER */

.site-footer {
    background: #141432;
    color: var(--white);
    padding: 70px 0 30px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-description {
    max-width: 820px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 32px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    line-height: 1;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    border-color: var(--pink);
    background: var(--pink);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 30px;
    margin-bottom: 34px;
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.78rem;
}

/* FLOATING CONTACT BUTTONS */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-contact a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease;
}

.floating-contact a:hover {
    transform: translateY(-4px) scale(1.05);
}

.book-now-btn {
    background: var(--pink);
    animation: pulseBook 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
    animation: pulseWhatsApp 2s infinite;
}

.call-btn {
    background: var(--navy);
    animation: pulseCall 2s infinite;
}

.floating-contact i {
    font-size: 1.45rem;
}

.floating-contact a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--navy);
    color: var(--white);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-contact a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseBook {
    0% { box-shadow: 0 0 0 0 rgba(232, 153, 181, 0.45); }
    70% { box-shadow: 0 0 0 14px rgba(232, 153, 181, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 153, 181, 0); }
}

@keyframes pulseWhatsApp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(30, 30, 69, 0.4); }
    70% { box-shadow: 0 0 0 14px rgba(30, 30, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(30, 30, 69, 0); }
}

@media (max-width: 900px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .top-bar {
        padding: 9px 0;
        font-size: 0.68rem;
        text-align: center;
    }

    .top-bar-container {
        justify-content: center;
    }

    .top-bar-contact {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-right {
        display: none;
    }

    .site-nav {
        height: 82px;
    }

    .logo-area img {
        height: 68px;
        max-width: 180px;
        object-fit: contain;
    }

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1001;
        display: flex;
        width: min(86vw, 360px);
        height: 100dvh;
        padding: 115px 24px 35px;
        background: var(--white);
        box-shadow: -12px 0 35px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        overflow-y: auto;
        transition: right 0.35s ease;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 48px;
        padding: 13px 14px;
        border-bottom: 1px solid #ECECF2;
        font-size: 0.86rem;
    }

    .nav-menu .book-stay-btn {
        justify-content: center;
        min-height: 50px;
        margin-top: 14px;
        padding: 15px 18px;
        border-bottom: 0;
    }

    .floating-contact {
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }

    .floating-contact i {
        font-size: 1.2rem;
    }

    .floating-contact a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .site-nav {
        height: 76px;
    }

    .logo-area img {
        height: 62px;
        max-width: 155px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer-description {
        font-size: 0.82rem;
    }
}