@import "https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@100..900&display=swap";

:root {
    --bg-black: #000000;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, .4);
    --accent-yellow: rgba(159, 159, 159);
    --border-color: rgba(240, 240, 240, .2);
    --margin-x: 20px;
    --header-height: 80px;
    font-family: Geist, sans-serif;
    line-height: normal
}

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

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    color: #fff
}

#root {
    width: 100%;
    height: 100%
}

.main-layout {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    will-change: contents
}

/* --- HEADER --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 80px;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    pointer-events: none
}

.header>* {
    pointer-events: auto
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    pointer-events: auto
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.location {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-family: Geist Mono,monospace;
    font-weight: 500;
    font-size: 14px;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: .05em;
    pointer-events: auto
}

.header-cta {
    position: relative;
    width: 180px;
    height: 40px;
    cursor: pointer;
    transition: transform .2s ease-out;
    transform-origin: right top;
    pointer-events: auto
}

.header-cta:hover {
    transform: scale(1.1) rotate(2deg)
}

.union-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 88px;
    pointer-events: none
}

.cta-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 10
}

.cta-text {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -.3px;
    white-space: nowrap
}

.cta-arrow {
    position: absolute;
    top: 60px;
    right: 42px;
    width: 16px;
    height: 16px;
    color: #000
}

/* --- HERO DISPLAY & IMAGE FRAMING --- */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 120px); 
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    height: 55vh;
    aspect-ratio: 4/5;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    min-height: 200px;
    background-color: #000;
    overflow: hidden;
    flex-shrink: 0
}

.hero-layer {
    position: absolute;
    pointer-events: none;
}

.layer-lines {
    z-index: 1;
    top: 75px;
    left: 130px;
    width: 37%;
    height: 37%;
    object-fit: cover;
    opacity: 0.7;
}

.layer-circle-bg {
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 80%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    animation: rotateCenterClockwise 35s linear infinite;
    opacity: 0.5;
}

.layer-dragon {
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    object-fit: contain;
}

/* Star Base Definitions */
.layer-star {
    z-index: 4;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    animation: rotateSelfClockwise 12s linear infinite;
}

.star-left {
    width: 7%;
    top: 18%;
    left: 35%;
    animation-duration: 16s; /* Unique speeds prevent uniform robotic spinning */
}

.star-center {
    width: 10%;
    top: 30%;
    left: 72%;
    animation-duration: 10s;
}

.star-right {
    width: 9%;
    top: 52%;
    left: 60%;
    animation-duration: 17s;
}

.footer-content {
    position: absolute;
    left: 1.04vw;
    bottom: 1.04vw;
    display: flex;
    flex-direction: column;
    gap: .83vw;
    width: 40.3vw;
    z-index: 50
}

.footer-text {
    font-weight: 500;
    font-size: 1.67vw;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -.06vw;
    color: #e0e0e0
}

.booking-badge {
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .42vw;
    padding: .57vw .63vw;
    font-size: .83vw;
    color: rgb(159, 159, 159);
    text-transform: uppercase;
    letter-spacing: -.03vw;
    width: fit-content;
    font-family: Geist Mono,monospace
}

.socials-right {
    position: absolute;
    right: 1.04vw;
    bottom: 1.04vw;
    display: flex;
    flex-direction: column;
    gap: .42vw;
    align-items: flex-end;
    text-align: right
}

.social-link-right {
    font-weight: 600;
    font-size: .83vw;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: -.03vw;
    text-decoration: none;
    transition: color .2s
}

.social-link-right:hover {
    color: rgba(159, 159, 159)
}

.desktop-only {
    display: flex
}

.mobile-socials,.mobile-cta-btn {
    display: none
}

/* --- ANIMATIONS TIMELINES --- */
@keyframes rotateCenterClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateSelfClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* --- RESPONSIVE MOBILE ENGINE ENGINE --- */
@media(max-width: 768px) {
    .main-layout {
        height: 100dvh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        margin: 0;
        gap: 0;
        background: #000
    }

    .header {
        position: relative;
        width: 100%;
        height: auto;
        padding: 12px 16px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-shrink: 0;
        z-index: 20;
        background: #000;
        top: auto;
        left: auto;
        transform: none;
        max-width: none;
        pointer-events: auto
    }

    .header>* {
        pointer-events: auto
    }

    .logo-wrapper {
        position: relative;
        width: auto;
        height: 24px;
        top: auto;
        left: auto;
        transform: none;
        padding: 0;
        display: flex;
        align-items: center
    }

    .header-bg,.location,.header-cta {
        display: none
    }

    .hero-section {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
        min-height: auto !important; 
        z-index: 10;
        top: auto;
        left: auto;
        transform: none
    }

    .hero-img-wrapper {
        width: 100%!important;
        height: 35vh!important; 
        max-height: 35vh;
        aspect-ratio: 4/5;
        max-width: 400px;
        margin: 0 auto;
        background: #000;
        border: 0!important;
        overflow: hidden
    }

    .footer-content {
        position: relative;
        bottom: auto;
        left: auto;
        top: auto;
        width: 100%;
        padding: 4px 16px; 
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 4px; 
        z-index: 50;
        pointer-events: auto;
        background: #000
    }

    .footer-text {
        font-size: 16px;
        text-align: left;
        color: #e0e0e0;
        line-height: 1.2
    }

    .booking-badge {
        font-size: 11px;
        padding: 6px 10px;
        width: fit-content;
        border-radius: 6px
    }

    .mobile-cta-btn {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 160px;
        height: 80px;
        margin: 0 auto 4px; 
        display: block;
        z-index: 50;
        flex-shrink: 0;
        pointer-events: auto
    }

    .mobile-cta-btn .union-bg {
        width: 160px;
        height: 78px
    }

    .mobile-cta-btn .cta-content {
        height: 78px
    }

    .mobile-cta-btn .cta-text {
        font-size: 13px;
        top: 10px
    }

    .mobile-cta-btn .cta-arrow {
        right: 36px;
        top: 52px
    }

    .desktop-only,.socials-right {
        display: none!important
    }

    .mobile-socials {
        display: flex!important;
        gap: 8px;
        flex-direction: row;
        padding: 0 16px;
        margin-top: 8px;
        width: 100%;
        z-index: 50
    }

    .mobile-social-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        width: 100%;
        padding: 0 12px;
        border: none;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #e0e0e0;
        text-transform: uppercase;
        text-decoration: none;
        transition: transform .2s,opacity .2s;
        background: #141414;
        letter-spacing: -.02em
    }

    .mobile-social-pill:hover {
        transform: scale(1.05);
        opacity: .9
    }
}