/*
 * La Mezquita — site.css
 * Custom navigation + shared styles. Loaded after main.css on every page.
 */

/* ── Custom site navigation ─────────────────────────────────────────────
 * Completely independent of Bootstrap navbar classes and HTML5UP resets.
 */
#site-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}
.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 100px;
}
.site-nav-logo { text-decoration: none; line-height: 0; flex-shrink: 0; }
.site-nav-logo img { height: 90px !important; width: auto !important; max-height: 90px !important; display: block !important; }
.site-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.site-nav-links li { list-style: none; margin: 0; padding: 0; }
.site-nav-links a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 22px;
    color: #444;
    text-decoration: none;
    white-space: nowrap;
}
.site-nav-links a:hover { color: #000; }
.site-nav-toggle {
    display: none;
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.3rem;
    padding: 0.35rem 0.7rem;
    cursor: pointer;
    line-height: 1;
    color: #444;
}

@media (max-width: 991px) {
    .site-nav-inner {
        min-height: auto;
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        gap: 0;
    }
    .site-nav-toggle { display: block; }
    .site-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 0.25rem 0 0.5rem;
    }
    .site-nav-links.open { display: flex; }
    .site-nav-links a {
        font-size: 15px;
        padding: 0.65rem 0.25rem;
        border-bottom: 1px solid #f0f0f0;
    }
    .site-nav-links li:last-child a { border-bottom: none; }
}

/* ── Dropdowns ─────────────────────────────────────────────────────────── */
.dropdown-menu { display: none; flex-direction: column !important; padding: 0 !important; }
.dropdown-menu.show { display: block !important; }
.dropdown-item { display: block !important; width: 100%; padding: 0.25rem 1.5rem !important;
    text-align: left; white-space: nowrap; background-color: transparent; border: 0; }

/* ── Coming-soon thumbnail placeholder ────────────────────────────────── */
.thumbnail-placeholder {
    width: 300px;
    height: 300px;
    background: #f4f4f4;
    border: 2px dashed #ccc;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 auto;
}

/* ── Book button ───────────────────────────────────────────────────────── */
.book-button { background-color: black; color: white; border: none; border-radius: 8px;
    padding: 10px 20px; text-decoration: none; transition: background-color 0.3s, color 0.3s; }
.book-button:hover { background-color: white; color: black; border: 1px solid black; }
