:root {
  --font-primary: "Montserrat", Arial, sans-serif;
  --font-secondary: "Roboto", Arial, sans-serif;

  --primary-color: #9c1c24;
  --secondary-color: #093459;
  --white-color: #ffffff;
  --dark-color: #000000;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: "Montserrat";
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  background-image: url(img/bg-body.jpg);
  box-shadow: inset 0 0 0 2000px #ffffffe3;
  background-size: contain;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.text-uppercase {
  text-transform: uppercase;
}

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

.button {
  padding: 10px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: var(--white-color) 2px solid;
  font-size: 18px;
  border-radius: 10px;
  font-family: "Roboto";
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}

a {
  font-size: 18px;
  text-decoration: none;
  list-style: none;
  color: var(--dark-color);
}

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

.hiddenOnDesktop {
  display: none;
}

.boxed-container {
  width: 1150px;
  margin-inline: auto;
  display: flex;
}

header {
  display: flex;
  justify-content: space-around;
  position: fixed;
  width: 100vw;
  top: 0;
  align-items: center;
  height: 110px;
  padding: 32px;
  background-color: var(--white-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.header_logo {
  width: 118px;
}

h1 {
  color: var(--primary-color);
  font-family: "Roboto";
  font-size: 52px;
  margin-bottom: 0;
}

h2 {
  color: var(--primary-color);
  font-family: "Roboto";
  font-size: 24px;
  margin-top: 0;
}

h3 {
  color: var(--primary-color);
  font-family: "Roboto";
  font-size: 20px;
  margin-top: 0;
}

hr {
  width: 80px;
  color: var(--primary-color);
  margin-top: 6px;
  margin-bottom: 6pxs;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

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

navbar a {
  list-style: none;
  text-decoration: none;
  color: var(--dark-color);
  text-transform: uppercase;
}

navbar a:hover {
  color: var(--primary-color);
}

navbar a:focus {
  color: var(--primary-color);
}

.cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-bottom: 32px;
  background-image: url(img/cover-start.jpg);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.808);
}

.cover-störer {
  width: 232px;
  position: absolute;
  right: 250px;
  top: 350px;
  rotate: 10deg;
  z-index: 10;
}

.cover-button {
  font-size: 22px;
}

.cover-inhalt {
  margin-top: 82px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  color: var(--white-color);
  gap: 18px;
}

.cover-icon {
  width: 32px;
}

.cover-inhalt p {
  padding-bottom: 0px;
  padding-top: 0px;
  font-size: 26px;
  display: flex;
  gap: 12px;
  font-weight: 600;
}

.cover_logo {
  width: 232px;
}

.cover-subtitle {
  font-size: 32px;
}

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

.welcome_inhalt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.welcome_title {
  font-size: 32px;
}

.welcome_subtitle {
  font-weight: 100;
  font-size: 24px;
}

.welcome_img {
  object-fit: cover;
  width: 432px;
  height: 432px;
  margin: 32px;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.section_2 {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.section_2_inhalt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section_2_title {
  font-size: 32px;
}

.section_2_subtitle {
  font-weight: 100;
  font-size: 24px;
}

.section_2_img {
  object-fit: contain;
  width: 432px;
  margin: 32px;
  border-radius: 12px;
  /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); */
}

.section_3_inhalt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section_3_title {
  font-size: 32px;
}

.section_3_subtitle {
  font-weight: 100;
  font-size: 24px;
}

.section_3_img {
  width: 432px;
  object-fit: cover;
  margin: 32px;
  border-radius: 12px;
  /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); */
}

.section_4 {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-top: 32px;
  padding-bottom: 32px;
}

.section_4_inhalt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section_4_title {
  font-size: 32px;
}

.section_4_subtitle {
  font-weight: 100;
  font-size: 24px;
}

.section_4_img {
  width: 432px;
  object-fit: cover;
  margin: 32px;
  border-radius: 12px;
  /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); */
}

.section_5_inhalt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.section_5_inhalt_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  gap: 8px;
}

.section_5_title {
  font-size: 32px;
}

.section_5_subtitle {
  font-weight: 100;
  font-size: 24px;
}

.section_5_img {
  width: 432px;
  object-fit: cover;
  margin: 32px;
  border-radius: 12px;
  /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); */
}

.reservierung {
  background-image: url(img/reservation-img.jpg);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  background-position: center;
  background-size: cover;
}

.reservierung-inhalt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-top: 124px;
  margin-bottom: 124px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 32px;
  border-radius: 12px;
  gap: 12px;
}

.information_textbox {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.contact_form {
  margin-left: 320px;
}

.information_textbox a {
  text-decoration: none;
  list-style: none;
  color: var(--secondary-color);
  text-align: center;
}

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

.information {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  padding-top: 32px;
  padding-bottom: 32px;
  background-image: url(img/mandala.png);
  box-shadow: inset 0 0 0 2000px #fffffff1;

  background-position: center;
  background-size: cover;
}

footer {
  position: flex;
  width: 100%;
  border-top: solid var(--primary-color) 4px;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 32px;
  overflow: hidden;
  bottom: 0;
}

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

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

.footer_info a {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.icon-footer-info {
  /*   filter: brightness(0) invert(1);
 */
  width: 24px;
}

footer a:hover {
  color: var(--primary-color);
}

.footer_inhalt_infos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 34px;
  color: var(--dark-color);
  background-color: var(--white-color);
  padding: 8px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 22px;
}

.footer_inhalt_infos a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-size: 14px;
}
.footer_inhalt_infos p {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.footer_inhalt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: var(--white-color);
  gap: 12px;
}

