﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Allgemein*/
body {
    font-family: Arial, sans-serif;
    background: #f5f1e8;
    color: #29342A;
    line-height: 1.5;
}

section {
    padding: 2rem 2rem;
}

/*Header*/
.site-header {
    background: #253023;
    color: white;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.25s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    height: 100%;
}

.nav-list {
    display: none;
    list-style: none;
    gap:0.5rem;
}

.nav-list a {
    color: #DBDBDB;
    text-decoration: none;
    margin-right: 1rem;
}

.nav-list a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.nav-list a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.nav-list.open {
    display: flex;
    flex-direction: column;
    background: #253023;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    width: fit-content;
    padding:0;
    margin:0;
    z-index: 100;
    border-radius:6px;
    min-width:220px;
}

.nav-list.open li {
    width: 100%;
}

.nav-list.open a {
    display: block;
    padding: 0.5rem 1rem;
    color: #DBDBDB;
    text-decoration: none;
}

.nav-list.open a.active,
.nav-list.open a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 0.1rem;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

/*Burgersymbol*/
.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background:#7da54c;
    border-radius: 999px;
    margin-left:1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 100px;
    width: auto;
    transform: scale(1.1);
    transform-origin: right center;
}

/*Index*/
/*Abschnitt 1*/
.willkommen {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: #f5f1e8;
}

.willkommen_text h1 {
    margin-bottom: 1rem;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight:normal;
}

.section-kicker {
    color: #6f8b5e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
}

.intro-text {
    margin-bottom: 1rem;
}

.willkommen_info {
    border-radius: 8px;
}

.willkommen_info h2 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.willkommen_info p {
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid #cfc7ba;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #f5f1e8;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #355c3a;
    text-decoration: none;
}

.willkommen_image {
    flex: 1;
    display: flex;
    justify-content:center;
}

.willkommen_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    max-height:400px;
    max-width:400px;
}

/*Abschnitt 2*/
.values {
    background: #e5e7da;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.values_image {
    display: flex;
    justify-content: center;
}

.values_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    max-height:400px;
    max-width:400px;
}

.values_text h2 {
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 500;
}

.values_text .section-kicer {
    color: #6f8b5e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    padding-top:1rem;
}

.values_text p {
    margin-bottom: 0.9rem;
    font-size:0.9rem;
}

.values_features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    flex:1;
    text-align: left;
}

.values .icon {
    width: 28px;
    height: 28px;
    display: block;
    fill: #4a6138;
}

.feature-icon {
    margin-bottom: 0.5rem;
}

.feature h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #2b3528;
}

.feature p {
    font-size: 0.9rem;
    color: #5f655b;
}

/*Abschnitt 3*/
.map {
    background: #f5f1e8;
}

.map-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 1rem auto 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
    border-radius: 15px;
}

.map_text {
    padding-top: 1rem;
    margin-top: 0;
    text-align: center;
}

.map_text h3 {
  margin-bottom: 0.5rem;
  font-weight:normal;
  font-size:1.1rem;
  font-family: Montserrat, sans-serif;
  color:#6f8b5e;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.map_text h5 {
    font-size: 1rem;
    font-weight: normal;
    text-decoration: underline;
    color: #344431;
}

.map_text p{
    font-size:0.9rem;
    padding-bottom:2rem;
}

/*Footer*/
.footer-all {
    background: #253023;
}

.footer-content {
    display: grid;
    grid-template-columns: 90px 1fr;
    column-gap: 1rem;
    row-gap: 1.2rem;
    padding: 1.5rem 2rem 0; /* links 2rem */
    align-items: start;
}

.footer-logo {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
}

.footer-logo img {
    width: 90px;
    height: auto;
    display: block;
}

.footer-hours {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding: 0;
}

.footer-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-left:1rem;
}

.footer-legal {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-bottom:2rem;
    padding-left:1rem;
}

.footer-links h3 {
    margin: 0 0 0.4rem;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1rem;
    font-weight: normal;
    color: #8ba05e;
}

.footer-links p,
.footer-links li,
.footer-links a {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.7;
    color: #f5f1e8;
    text-decoration: none;
}

.footer-links a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 0.1rem;
}

.footer-links a:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 0.1rem;
}

