/* ============================================================
   Default1.css  —  all styles for the Default1.aspx page
   ============================================================ */

/* ── Page shell ─────────────────────────────────────────────── */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
}

/* ── Top div — stacks logo ABOVE nav ───────────────────────── */
#topDiv {
    width: 100%;
    margin: 0px;
    background-color: #a10d0d;
    padding: 0 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;   /* logo on top, nav below */
    align-items: center;
}

/* ── Logo row ───────────────────────────────────────────────── */
#topContent {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 8px;
}

    #topDiv img {
        max-width: 30%;
        height: auto;
    }

/* ── Navigation ─────────────────────────────────────────────── */
#mainNav {
    background-color: #7a0000;
    width: 100%;
    box-sizing: border-box;
}

    #mainNav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Top-level list items */
    #mainNav > ul > li {
        position: relative;
    }

    /* All links */
    #mainNav a {
        display: block;
        padding: 14px 22px;
        color: #ffffff;
        text-decoration: none;
        font-family: 'Roboto', sans-serif;
        font-size: 15px;
        letter-spacing: 0.5px;
        transition: text-shadow 0.2s ease, background-color 0.2s ease;
        white-space: nowrap;
    }

    /* Mouseover glow effect */
    #mainNav a:hover {
        background-color: #9a0000;
        text-shadow: 0 0 8px rgba(255, 200, 0, 0.9), 0 0 20px rgba(255, 150, 0, 0.6);
    }

    /* ── Dropdown panel ──────────────────────────────────────── */
    #mainNav ul ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #5a0000;
        min-width: 180px;
        z-index: 1000;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
        flex-direction: column;
    }

    /* Show dropdown on hover */
    #mainNav ul li:hover > ul {
        display: flex;
    }

    /* Dropdown links */
    #mainNav ul ul a {
        padding: 12px 20px;
        font-size: 14px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

/* ── Middle div ─────────────────────────────────────────────── */
#middleDiv {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #000000;
    padding: 0;
    overflow: hidden;
}

video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ── Bottom div ─────────────────────────────────────────────── */
#bottomDiv {
    width: 80%;
    margin: 0 auto;
    background-color: #000000;
    padding: 20px;
    box-sizing: border-box;
}

/* ── Logo letters ───────────────────────────────────────────── */
.word {
    display: flex;
    align-items: center;
    gap: 10px;
}

.letter {
    height: 120px;
    width: auto;
    fill: #ffffff;
    stroke: #000000;
    stroke-width: 6px;
    filter: drop-shadow(3px 4px 8px rgba(0, 0, 0, 0.6));
    transition: fill 0.2s ease, filter 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

    .letter:hover {
        fill: black;
        stroke: #7a0000;
        filter: drop-shadow(4px 6px 12px rgba(0, 0, 0, 0.8));
        transform: translateY(-6px);
    }
/* ── Info strip: map + hours side by side ── */
#infoStrip {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    background-color: #1a0000;
}

#mapPanel {
    flex: 1 1 33%;
    min-width: 260px;
}

    #mapPanel iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 520px;
        border: 0;
    }

#fbPanel {
    flex: 1 1 33%;
    min-width: 260px;
    background-color: #1a0000;
    display: flex;
    align-items: stretch;
}

    #fbPanel iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 720px;
        border: none;
        overflow: hidden;
    }

#hoursPanel {
    flex: 1 1 33%;
    min-width: 260px;
    background-color: #1a0000;
    color: #f5e6c8;
    font-family: 'Georgia', serif;
    padding: 40px 36px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

    #hoursPanel h2 {
        margin: 0 0 6px 0;
        font-size: 1.6rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #d4a843;
        border-bottom: 1px solid #6a2a00;
        padding-bottom: 10px;
    }

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .hours-row .day {
        color: #f5e6c8;
        font-weight: bold;
    }

    .hours-row .time {
        color: #d4a843;
    }

    .hours-row.closed .time {
        color: #a05050;
    }

.hours-divider {
    border: none;
    border-top: 1px solid #6a2a00;
    margin: 6px 0;
}

.hours-note {
    font-size: 0.88rem;
    color: #c8b090;
    line-height: 1.6;
    margin-top: 4px;
}

    .hours-note strong {
        color: #d4a843;
    }

.hours-address {
    font-size: 0.9rem;
    color: #c8b090;
    line-height: 1.7;
    margin-top: 2px;
}

    .hours-address a {
        color: #d4a843;
        text-decoration: none;
    }

        .hours-address a:hover {
            text-decoration: underline;
        }