.rechtliches_footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.rechtliches_footer a {
  gap: 8px;
  text-decoration: none;
  list-style: none;
  color: var(--white-color);
}

.rechtliches_footer a:hover {
  color: var(--dark-color);
}

.footer_logo {
  width: 132px;
  filter: brightness(0) invert(1);
}

.subfooter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 6px;
  margin-top: 22px;
}

[id] {
  scroll-margin-top: 120px;
}

.subfooter p {
  font-size: 14px;
}

.subfooter a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 14px;
}
.subfooter a:hover {
  color: var(--primary-color);
}

.footer_socialicons {
  width: 32px;
}

.column {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin: 2px auto;
}

.column img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  border-radius: 4px;
}

.column-hotel {
  width: 250%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 2px auto;
}

.column-hotel img {
  width: 100%;
  height: 222px;
  object-fit: cover;
  border-radius: 4px;
}

.popup-1 {
  position: fixed;
  text-align: center;
  border-radius: 10px;
  margin: 32px;
  width: 420px;
  padding: 32px;
  top: 25%;
  margin-inline: auto;
  background-color: var(--white-color);
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

dialog[open] {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.7);
  z-index: 9999;
  gap: 12px;
  overflow: hidden;
}

li {
  text-decoration: none;
  list-style: none;
}

.close-popup-icon {
  width: 32px;
  right: 34px;
  top: 38px;
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50px;
  padding: 4px;
}

.klima_icon {
  width: 52px;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 8px;
}

.impressum-datenschutzbox {
  margin-top: 92px;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
  padding-bottom: 52px;
  gap: 12px;
}

.restaurant_open {
  border-radius: 0px 12px 0px 0px;
  bottom: 0px;
  position: fixed;
  padding: 8px;
  background-color: #276830; /* Dein Grün */
  color: white;
  font-size: 14px;
}

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

.restaurant_vacation {
  border-radius: 0px 10px 0px 0px;
  bottom: 0px;
  position: fixed;
  padding: 6px;
  background-color: #ffcc00; /* Gelb für Urlaub */
  color: black;
  font-size: 14px;
}

.color_red {
  color: var(--primary-color);
}

.cover_reservierung {
  padding-top: 92px;
  height: 60vh;
  display: flex;
  background-image: url(img/reservierung-cover.jpg);
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7);
  background-position: center;
  background-size: cover;
}

.cover_reservierung_inhalt {
  color: var(--white-color);
  padding: 32px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.info-box-reservation {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .hiddenOnMobile {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  .padding-container {
    padding: 20px;
  }

  .cover-inhalt {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-top: 52px;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-top: 82px;
  }

  .cover-störer {
    width: 112px;
    position: absolute;
    right: 20px;
    top: 350px;
    rotate: 10deg;
    z-index: 10;
  }

  .cover {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-position: left;
    width: 100%;
    height: max-content;
  }

  .welcome_inhalt {
    display: flex;
    flex-wrap: wrap;
  }

  .welcome_inhalt_box {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .welcome_img {
    width: 100%;
    margin: 0px;
  }

  .cover_logo {
    width: 92px;
    background-size: cover;
    background-position: center;
  }

  .cover-subtitle {
    font-size: 28px;
  }

  .speisekarte_inhalt {
    flex-direction: column;
    width: 100%;
  }

  .speisekarte-textbox {
    padding: 20px;
  }

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

  .reservierung {
    display: flex;
    padding: 20px;
    background-size: cover;
  }

  .information_inhalt {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 0;
  }

  .information_textbox {
    padding-bottom: 12px;
  }

  .information {
    width: 100%;
    display: flex;
  }

  .footer_inhalt {
    width: 100%;
  }

  .impressum-datenschutzbox {
    width: 100%;
    padding: 20px;
    overflow: hidden;
  }

  .button-cover {
    font-size: 28px;
  }

  .cover_reservierung {
    margin-top: 32px;
    height: 50vh;
  }

  .form_inhalt_box {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
    padding: 20px;
  }

  .info-box-reservation {
    padding-top: 0;
    padding-bottom: 0;
  }

  .popup-1 {
    margin: 20px;
    width: 90%;
  }

  .header_logo {
    width: 110px;
  }

  #header {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section_2_img {
    width: 100%;
    margin: 0;
  }
  .section_3_img {
    width: 100%;
    margin: 0;
  }

  .section_3 {
    width: 100%;
  }

  .section_2 {
    width: 100%;
  }

  .section_5_inhalt_box {
    width: 100%;
    flex-direction: column-reverse;
  }

  .column-hotel {
    width: 100%;
  }

  .section_5 {
    width: 100%;
  }

  .section_2_inhalt_box {
    width: 100%;
    flex-direction: column;
  }

  .section_3_inhalt_box {
    width: 100%;
    flex-direction: column-reverse;
  }

  .section_4_inhalt_box {
    width: 100%;
  }

  header .button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 42px;
  }

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

  .danke_box {
    overflow: hidden;
  }

  .footer_inhalt_infos {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    background-color: transparent;
  }

  .footer_inhalt_infos p {
    font-size: 18px;
    color: var(--white-color);
  }

  .footer_inhalt_infos a {
    font-size: 18px;
    color: var(--white-color);
  }

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

  .icon-footer-info {
    filter: brightness(0) invert(1);
  }

  .cover-icon {
    display: flex;
    margin-top: 2px;
  }

  .cover p {
    font-size: 20px;
    font-weight: 700;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
