* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-text-light: #ffffff;
  --color-text-dark: #222222;
  --color-bg-button: #000000;
  --color-bg-button-hover: #3a46af;
  --color-bg-nav: #ffffff;
  --color-bg-nav-hover: #ffffff;
}

body {
  font-family: Arial, sans-serif;
  color: var(--color-text-light);
  text-align: center;
}

.site-header {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.main-nav a {
  background: var(--color-bg-nav);
  color: var(--color-text-dark);
  text-decoration: none;
  padding: 10px 18px;
  margin-left: 10px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.main-nav a:hover {
  background: #5d7694;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  background: #000;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  transition: 0.3s;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  #menu-toggle:checked + .hamburger + .main-nav {
    display: flex;
  }

  .main-nav a {
    margin: 10px 0;
    width: 140px;
  }
}

.hero {
  background-image: url("https://rare-gallery.com/uploads/posts/808303-Zakynthos-Greece-Coast-Sea-From-above-Crag.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

.btn {
  background: var(--color-bg-button);
  color: var(--color-text-light);
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--color-bg-button-hover);
}

#landschaften {
  background-color: #5d7694;
  padding-top: 110px;
  color: #ffffff;
}

.intro h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #dcdcdc;
  padding-top: 20px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.landschaft {
  background-color: #000000;
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px;
  max-width: 480px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.landschaft:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.landschaft img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ffffff;
  margin-bottom: 10px;
}

.landschaft p {
  font-size: 0.95rem;
  color: #ffffff;
  margin-top: 8px;
  min-height: 150px;
}

#Speisen {
  padding-top: 120px;;
  color: #ffffff;
  background-image: url("img/black-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-form-section {
  background: #b0e3e7;
  color: #000000;
  padding: 40px;
  max-width: 850px;
  margin: 120px auto 60px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.contact-form-section h1 {
  text-align: center;
  margin-bottom: 12px;
  color: #000;
}

.contact-form-section p {
  text-align: center;
  margin-bottom: 28px;
  color: #000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

label {
  color: #000;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.hinweis {
  font-size: 13px;
  color: #333;
  text-align: center;
}

.btn {
  background: hsl(207, 54%, 28%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  align-self: center;
}

.btn:hover {
  background: #5d7694;
}
.kontakt-seite {
  background: url("img/beach.jpg") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

.impressum-abschnitt {
  display: none;
}

#startseite .impressum-abschnitt {
  display: block;
  background: #b0e3e7;
  color: #000000;
  padding: 60px 20px 80px 20px;
  text-align: left;
}

#startseite .impressum-wrapper {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

#startseite .impressum-wrapper h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #000000;
}

#startseite .impressum-wrapper h3 {
  margin-top: 25px;
  color: #000000;
  font-size: 1.3rem;
}

#startseite .impressum-wrapper p {
  margin-top: 8px;
  color: #000000;
  font-size: 1rem;
}

.site-footer {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.4;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.site-footer a {
  color: #ffeb99;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}