.footer-links p + p,
.footer-links li + li {
    margin-top: 0.35rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    color: #8ba05e;
}

.icon svg {
    width: 100%;
    height: 100%;
}

/* FOOTER BOTTOM */
.footer-bottom {
    padding: 1rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    color:#FFF;
    font-size:0.8rem;
}

/*Speiseplan*/
/*Abschnitt 1*/
.mittagstisch{
    padding:2rem;
    max-width:1400px;
    margin:0 auto;
}

.mittagstisch-head .section-kicker {
    font-size:1.4rem;
}

.mittagstisch h1 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight:600;
}

.mittagstisch p{
    font-size:1rem;
    margin:0.5rem 0;
}

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

.mittag-card {
    background: #f8f8f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5dc;
}

.mittag-card-tag {
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2f4632;
    background: #f3f3ed;
    border-bottom: 1px solid #e5e5dc;
}

.mittag-card-gericht {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c2c2c;
}

/*Abschnitt 2*/
.festekarte {
    background: #e5e7da;
    padding: 2rem;
}

.festekarte-head {
    margin-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.festekarte-head .section-kicker {
    font-size: 1.4rem;
}

.festekarte-head h2{
    font-weight: normal;
    font-size:1.2rem;
    color: #29342A;
}

.festekarte .speisegruppe h3 {
    font-weight: normal;
    font-size:1.6rem;
    color: #29342A;
    margin-bottom:1rem;
}

.speisegruppe {
    margin-bottom: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.karte-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.karte-liste li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f8f3;
    border-radius: 14px;
    padding: 0.8rem 1rem;
    border: 1px solid #e5e5dc;
}

.karte-liste img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.karte-liste .gericht {
    flex: 1;
    min-width: 0;
    color: #29342A;
    font-size: 1.1rem;
    min-width: 0;
    line-height: 1.3;
    word-break: break-word;
}

.karte-liste .preis {
    font-weight: bold;
    color: #344431;
    white-space: nowrap;
    flex-shrink: 0;
}

.mittagstisch-head,
.feste-karte-head {
  margin-bottom: 1.5rem;
}

.mittagstisch-head h2,
.feste-karte-head h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
}

.mittagstisch-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mittagstisch-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.45);
}

.mittagstisch-tag {
  font-weight: bold;
  color: #344431;
}

.mittagstisch-preis {
  font-weight: bold;
}

.feste-karte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.karte-card {
  background: #e5e7da;
  border-radius: 12px;
  overflow: hidden;
}

.karte-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.karte-content {
  padding: 1.5rem;
}

.karte-content h3 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 1.8rem;
}

/*Über uns*/
/*Abschnitt 1*/
.about-hero {
    background: #f5f1e8;
    padding: 3rem 2rem 2rem;
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1,
.about-story-text h2,
.about-values-intro h2,
.about-partners-intro h2,
.about-emobility-text h2,
.emobility-highlight h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    color: #29342A;
}

.about-hero h1 {
    margin-bottom: 1rem;
    font-size:1.3rem;
}

.about-hero-text {
    max-width: 1200px;
    margin: 0 auto;
}

/* Story */
.about-story {
    background: #e5e7da;
    padding: 2rem;
}

.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-story-image {
    display: flex;
    justify-content: center;
}

.about-story-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    object-fit: cover;
}

.about-story-text .section-kicker {
    font-size: 1.3rem;
}

.about-story-text p {
    margin-bottom: 1rem;
}

/*Abschnitt 2*/
.about-values {
    background: #f5f1e8;
    padding: 2rem;
}

.about-values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-intro {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.about-values-intro .section-kicker{
    font-size:1.3rem;
}

.about-values-grid {
    display: grid;
    gap: 1.5rem;
}

.about-value-card {
    background: #fffdf8;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e3ddd1;
}

.about-value-card h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    margin-bottom: 0.6rem;
    color: #355c3a;
}

/*Abschnitt 3*/
.about-partners {
    background: #e5e7da;
    padding:2rem;
}

.about-partners-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-partners-intro {
    max-width: 1200px;
    margin-bottom: 2rem;
}

.about-partners-intro .section-kicker {
    font-size: 1.3rem;
}

.partners-grid {
    display: grid;
    gap: 1.5rem;
}

