/* 
  Style: PizzaLayout v1.0
  Designed by scriptefarm.de
  © 2025 – Nur für Kunde bestimmt. 
  Jede unerlaubte Nutzung ist untersagt.
*/

.top-banner {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
}


body {
    background-image: url('../../images/bg_pizza_pattern_b.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* skaliert auf volle Fläche */
    background-position: center center;
    background-attachment: fixed;
    /* bleibt beim Scrollen sichtbar */
}

.font_gruppe {
    color: #ffffff;
    background: #00cc44;
    ;
}

.header-grid {
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1rem;
}

.logo {
    background: #6495ed;
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    grid-column: 1 / -1;
    /* volle Breite */
}

.header-grid {
    display: grid;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1rem;
}

/* Bild zentrieren */


.logo img {
    max-width: 100%;
    height: auto;
}

.grid-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.standortbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #f58220;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    gap: 1rem;
    font-family: sans-serif;
}

.standortbox .center {
    font-size: 1rem;
    font-weight: bold;
}

.standortbox .nummer {
    font-size: 1.8rem;
}

.lieferbox {
    background-color: #f58220;
    color: white;
    padding: 1rem;
    transform: rotate(-2deg);
    display: flex;
    gap: 1rem;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
    flex-wrap: wrap;
}

.lieferbox .icon {
    font-size: 2.5rem;
    align-self: flex-start;
}

.lieferbox .text {
    line-height: 1.3;
}

/* ✅ Responsive Anpassung */
@media (max-width: 768px) {
    .grid-info {
        grid-template-columns: 1fr;
    }

    .standortbox {
        flex-direction: column;
        text-align: center;
    }

    .lieferbox {
        transform: none;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .lieferbox .icon {
        font-size: 2rem;
    }

    .standortbox .nummer {
        font-size: 1.4rem;
    }
}



.font_name {
    color: #00cc44;
}

.font_zutaten {
    color: #009933;
}

.font_preis {
    color: #009933;
    ;
}


.menu-tabelle {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.menu-tabelle th {
    text-align: center;
    font-size: 0.90rem;
    font-weight: 600;
    padding: 0.5rem 0.20rem;
    letter-spacing: -0.3px;
    /* engerer Buchstabenabstand */
    line-height: 1.2;
    /* kompakterer Zeilenabstand */
    color: #333;
    border-bottom: 2px solid #ccc;
}


.menu-tabelle td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid rgb(24, 182, 19);

}

.menu-tabelle .nummer {
    width: 50px;
    color: #666;
    font-weight: 500;
}

.menu-tabelle .beschreibung strong {

    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.menu-tabelle .preis {
    white-space: nowrap;
    text-align: right;
    font-weight: bold;
}

.td-center {
    text-align: center;
    vertical-align: middle;
}

.menu-tabelle tr,
.menu-tabelle td,
.menu-tabelle tr:nth-child(even),
.menu-tabelle tr:nth-child(odd),
.menu-tabelle .beschreibung,
.menu-tabelle .angebot,
.menu-tabelle .karte-box {
    background-color: #ffffff !important;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    /* erlaubt Umbruch der Buttons auf mehrere Zeilen bei Bedarf :contentReference[oaicite:1]{index=1} */
    justify-content: space-evenly;
    /* gleichmäßiger Abstand zwischen allen Buttons :contentReference[oaicite:2]{index=2} */
    gap: 0.5em;
    /* horizontaler und vertikaler Abstand zwischen Buttons */
    padding: 0.5em;
    margin-bottom: 1em;
    background: transparent;
    /* ggf. anpassen, falls ein Hintergrund benötigt wird */
}

.category-nav a {
    display: block;
    background-color: #ffffff;
    /* kräftiges Grün, passend zum Design */
    color: #7FBF3F;
    /* weiße Schrift für guten Kontrast */
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    /* abgerundete Ecken für weiche Kanten */
    padding: 0.5em 1em;
    /* großzügige Polsterung für bessere Touch-Bedienbarkeit */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.category-nav a:hover,
.category-nav a:focus {
    background-color: #93D053;
    /* Hover: etwas helleres Grün (dezent hervorgehoben) */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    /* leichter Schatteneffekt bei Hover/Focus */
    outline: none;
    /* Fokus-Rahmen entfernen, stattdessen Box-Shadow nutzen */
}

.legal-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0.8em 1em;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95em;
    border-top: 2px solid #555;
    border-bottom: 2px solid #555;
}

.legal-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.8em;
    transition: color 0.3s;
}

.legal-footer a:hover {
    color: #0f0;
    /* leichtes Grün passend zur Karte */
}