:root {
  --primary-color: #06213d; /*  Blau */
  --secondary-color: #dbb47f; /* Sekundärfarbe (z.B. Grüner Button) */
  --white-color: #ffffff; /* Textfarbe / Weiß */
  --dark-color: #303030; /* Textfarbe / Dunkelgrau */

  --font-primary: "Montserrat", Arial, sans-serif;
  --font-secondary: "Cormorant Garamond", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hiddenOnMobile {
  display: none;
}

.restaurant_open {
  border-radius: 0px 6px 0px 0px;
  bottom: 0px;
  left: 0;
  position: fixed;
  padding: 8px;
  background-color: var(--secondary-color); /* Dein Grün */
  color: var(--white-color);
  font-weight: 500;
  font-size: 14px;
}

.restaurant_closed {
  border-radius: 0px 6px 0px 0px;
  bottom: 0px;
  position: fixed;
  padding: 8px;
  background-color: #6e1521; /* Dein Dunkelrot */
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
}

.restaurant_vacation {
  border-radius: 0px 6px 0px 0px;
  bottom: 0px;
  position: fixed;
  padding: 8px;
  background-color: var(--primary-color); /* Gelb für Urlaub */
  color: var(--white-color);
  font-weight: 400;
  font-size: 14px;
}

hr {
  color: var(--secondary-color);
  width: 10%;
}

.secondary-color {
  color: var(--secondary-color);
}

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

body {
  padding-top: 52px;
  font-family: var(--font-primary);
  line-height: 2em;
  background-color: #f9f6f0;
}

.datenschutz,
.impressum {
  overflow: hidden;
  margin-top: 32px;
}

h1,
h2,
h3 {
  font-family: var(--font-secondary);
  text-transform: uppercase;
}
.box-container {
  width: 100%;
}

.hiddeOnMobile {
  display: none;
}

.sidebar {
  position: fixed;
  bottom: 0;
  right: 0;
  padding-top: 24px;
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  height: 100vh;
  width: 60vw;
  color: var(--white-color);
  background-color: var(--primary-color);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--secondary-color);
  z-index: 9999;
}
.hamburger-icon {
  display: flex;
  width: 42px;
  right: 0;
}

.sidebar li {
  padding: 12px;
  width: 100%;
  font-weight: 200;
  text-transform: uppercase;
  font-size: 18px;
}

.sidebar a {
  color: var(--white-color);
}

.sidebar li:hover {
  backdrop-filter: brightness(0.8);
}

.sidebar_closed_icon {
  width: 42px;
  margin-left: 12px;
  margin-bottom: 12px;
}

.fixed_img_title {
  display: none;
}

.container_padding {
  padding: 22px;
}

button {
  padding: 12px;
  font-size: 14px;
  border: 2px var(--secondary-color) solid;
  background-color: transparent;
  text-transform: uppercase;
  color: var(--secondary-color);
  padding: 14px;
}

button:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.subheader {
  display: none;
  height: 48px;
}

button a {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-primary);
}

button:hover a {
  color: var(--white-color) !important;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  width: max-content;
}

#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: fixed;
  top: 0;
  gap: 24px;
  padding: 18px;
  background-color: var(--primary-color);
  background-image: url(img/struktur.webp);
  box-shadow: inset 0 0 0 2000px rgba(0, 19, 61, 0.822);
}

.end-section-content {
  margin: 22px;
}

nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.cover {
  height: 732px;
  background-image: url(img/coverimg.jpg);
  display: flex;
  background-position: center;
  align-items: center;
  justify-content: center;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px #010912c1;
}

.cover-inhalt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cover_content {
  color: var(--white-color);
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  width: 90%;
  text-shadow: -3px 2px 5px rgba(0, 0, 0, 0.51);
}

.formular {
  background-color: white;
  padding: 10px;
  border-radius: 12px;
}

.about-section {
  background-size: cover;
  background-size: 40%;
  background-repeat: no-repeat;
}
.about_content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.gallerybox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.gallery_img {
  width: 100%; /* Bilder füllen die Spalte aus */
  height: 250px; /* Feste Höhe für ein einheitliches Raster */
  object-fit: cover; /* WICHTIG: Schneidet das Bild zu, damit es nicht verzerrt wird */
  display: block;
}

.gallery_img:hover {
  transition: filter 0.3s ease;
  cursor: pointer;
  filter: brightness(0.3);
}