.partner-card {
    background: #f5f1e8;
    border-radius: 16px;
    border: 1px solid #ddd6c8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.partner-logo {
    width: 100%;
    height: 180px;
    background: #fffdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.partner-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.partner-content h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    margin-bottom: 0.6rem;
    color: #355c3a;
}

.partner-content p {
    font-size: 0.95rem;
    padding-bottom:2rem;
}

.partner-btn {
    margin: auto auto 0; /* Button bleibt unten */
    display: inline-block;
    width: fit-content;
    background: #355c3a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.partner-btn:hover {
    background: #253023;
}

/*Abschnitt 4 */
.about-emobility {
    background: #f5f1e8;
    padding: 2rem;
}

.about-emobility-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-emobility-text .section-kicker {
    font-size: 1.3rem;
}

.about-emobility-text p {
    margin-bottom: 1rem;
}

.about-emobility-box {
    display: flex;
}

.emobility-highlight {
    width: 100%;
    background: #ece7dc;
    border-radius: 18px;
    padding: 1.5rem;
}

.emobility-highlight h3 {
    margin-bottom: 1rem;
    color: #355c3a;
}

.emobility-highlight ul {
    margin: 0;
    padding-left: 1.2rem;
}

.emobility-highlight li {
    margin-bottom: 0.8rem;
}

/*Kontaktseite*/
/*Abschnitt 1*/
.contact-hero {
    background: #f5f1e8;
    padding: 3rem 2rem 2rem;
}

.contact-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-inner .section-kicker {
    font-size:1.3rem;
}

.contact-hero h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: normal;
    margin-bottom: 1rem;
    font-size:1.1rem;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
}

/*Abschnitt 2*/
.contact-main {
    background: #e5e7da;
    padding: 1.5rem;
}

.contact-grid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.contact-info-card,
.contact-form-card {
    background: #f5f1e8;
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
}

.contact-info-card h2,
.contact-form-card h2,
.contact-map-text h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #29342A;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 1px solid #cfc7ba;
    background: #f5f1e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6138;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #29342A;
}

.contact-info-item div:last-child {
    min-width: 0;
}

.contact-info-item p,
.contact-info-item a {
    color: #29342A;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #ece7dc;
    border-radius: 12px;
    font-size: 0.95rem;
}

/* Formular */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #cfc7ba;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: #fffdf8;
    color: #29342A;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6f8b5e;
    box-shadow: 0 0 0 3px rgba(111, 139, 94, 0.15);
}

.contact-btn,
.map-button {
    display: inline-block;
    width: fit-content;
    background: #355c3a;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 0.95rem;
}

.contact-btn:hover,
.map-button:hover {
    background: #2c4b30;
}

/*Abschnitt 3*/
.contact-map-section {
    background: #f5f1e8;
    padding: 2rem;
    margin:0 auto;
}

.contact-map-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.contact-map-text p {
    margin-bottom: 1rem;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 16px;
    display: block;
}

/*Impressum*/
.legal-page {
    background: #f5f1e8;
    padding: 3rem 2rem;
}

.legal-inner {
    max-width: 1024px;
    margin: 0 auto;
    background: #fffdf8;
    border-radius: 16px;
    padding: 1.5rem;
}

.legal-page .legal-inner .section-kicker{
    font-size:1.5rem;
}

.legal-inner h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    font-size: 1.25rem;
    margin: 0.5rem 0 0.5rem;
    color: #355c3a;
}

.legal-inner p {
    margin-bottom: 1rem;
    color: #29342A;
}

.legal-inner a {
    color: #355c3a;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.legal-inner a:hover {
    text-decoration: underline;
}

/*Datenschutzerklärung*/
/*Abschnitt 1*/
.privacy-hero {
    background: #f5f1e8;
    padding: 3rem 2rem 2rem;
}

.privacy-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.privacy-hero h1 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    font-size:1.7rem;
    color: #29342A;
    margin-bottom: 1rem;
}

.privacy-hero p {
    max-width: 1024px;
    margin: 0 auto;
    color: #4d554b;
}

/*Abschnitt 2*/
.privacy-page {
    background: #e5e7da;
    padding: 2rem;
}

.privacy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.privacy-toc {
    background: #253023;
    color: #f5f1e8;
    border-radius: 18px;
    padding: 1.5rem;
}

