@charset "utf-8";

/* ===============================
   BASIS
================================ */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===============================
   CONTAINER (für Main / Footer)
================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.content-image {
    max-width: 100%;
}

.content-image img {
    width: 100%;
    height: auto;
}


/* ===============================
   HEADER
================================ */

.site-header {
    background: #e3f2fd;
    padding: 1rem 0;
}

/* gemeinsamer Innenbereich für Logo + Nav */
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* Logo / Headerbild */
.header-logo {
    margin-bottom: 1rem;
}

.header-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}



/* ===============================
   SPRACHWAHL
================================ */

.lang-switch {
    position: relative;
}

.lang-current {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Untermenü */
.lang-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    background: #ffffff;
    border: 1px solid #ccc;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 100;
}

.lang-switch.open .lang-menu {
    display: block;
}

/* Desktop Hover */
@media (min-width: 768px) {
    .lang-switch:hover .lang-menu {
        display: block;
    }
}

.lang-menu li {
    margin: 0;
}

.lang-menu a {
    display: block;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    color: #000;
}

/* ===============================
   MAIN
================================ */

main {
    background: #e8f5e9;
}

/* ===============================
   INHALT – RÄUMLICHKEITEN
================================ */

.interior-section {
    text-align: center;
    margin: 3rem 0;
}

.interior-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.interior-image {
    width: 250px;
    height: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .interior-row {
        flex-direction: column;
        align-items: center;
    }

    .interior-image {
        width: 100%;
        max-width: 320px;
    }
}

/* ===============================
   FOOTER
================================ */

.site-footer {
    background: #f5f5f5;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
}

.site-footer h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: #0d47a1;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Footer Layout */
.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;

    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-col {
    flex: 0 1 33%;
    text-align: center;
}



/* Desktop */
@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}


/* ===============================
   NAVIGATION – RESPONSIVE FINAL
================================ */

/* Mobile & Tablet */
.nav-main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.nav-main > li {
    flex: 1 1 48%;
    text-align: center;
}

/* Desktop */
@media (min-width: 768px) {
    .nav-main > li {
        flex: 0 0 auto;
    }
}

/* ===============================
   NAVIGATION – CSS GRID (FINAL)
================================ */

/* Mobile */
.nav-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 nebeneinander */
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main > li {
    text-align: center;
}

/* Desktop */
@media (min-width: 768px) {
    .nav-main {
        grid-template-columns: repeat(auto-fit, minmax(120px, auto));
        justify-content: center;
    }
}

/* Reservierungs-Button: sanfter Puls */
.nav-reservierung img {
    animation: reservierungPulse 3.5s ease-in-out infinite;
}

@keyframes reservierungPulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.65;
    }
    100% {
        opacity: 1;
    }
}

/* foot-slider */

.food-slider {
  text-align: center;
  margin: 3rem auto;
}

.slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slider img {
  border-radius: 12px;
  cursor: pointer;
}