.highlight_mk {
  margin: 8px;
  background-image: url(img/mutterkrauss.png);
  box-shadow: inset 0 0 0 2000px #255c4ce7;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  border: 4px solid var(--secondary-color);
  border-radius: 4px;
}

.highlight_content {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  color: var(--white-color);
}
.highlight_blue {
  display: flex;
  flex-direction: column;
  background-image: url(img/cover_blue.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px #06213dda;
  gap: 14px;
}

.highlight_blue_content {
  display: flex;
  flex-direction: column-reverse;
}

.highlight_speisekarte {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 24px;
  color: var(--white-color);
  border: var(--white-color) 2px solid;
  border-radius: 4px;
  padding: 12px;
}

.hightlight_img {
  border-radius: 4px;
}

.hightlight_img:hover {
  transition: filter 0.3s ease;
  cursor: pointer;
  filter: brightness(0.3);
}

.card_speisekarte,
.tischreservieren,
.events {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 14px;
  color: var(--white-color);
  border: var(--white-color) 2px solid;
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 24px;
}

.end-section-box1,
.end-section-box2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}

.end-section-box2 {
  margin-top: 32px;
}

.img_end_section {
  border-radius: 4px;
}

.img_end_section:hover {
  transition: filter 0.3s ease;
  cursor: pointer;
  filter: brightness(0.3);
}

.font_italic {
  font-style: italic;
}

.contact_information {
  margin: 14px;
  display: flex;

  flex-direction: column;
  gap: 14px;
  font-weight: 300;
  line-height: 28px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 13px 2px #00000013;
  padding: 12px;
  border-radius: 6px;
}

.contact_form {
  margin: 12px;
  padding: 12px;
}

li {
  list-style: none;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 32px;
  background-image: url(img/footer_bg.jpg);
  box-shadow: inset 0 0 0 2000px #000000c0;
  background-size: cover;
  color: var(--white-color);
  height: 50vh;
  text-transform: uppercase;
}

.rightinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer a {
  color: var(--white-color);
}

.footer_sub {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  text-transform: none;
}

.footer_sub a {
  color: var(--white-color);
}

.socialmediaicons {
  gap: 12px;
  width: 40px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  padding: 8px;
}

.socialmediaicons:hover {
  background-color: var(--primary-color);
}

.socialmediaicons_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.title_cover {
  font-size: 38px;
  line-height: 52px;
}

footer {
  margin-top: 0px;
}

.cover_section_feiern,
.cover_section_reservierung,
.cover_section_aktuelles {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: var(--white-color);
  gap: 14px;
  background-image: url(img/feiern_cover.jpg);
  box-shadow: inset 0 0 0 2000px #000000c0;
  background-size: cover;
  height: 50vh;
}

.cards_box_icon {
  width: 52px;
}

.cover_section_reservierung {
  background-image: url(img/cover.jpg);
}

.catering-box {
  background-image: url(img/catering-cover.jpg);
  background-size: cover;
  box-shadow: inset 0 0 0 1000px #ffffffde;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.catering-box-inhalt {
  gap: 32px;
}

.cover_section_aktuelles {
  background-image: url(img/cover.jpg);
}

.hochzeitsection,
.firmenevents {
  background-color: var(--primary-color);
}

.hochzeit_content {
  color: var(--white-color);
  gap: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.reservierung_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}
.reservierungform {
  padding: 2px;
  background-color: white;
  border-radius: 12px;
}

.firmen_bild {
  display: flex;
}

.firmenevents-content {
  display: flex;
  flex-direction: column-reverse;
}

.aktuelles_box {
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--primary-color);
  padding: 0px;
  border-radius: 6px;
  color: var(--white-color);
  margin: 24px;
}

.beitrag_img {
  width: 100%;
  border-radius: 6px;
}

.beitrag_content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  background-color: var(--primary-color);
  width: 100%;
  border-radius: 6px;
}

.beitrag_inhalt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white-color);
  gap: 14px;
  padding: 14px;
}

