/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f0e1; /* Heller Erdfarbton als Hintergrund */
    color: #333;
    text-align: center;
}

/* Header mit Logo, Hauptmenü und Sprachauswahl */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #6c8b74; /* Grünton aus dem Logo */
    padding: 15px 20px;
    position: relative;
    z-index: 10;
}

/* Logo */
.header-left .logo img {
    height: 50px;
    width: auto;
}

/* Sprachauswahl */
.header-right .language-dropdown {
    position: relative;
}

.dropbtn {
    background-color: #6c8b74; /* Gleicher Grünton wie im Header */
    color: #f5f0e1; /* Heller Erdfarbton für Text */
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.language-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f5f0e1;
    min-width: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    right: 0;
    border-radius: 4px;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

/* Hauptmenü */
.main-navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-navbar ul li {
    position: relative;
}

.main-navbar ul li a {
    color: #f5f0e1; /* Heller Erdfarbton für Text */
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}

/* Dropdown-Menü */
.main-navbar ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #6c8b74; /* Grünton für Dropdown-Hintergrund */
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.main-navbar ul li:hover .dropdown {
    display: block;
}

/* Dropdown-Menüeinträge */
.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    color: #f5f0e1; /* Text in hellem Erdfarbton */
    padding: 10px 15px;
    text-decoration: none;
}

.dropdown li a:hover {
    background-color: #8da487; /* Dunklerer Grünton für Hover */
}

/* Highlights-Sektion */
.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.highlight-box {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
}

.highlight-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #f5f0e1;
    text-decoration: none;
}

.highlight-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .highlights {
        grid-template-columns: 1fr;
    }
}

/* Galerie-Stile */
.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.thumbnail {
    width: 150px; /* Vorschau-Bildgröße */
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.1); /* Leichter Zoom-Effekt beim Hover */
}

/* Hover-Bild */
.hover-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -120%);
    display: none; /* Standardmäßig ausgeblendet */
    z-index: 100;
    border: 2px solid #333;
    background-color: #f5f0e1;
    border-radius: 8px;
    padding: 5px;
}

.hover-image img {
    width: 300px; /* Größe des großen Bildes */
    height: auto;
}

.image-container:hover .hover-image {
    display: block; /* Zeige großes Bild beim Hover */
}


/* Footer */
footer {
    background-color: #6c8b74; /* Gleicher Grünton wie im Header */
    color: #f5f0e1;
    padding: 20px;
}

.footer-links, .social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.footer-links a, .social-media a {
    color: #f5f0e1;
    text-decoration: none;
}

.footer-links a:hover, .social-media a:hover {
    text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  z-index: 9999;
  font-size: 14px;
  opacity: 0;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  width: 90%;
  max-width: 700px;
}

.cookie-banner.show {
  bottom: 20px;
  opacity: 1;
}

.cookie-banner.hide {
  bottom: -300px;
  opacity: 0;
}

.cookie-banner p {
  margin: 0 0 10px 0;
  text-align: center;
  color: #333;
}

.cookie-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cookie-btns button {
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-btns button:first-child {
  background: #ccc;
  color: #333;
}

.cookie-btns button:last-child {
  background: #0073e6;
  color: #fff;
}