/* ============================
   Typografie-Klassen
   ============================ */

.text-body {
    color: #562D0F;
    font-family: "gentium-book-basic", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.text-body p {
    padding-bottom: 24px;
}

.text-heading {
    color: #562D0F;
    font-family: "open-sans-condensed", sans-serif;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 48px;
    text-align: center;
}

.text-subhead {
    color: #8A4810;
    font-family: "open-sans-condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    padding-bottom: 24px;
}

.text-subhead-serif {
    color: #8A4810;
    font-family: "gentium-book-basic", serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 24px;
}

/* ============================
   Dekorativer Trenner (✧✧)
   ============================ */

.divider {
    display: flex;
    align-items: center;
    margin: 14px 20px 0;
    width: auto;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-top: 2px solid #8A4810;
}

.divider-symbol {
    font-size: 24px;
    color: #8A4810;
    letter-spacing: 3px;
    font-family: "gentium-book-basic", serif;
    font-weight: 400;
    padding: 4px 12px 0;
    line-height: 24px;
}

/* ============================
   Layout-Container
   ============================ */

.page-wrapper {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flow-root;
}

/* ============================
   Header (Startseite – hero)
   ============================ */

.site-header-hero {
    width: 100%;
    background: #562D0F url("../images/sushi-tisch.jpg") no-repeat left center;
    background-size: cover;
    min-height: 300px;
    padding-bottom: 181px;
    overflow: hidden;
}

.site-header-hero .header-inner {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.site-header-hero .site-logo {
    display: block;
}

.site-header-hero .main-nav {
    justify-content: center;
}

/* ============================
   Header (Unterseiten – braun)
   ============================ */

.site-header-standard {
    width: 100%;
    background-color: #562D0F;
    overflow: hidden;
}

.site-header-standard .header-inner {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
}

.site-header-standard .site-logo {
    display: block;
}

/* ============================
   Navigation (gemeinsam)
   ============================ */

.main-nav {
    display: flex;
    gap: 0;
}

.main-nav a {
    display: block;
    color: #FFFFFF;
    font-family: "open-sans-condensed", sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    padding: 7px 0 14px;
    width: 129px;
}

.main-nav a:hover {
    text-decoration: none;
    color: #C7B299;
}

.main-nav a.active {
    color: #C7B299;
}

/* Unterseiten-Nav (kleinerer Schrift) */
.nav-standard a {
    font-size: 16px;
    padding: 5px 0;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ============================
   Seiteninhalt
   ============================ */

.page-content {
    width: 960px;
    margin: 0 auto;
}

/* ============================
   Footer
   ============================ */

.site-footer {
    width: 100%;
    background-color: #321809;
    margin-top: 6px;
}

.site-footer .footer-inner {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 33px 16px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-speisekarte {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-speisekarte-line {
    flex: 1;
    border-top: 1px solid #FFFFFF;
}

.footer-banner {
    width: 180px;
    background: transparent url("../images/banner-normal.png") no-repeat left top;
    background-size: contain;
    cursor: pointer;
    text-decoration: none;
    display: block;
    flex-shrink: 0;
}

.footer-banner:hover {
    background-image: url("../images/banner-hover.png");
    text-decoration: none;
}

.footer-banner:active {
    background-image: url("../images/banner-down.png");
}

.footer-banner-text {
    display: block;
    color: #FFFFFF;
    font-size: 15px;
    font-family: "open-sans-condensed", sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 18px;
    padding: 6px 22px 9px;
    text-decoration: none;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav a {
    display: block;
    color: #FFFFFF;
    font-family: "open-sans-condensed", sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    width: 95px;
    padding: 8px 0 17px;
}

.footer-nav a:hover {
    color: #C7B299;
    text-decoration: none;
}

.footer-nav a.active {
    color: #C7B299;
}

/* ============================
   Responsive – Tablet (max 959px)
   ============================ */
@media (max-width: 959px) {
    .site-header-hero .site-logo {
        margin-left: 0;
        max-width: 260px;
        height: auto;
    }
    .site-header-hero .main-nav {
        position: static;
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-header-hero .header-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
    }
    .main-nav a {
        width: auto;
        padding: 8px 16px;
    }
}

/* ============================
   Responsive – Mobil (max 600px)
   ============================ */
@media (max-width: 600px) {

    /* Typografie */
    .text-heading {
        font-size: 32px;
        line-height: 36px;
    }

    /* Hero-Header */
    .site-header-hero {
        padding-bottom: 60px;
        min-height: 180px;
    }
    .site-header-hero .header-inner {
        align-items: center;
        text-align: center;
    }
    .site-header-hero .site-logo {
        max-width: 200px;
        height: auto;
        margin: 10px auto 0;
    }
    .site-header-hero .main-nav {
        justify-content: center;
        margin-top: 8px;
    }
    .main-nav a {
        font-size: 14px;
        padding: 6px 10px;
        width: auto;
    }

    /* Standard-Header */
    .site-header-standard .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
    }
    .site-header-standard .site-logo {
        max-width: 180px;
        height: auto;
    }
    .nav-standard {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-standard a {
        font-size: 14px;
        padding: 6px 10px;
    }

    /* Trenner */
    .divider {
        margin: 12px 0 0;
    }

    /* Footer */
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-nav a {
        width: auto;
        padding: 6px 12px;
    }
}