.privacy-toc h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    color: #8ba05e;
    margin-bottom: 1rem;
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-toc li + li {
    margin-top: 0.7rem;
}

.privacy-toc a {
    color: #f5f1e8;
    text-decoration: none;
    font-size: 0.95rem;
}

.privacy-toc a:hover {
    color: #8ba05e;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.privacy-content {
    display: grid;
    gap: 1.3rem;
}

.privacy-card {
    position: relative;
    background: #fffdf8;
    border: 1px solid #ddd6c8;
    border-radius: 18px;
    padding:1.5rem;
    overflow: hidden;
}

.privacy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #8ba05e;
}

.privacy-number {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #8ba05e;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.privacy-card h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    color: #29342A;
    margin-bottom: 0.4rem;
}

.privacy-card p {
    color: #29342A;
    margin-bottom: 0.7rem;
}

.privacy-list {
    margin-left:2rem;
}

.privacy-list li {
    margin-bottom: 0.45rem;
    color: #29342A;
    font-size: 0.95rem;
    line-height: 1.6;
}

.privacy-list li::marker {
    color: #8ba05e;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card a {
    color: #355c3a;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.privacy-card a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.privacy-date {
    background: #253023;
    color: #f5f1e8;
    border: none;
}

.privacy-date::before {
    background: #8ba05e;
}

.privacy-date h2,
.privacy-date p {
    color: #f5f1e8;
}

/*Cookie-Banner*/
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    width: 100%;
    max-width: 900px;
    background: #253023;
    color: #fff;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    z-index: 9999;
    text-align: center;
}

.cookie-banner a {
    color: #D2E5D4;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-content {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 1rem;
}

.cookie-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

.cookie-buttons button {
    background: #8ba05e;
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-align:center;
    border: none;    
    border-radius:16px;
    outline: none;        
    box-shadow: none; 
}

.cookie-buttons button:hover {
    background: #7a9252;
}

.cookie-settings {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
}

/*Cookie Seite*/
.cookie-page {
    background: #f5f1e8;
    padding: 3rem 2rem;
}

.cookie-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-page h1 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #29342A;
}

.cookie-settings-card {
    background: #fffdf8;
    border: 1px solid #ddd6c8;
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.cookie-settings-card h2 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    margin-bottom: 0.7rem;
    color: #355c3a;
}

.cookie-page-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.2rem;
}

.cookie-page-buttons button {
    background: #8ba05e;
    color: #000;
    border: none;
    outline: none;
    border-radius:16px;
    box-shadow: none;
    padding: 0.7rem 1rem;
    cursor: pointer;
}

.cookie-page-buttons button:hover {
    background: #7a9252;
}

.cookie-page-note {
    margin-top: 1.5rem;
}

.cookie-page-note a {
    color: #355c3a;
    text-decoration: none;
}

.cookie-page-note a:hover {
    text-decoration: underline;
}