.icon_sidebar {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.icons_sitemenu:hover {
  background-color: var(--primary-color);
}

.icons_sitemenu {
  padding: 6px;
  width: 52px;
  border-radius: 6px 0px 0px 6px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
}

@media (min-width: 950px) {
  .logo_header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 16%;
  }

  .reservierung_box_content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
  }

  .cover {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 2000px #041220d4;
  }

  .font-size {
    font-size: 24px;
  }

  .cards_box_icon {
    width: 62px;
  }

  .subheader {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: var(--secondary-color);
    color: var(--white-color);
    gap: 34px;
    font-size: 14px;
    font-weight: 500;
  }

  .subheader-icons {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-right: 8px;
  }

  .subheader p {
    display: flex;
  }

  .subheader-inhalt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 1150px;
    font-size: 14px;
    font-weight: 400;
    height: 24px;
  }

  .contact_information {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
  }

  .hiddenOnMobile {
    display: block;
  }

  .cover_section_feiern {
    background-position: center;
    height: 40vh;
  }

  #header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    height: 2%;
    box-shadow: inset 0 0 0 2000px rgba(8, 33, 58, 0.87);
    height: 92px;
  }

  .boxedcontainer {
    display: flex;
    margin-inline: auto;
    max-width: 1200px;
  }

  .gallerybox {
    display: grid;
    gap: 10px;
  }

  .gallery_img {
    width: 100%; /* Bilder füllen die Spalte aus */
    height: 250px; /* Feste Höhe für ein einheitliches Raster */
    object-fit: cover; /* WICHTIG: Schneidet das Bild zu, damit es nicht verzerrt wird */
    display: block;
  }

  .menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menubar li {
    color: var(--white-color);
  }

  .cover_section_feiern,
  .cover_section_reservierung,
  .cover_section_aktuelles {
    height: 50vh;
  }

  .icons_sitemenu {
    padding: 6px;
    width: 52px;
    border-radius: 6px 0px 0px 6px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
  }

  .beitrag_content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 420px;
    border-radius: 6px;
  }

  .beitrag_inhalt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white-color);
    gap: 14px;
    padding: 14px;
  }

  .beitrag_img {
    display: flex;
    align-items: stretch;
    width: 100%;
  }

  nav {
    display: flex;
    max-width: 1200px;
    justify-content: space-around;
    margin-inline: auto;
    align-items: center;
    height: max-content;
    padding: 12px;
  }

  .about-section {
    flex-direction: row;
  }

  .highlight_mk {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .reservierungform {
     padding: 2px;
  background-color: white;
  border-radius: 12px;
    width: 100%;
  }

  .highlight_blue {
    flex-direction: column;
    box-shadow: inset 0 0 0 2000px #06213df0;
  }

  .highlight_blue_content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    gap: 12px;
  }

  .hochzeitsection-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .firmen_bild {
    display: flex;
    width: 200%;
    height: auto;
  }

  .hochzeit_bild {
    display: flex;
    width: 200%;
  }

  .firmenevents-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .catering-box-inhalt {
    width: 100%;
    margin-bottom: 14px;
    gap: 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .card_speisekarte,
  .tischreservieren,
  .events {
    flex: 1;
    justify-content: space-between;
  }

  .cards_box {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    display: flex;
    gap: 12px;
    width: 100%;
  }

  .highlight_content {
    display: flex;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    color: var(--white-color);
  }

  .hightlight_img {
    display: flex;
    width: 100%;
  }
  .about_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
  }

  .menulinks {
    color: var(--white-color);
    text-transform: uppercase;
  }

  .menulinks:hover {
    color: var(--secondary-color);
  }

  .navbar a.active {
    color: var(--secondary-color);
  }

  a:focus {
    color: var(--secondary-color);
  }

  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
  }

  li:hover {
    color: var(--secondary-color);
  }

  .contact {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    gap: 32px;
    margin-bottom: 32px;
    margin-top: 32px;
  }

  .contact_form {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .gallerybox {
    display: flex;
    flex-direction: row;
  }

  .gallery_img {
    width: 50%;
  }

  .hamburger-icon {
    display: none;
  }

  .end-section {
    display: flex;
    flex-direction: column;
  }

  .end-section-box1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .title_end_section {
    font-size: 54px;
    line-height: 1em;
  }

  .footer {
    background-size: cover;
    background-position: center;
  }

  .cover_content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    text-shadow: -3px 2px 5px rgba(0, 0, 0, 0.51);
  }

  .fixed_img_title {
    margin: 42px;
    display: flex;
    width: 380px;
  }

  .title_cover {
    font-size: 42px;
    line-height: 1.4em;
  }

  .subtitle_cover {
    font-size: 32px;
    line-height: 1.4em;
  }

  .subtitle_end_section {
    font-size: 52px;
    line-height: 70px;
    font-weight: 300;
  }

  .about-section {
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
  }

  .end-section-content {
    width: 1200px;
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
  }

  .img_end_section {
    width: 100%;
  }
}
