/* ==========================================================
   MOTEL — The Bluff Inn
   "A quiet place to rest"

   Palette: Moody noir — dark teal, muted neon pink, vintage
   motel signage. Slightly unsettling, like a David Lynch
   roadside motel. Deep shadows, flickering warmth.
   Font: DM Sans (clean modern sans with a touch of
   personality)
   No image — dark moody gradient
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.site-motel {
    font-family: 'DM Sans', 'Roboto', sans-serif;

    /* Page background — very dark teal */
    --color-bg: #0a1628;
    --color-body-bg: #0f1f35;

    /* Title bar — dark with muted neon pink */
    --color-title-bar-bg: #071018;
    --color-title-bar-text: #e879a8;

    /* Header — no image, moody dark gradient */
    --color-header-bg: #0d2137;
    --header-image: url('/images/motel.png');
    --header-height: 325px;

    /* Navigation — deep teal with neon accent */
    --color-menu-bg: #122a42;
    --color-menu-text: #c4d7e8;
    --color-menu-hover: #1a3a58;
    --color-menu-hover-text: #e879a8;

    /* Container border */
    --color-container-border: #1a3a58;

    /* Footer */
    --color-footer-bg: #071018;
    --color-footer-text: #6b8a9e;
    --color-helper-footer-bg: #040a10;
    --color-helper-footer-text: #4a6a80;
}


/* Dark mode text */
.site-motel {
    color: #c4d7e8;
}

.site-motel #content {
    color: #a8c0d4;
    line-height: 1.7;
}

.site-motel #content a {
    color: #e879a8;
}

.site-motel #content a:hover {
    color: #f0a0c0;
}


/* Title bar — retro motel signage feel */
.site-motel .site-title-bar .title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(232, 121, 168, 0.4);
}

.site-motel .site-title-bar .subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    font-style: italic;
    opacity: 0.7;
    color: #7eb3d4;
}


/* Header image */
.site-motel .header-image {
    background-size: cover;
    border-bottom: 1px solid rgba(232, 121, 168, 0.3);
}


/* Menu — subdued noir navigation */
.site-motel .menu-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.95rem;
    border-top-color: rgba(255, 255, 255, 0.08);
    border-left: 2px solid transparent;
}

.site-motel .menu-button:hover {
    box-shadow: inset 0 0 30px rgba(232, 121, 168, 0.08);
    border-left: 2px solid #e879a8;
}

@media (min-width: 768px) {
    .site-motel .menu-button {
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .site-motel .menu-button:hover {
        border-left: none;
        border-bottom: 2px solid #e879a8;
    }
}


/* Menu — Desktop alignment fix (3 nav items) */
@media (min-width: 768px) {
    .site-motel .menu-button {
        flex: 0 1 auto;
        max-width: 240px;
        min-width: 140px;
        padding: 0.25em 1.5em;
        font-size: 1.2em;
    }
}


/* Content headings */
.site-motel #content h1,
.site-motel #content h2,
.site-motel #content h3 {
    font-family: 'DM Sans', sans-serif;
    color: #e879a8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}


/* Footer — deep shadow */
.site-motel #site-footer {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    border-top: 1px solid rgba(232, 121, 168, 0.15);
}

.site-motel #helper-footer {
    border-top: 1px solid rgba(100, 150, 180, 0.1);
}


/* First-time modal — dark motel */
.site-motel #first-time-modal {
    background: #0f1f35;
    color: #c4d7e8;
    border: 1px solid #1a3a58;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.site-motel #first-time-accept {
    background: transparent;
    color: #e879a8;
    border: 2px solid #e879a8;
}

.site-motel #first-time-accept:hover {
    background: #e879a8;
    color: #0f1f35;
}
