/* ---------------------------------
   CUSTOM FONTS
--------------------------------- */

@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesqueRegular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesqueSemiBold.otf") format("opentype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Galano Grotesque";
    src: url("../fonts/GalanoGrotesqueBold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}


/* ---------------------------------
   BASIC RESET
--------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

html {
    background: #000000;
}

body {
    font-family: "Galano Grotesque", Arial, Helvetica, sans-serif;
}


/* ---------------------------------
   FULL-SCREEN LANDING PAGE
--------------------------------- */

.landing-page {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 100vh;
    min-height: 100svh;

    padding:
        max(24px, env(safe-area-inset-top))
        max(24px, env(safe-area-inset-right))
        max(24px, env(safe-area-inset-bottom))
        max(24px, env(safe-area-inset-left));

    overflow: hidden;

    background-color: #000000;
    background-image: url("../images/desktop-background.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}


/* ---------------------------------
   BACKGROUND OVERLAY
--------------------------------- */

.background-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0, 0, 0, 0.08);

    pointer-events: none;
}


/* ---------------------------------
   CONTENT POSITIONING
--------------------------------- */

.landing-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: min(540px, 92vw);

    text-align: center;
}


/* ---------------------------------
   LOGO
--------------------------------- */

.logo {
    display: block;

    width: min(390px, 82vw);
    height: auto;

    margin: 0 0 30px;

    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
        drop-shadow(0 3px 2px rgba(255, 255, 255, 0.55))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}


/* ---------------------------------
   BOOKING BUTTON
--------------------------------- */

.booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: min(310px, 88vw);
    min-height: 60px;

    padding: 18px 30px;

    color: #ffffff;
    background: rgba(0, 0, 0, 0.92);

    border: 2px solid #ffffff;
    border-radius: 0;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.28),
        0 2px 8px rgba(0, 0, 0, 0.2);

    font-family: "Galano Grotesque", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.booking-button:hover {
    color: #111111;
    background: #ffffff;
    border-color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.booking-button:focus-visible {
    color: #111111;
    background: #ffffff;

    outline: 3px solid #ffffff;
    outline-offset: 5px;
}


/* ---------------------------------
   ADDRESS
--------------------------------- */

.address {
    margin: 22px 0 0;
    padding: 10px 18px 11px;

    display: inline-block;

    color: #ffffff;
    background: rgba(0, 0, 0, 0.62);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;

    text-decoration: none;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.08);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    font-family: "Galano Grotesque", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.025em;

    text-shadow: 0 2px 5px rgba(0,0,0,0.45);

    transition:
        background-color .2s ease,
        transform .2s ease,
        border-color .2s ease;
}

.address:hover {
    background: rgba(0, 0, 0, 0.82);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.address:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}


/* ---------------------------------
   MOBILE
--------------------------------- */

@media (max-width: 700px) {
    .landing-page {
        padding: 20px;

        background-image: url("../images/mobile-background.jpg");
        background-position: center center;
    }

    .landing-content {
        width: 94vw;
    }

    .logo {
        width: min(325px, 82vw);
        margin-bottom: 24px;

        filter:
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
            drop-shadow(0 3px 2px rgba(255, 255, 255, 0.5))
            drop-shadow(0 7px 14px rgba(0, 0, 0, 0.35));
    }

    .booking-button {
        width: min(300px, 88vw);
        min-height: 56px;

        padding: 16px 22px;

        font-size: 14px;
    }

    .address {
        margin-top: 20px;
        padding: 9px 15px 10px;

        font-size: 14px;
    }
}


/* ---------------------------------
   REDUCED MOTION
--------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .booking-button {
        transition: none;
    }
}