/*520px*/
@media (min-width: 520px) {
    /*Index*/
    /*Abschnitt 1*/
    .willkommen {
        padding: 2rem;
    }

    /*Speisekarte*/
    .karte-liste li {
        align-items: flex-start;
    }

    .karte-liste img {
        width: 55px;
        height: 55px;
    }

    .karte-liste .gericht {
        font-size: 1.1rem;
    }

    .karte-liste .preis {
        font-size: 1.1rem;
    }

    /*Footer*/
    .footer-content {
        grid-template-columns: 1fr 1fr;
        column-gap:3rem;
    }

    .footer-contact {
        grid-column: 1;
        grid-row: 2;
        padding-bottom:2rem;
    }

    .footer-legal {
        grid-column: 2;
        grid-row: 2;
        padding:0;
    }

    /*Über uns*/
    .about-hero h1 {
        font-size: 1.8rem;
    }

    /*Cookie-Banner*/
    .cookie-banner {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}

/*700px*/
@media (min-width:700px) {
    /*Header*/
    .nav-list {
        display: flex;
        gap:2rem;
    }

    .nav-toggle {
        display: none;
    }

    .site-header {
        transform: translateY(0) !important;
    }

    .site-header.header-hidden {
        transform: translateY(0) !important;
    }

    .logo img {
        height: 110px;
    }

    /*Index*/
    section {
        padding: 2rem 2.5rem;
    }

    /*Abschnitt 1*/
    .willkommen {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 2rem;
    }

    .willkommen_text,
    .willkommen_image {
        flex: 1;
    }

    .willkommen_image {
        display: flex;
    }

    .willkommen_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        display: block;
        max-width: none;
        max-height: none;
    }

    .willkommen_text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /*Abschnitt 2*/
    .values_inhalt {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 2rem;
    }

    .values_image,
    .values_text {
        flex: 1;
    }

    .values_image {
        display: flex;
    }

    .values_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        display: block;
        max-width: none;
        max-height: none;
    }

    .values_text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .values_text .section-kicer {
        font-size: 0.95rem;
    }

    .values_text p {
        font-size: 0.95rem;
    }

    .values .icon {
        width: 32px;
        height: 32px;
    }

    .values_features {
        flex-direction: row;
    }

    .feature {
        flex: 1;
    }

    .feature-icon {
        margin-bottom: 0.2rem;
    }

    .values_features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature h3 {
        margin-bottom: 0.2rem;
    }

    .feature p {
        margin: 0;
    }

    /*Abschnitt 3*/
    .map_text p {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    /*Speisekarte*/
    .mittagstisch-grid {
        grid-template-columns: 1fr;
    }

    .karte-liste {
        grid-template-columns: 1fr 1fr;
    }

    .feste-karte-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /*Über uns*/
    .about-hero {
        padding: 4rem 2rem 2.5rem;
    }

    .about-story-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-emobility-inner {
        grid-template-columns: 1.2fr 0.8fr;
    }

    /*Kontaktseite*/
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    /*Impressum*/
    .legal-inner {
        padding: 2.5rem;
    }

    /*Datenschutzerklärung*/
    .privacy-hero {
        padding: 4rem 2rem 2.5rem;
    }

    .privacy-card {
        padding: 2rem;
    }
}

/* ab 900px */
@media (min-width: 900px) {
    /*Index*/
    .willkommen, .values_inhalt{
        max-width:1024px;
        margin:0 auto;
        display:flex;
        justify-content:center;
    }

    /*Abschnitt 3*/
    .center, .map_text {
        max-width: 1024px;
        margin: 0 auto;
    }

    .map-wrapper iframe {
        height: 400px;
    }

    /*Speisekarte*/
    .mittagstisch-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mittagstisch-head .section-kicker {
        font-size: 1.8rem;
    }

    .mittagstisch h1 {
        font-size: 1.4rem;
    }

    .mittagstisch p {
        font-size: 1.1rem;
    }

    .festekarte-head .section-kicker {
        font-size: 1.7rem;
    }

    /*Footer*/
    .footer-content {
        grid-template-columns: auto 1fr 1fr 1fr;
        column-gap: 4rem;
        row-gap: 2rem;
        max-width:1400px;
        margin:0 auto;
    }

    .footer-logo {
        margin-right: 2rem;
        grid-column: 1;
        grid-row: 1;
        width:200px;
    }

    .footer-hours {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-contact {
        grid-column: 3;
        grid-row: 1;
    }

    .footer-legal {
        grid-column: 4;
        grid-row: 1;
    }

    .footer-logo img {
        width: 110px;
    }

    /*Über uns*/
   .about-values-intro .section-kicker {
        font-size: 1.5rem;
    }

    .about-story-text .section-kicker {
        font-size: 1.5rem;
    }

    .about-partners-intro .section-kicker {
        font-size: 1.5rem;
    }

    .about-emobility-text .section-kicker {
        font-size: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }

    /*Kontaktseite*/
    .contact-hero {
        padding: 4rem 2rem 2.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }

    .contact-map-wrapper iframe {
        height: 420px;
    }

    /*Datenschutzerklärung*/
    .privacy-inner {
        grid-template-columns: 280px 1fr;
        align-items: start;
    }

    .privacy-toc {
        position: sticky;
        top: 95px;
    }

    .privacy-content {
        gap: 1.5rem;
    }
}

@media (min-width:1200px){
    .mittag-card-tag {
        font-size: 1.4rem;
    }

    .mittag-card-gericht {
        font-size: 1.2rem;
    }

    .karte-liste .gericht {
        font-size: 1.2rem;
    }

    .karte-liste .preis {
        font-size: 1.1rem;
    }
}