/* ========================================================================== */
/* Preview Image for Feature Cards */
/* ========================================================================== */
.preview-image-wrapper {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-image {
  width: 100%;
  max-width: 220px;
  max-height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.preview-image:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .preview-image-wrapper {
    max-width: 100%;
  }
  .preview-image {
    max-width: 100%;
    max-height: 200px;
  }
}
/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@300;400;500;600;700&display=swap");

/* Base styles */
html {
  background-color: #f5f5f7;
  color: #333;
}

body,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Roboto", sans-serif;
}

body {
  padding-top: 4rem; /* Add padding for fixed navbar */
}

img {
  max-width: 100%;
}

a,
a:visited {
  text-decoration: none;
  color: white;
}

/* ==========================================================================
   Grid System
   ========================================================================== */
.row {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
  float: left;
  padding: 15px;
  box-sizing: border-box;
  display: table-cell;
  vertical-align: top;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

/* ==========================================================================
   Feature Items
   ========================================================================== */
.container_features {
  background-color: #f5f5f7;
  padding: 3em 0;
  margin: 2em 0;
  width: 100%;
}

.container_features h2 {
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.8em;
}

.item_container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item_feature {
  text-align: center;
  padding: 20px;
  margin: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item_feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.item_feature i {
  font-size: 2.5em;
  color: #7e843c;
  margin-bottom: 15px;
}

.item_feature h3 {
  font-size: 1.2em;
  color: #23404a;
  margin: 10px 0;
}

.item_feature p {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #7e843c;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: #7e843c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #23404a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #23404a;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.navbar-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: #23404a;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  color: #23404a;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #23404a;
  transition: width 0.3s ease;
}

.navbar-link:hover::after,
.navbar-link:focus::after {
  width: 100%;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
    background: #7e843c;
  }

  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .navbar-toggle .bar {
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .navbar-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #7e843c;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    gap: 0.5rem;
  }

  .navbar-list.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-item {
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .navbar-list.active .navbar-item {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-list.active .navbar-item:nth-child(1) { transition-delay: 0.1s; }
  .navbar-list.active .navbar-item:nth-child(2) { transition-delay: 0.2s; }
  .navbar-list.active .navbar-item:nth-child(3) { transition-delay: 0.3s; }
  .navbar-list.active .navbar-item:nth-child(4) { transition-delay: 0.4s; }

  .navbar-item > a {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 1.1em;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 0.2rem 0;
  }

  .navbar-item > a:hover {
    transform: translateX(5px);
  }

  .navbar-item > a::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    vertical-align: middle;
    position: relative;
    top: 2px;
  }

  .navbar-item:nth-child(1) > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
  }

  .navbar-item:nth-child(2) > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z'/%3E%3C/svg%3E");
  }

  .navbar-item:nth-child(3) > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  }

  .navbar-item:nth-child(4) > a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E");
  }

  .navbar-item:nth-child(5) > a::before {
    /* Material Icons: directions_run for activities */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13.49 5.48c1.13 0 2.05-.92 2.05-2.05s-.92-2.05-2.05-2.05-2.05.92-2.05 2.05.92 2.05 2.05 2.05zm-2.42 2.7c-.41.34-.67.85-.67 1.41 0 .99.81 1.8 1.8 1.8.56 0 1.07-.26 1.41-.67l1.1-1.32c.2-.24.51-.38.83-.38.32 0 .63.14.83.38l2.54 3.04c.34.41.85.67 1.41.67.99 0 1.8-.81 1.8-1.8 0-.56-.26-1.07-.67-1.41l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.56 0-1.07.26-1.41.67l-1.1 1.32c-.2.24-.51.38-.83.38-.32 0-.63-.14-.83-.38l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.99 0-1.8.81-1.8 1.8 0 .56.26 1.07.67 1.41l2.54 3.04c.34.41.85.67 1.41.67.56 0 1.07-.26 1.41-.67l1.1-1.32c.2-.24.51-.38.83-.38.32 0 .63.14.83.38l2.54 3.04c.34.41.85.67 1.41.67.99 0 1.8-.81 1.8-1.8 0-.56-.26-1.07-.67-1.41l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.56 0-1.07.26-1.41.67l-1.1 1.32c-.2.24-.51.38-.83.38-.32 0-.63-.14-.83-.38l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.99 0-1.8.81-1.8 1.8 0 .56.26 1.07.67 1.41l2.54 3.04c.34.41.85.67 1.41.67.56 0 1.07-.26 1.41-.67l1.1-1.32c.2-.24.51-.38.83-.38.32 0 .63.14.83.38l2.54 3.04c.34.41.85.67 1.41.67.99 0 1.8-.81 1.8-1.8 0-.56-.26-1.07-.67-1.41l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.56 0-1.07.26-1.41.67l-1.1 1.32c-.2.24-.51.38-.83.38-.32 0-.63-.14-.83-.38l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.99 0-1.8.81-1.8 1.8 0 .56.26 1.07.67 1.41l2.54 3.04c.34.41.85.67 1.41.67.56 0 1.07-.26 1.41-.67l1.1-1.32c.2-.24.51-.38.83-.38.32 0 .63.14.83.38l2.54 3.04c.34.41.85.67 1.41.67.99 0 1.8-.81 1.8-1.8 0-.56-.26-1.07-.67-1.41l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.56 0-1.07.26-1.41.67l-1.1 1.32c-.2.24-.51.38-.83.38-.32 0-.63-.14-.83-.38l-2.54-3.04c-.34-.41-.85-.67-1.41-.67-.99 0-1.8.81-1.8 1.8 0 .56.26 1.07.67 1.41l2.54 3.04c.34.41.85.67 1.41.67.56 0 1.07-.26 1.41-.67l1.1-1.32c.2-.24.51-.38.83-.38.32 0 .63.14.83.38l2.54 3.04c.34.41.85.67 1.41.67.99 0 1.8-.81 1.8-1.8 0-.56-.26-1.07-.67-1.41z'/%3E%3C/svg%3E");
  }

  .navbar-item > a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-link {
    font-size: 1.5rem;
  }

  .navbar-list {
    padding: 1.5rem;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   Banner & Hero Section
   ========================================================================== */
.banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  background-color: #f5f5f7;
}

#BANNER_IMAGE_CONTAINER {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#BANNER_IMAGE_CONTAINER img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#BANNER_IMAGE_CONTAINER img.active {
  opacity: 1;
}

#BANNER_TEXT_CONTAINER {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
  border-radius: 16px;
  padding: 2.5em 3em;
  text-align: center;
  min-width: 300px;
  max-width: 90vw;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

#BANNER_TEXT_CONTAINER:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%) scale(1.02);
}

#BANNER_TEXT_CONTAINER h1 {
  font-size: 2.8em;
  font-weight: 700;
  color: #23404a;
  margin-bottom: 0.2em;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  word-wrap: break-word;
  white-space: normal;
}

#BANNER_TEXT_CONTAINER h2 {
  font-size: 1.4em;
  font-weight: 500;
  color: #23404a;
  margin-top: 0.2em;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(41, 128, 185, 0.08);
}

.banner-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.banner-arrow.prev {
  left: 20px;
}

.banner-arrow.next {
  right: 20px;
}

.banner-arrow i {
  color: #fff;
  font-size: 24px;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.container_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-grow: 4;
  padding-top: 2em;
  padding-bottom: 5em;
}

.IMG_ICON {
  fill: rgba(255, 255, 255, 0.8);
  position: absolute;
}

#IMG_BACKWARD {
  left: 0px;
  height: 5rem;
}

#IMG_FORWARD {
  right: 0px;
  height: 5rem;
}

#IMG_CLOSE {
  top: 0px;
  right: 0px;
  height: 4rem;
  color: red;
}

.container_fullscreen {
  display: none;
}

.container_fullscreen.fullScreenMode {
  z-index: 101;
  display: flex;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100vw;
  align-items: center;
  background-color: #23232e;
  background-image: linear-gradient(to top, #23232e 0%, #141418 74%);
  scroll-behavior: unset;
}

.FullScreenImg {
  max-width: 100vw;
  height: auto;
  margin: auto;
}

.container_main_img {
  padding-top: 8rem;
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.content_main {
  background: rgba(0, 0, 0, 0.6);
  margin-top: -10rem;
}

.content_main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 2500px rgba(255, 255, 255, 0.95);
  filter: blur(50px);
}

.section_gallery {
  background: rgba(255, 255, 255, 0.5);
  padding: 2.5em 3em;
  margin: 2em auto;
  max-width: 1920px;
  box-sizing: border-box;
}

.gallery-heading {
  width: 100%;
  text-align: center;
}

.gallery-heading h2 {
  color: #f5f5f7;
  margin-bottom: 1em;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.page_container {
  margin-top: 5em;
  margin-bottom: 5em;
}

.content {
  max-width: 1920px;
  margin: auto;
  padding: 50px;
}

.container_bright {
  background-color: #f5f5f7;
  color: #333;
  text-align: center;
  padding-top: 3em;
}

.container_dark {
  background-color: #7e843ca6;
  color: #f5f5f7;
  text-align: center;
  padding-top: 3em;
  padding-bottom: 6em;
}

.container_description {
  background-color: #7e843ca6;
  color: #f5f5f7;
  text-align: center;
  margin-top: 5em;
  padding: 2em 20%;
}

.container_calendar {
  color: #222;
  align-items: center;
  text-align: center;
  width: 100%;
  background-color: #7e843ca6;
  padding-top: 5em;
  padding-bottom: 5em;
  margin: auto;
}

.container_calendar iframe {
  margin: auto;
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.container_calendar_header {
  font-size: 1.3em;
  margin-bottom: 4em;
}

/* ==========================================================================
   Tables & Pricing
   ========================================================================== */
.container_prices {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.container_prices::-webkit-scrollbar {
  display: none;
}

/* Scroll indicator for mobile */
@media (max-width: 768px) {
  .container_prices::after {
    content: '← Scroll →';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(35, 64, 74, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  /* Hide indicator when scrolled */
  .container_prices.scrolled::after {
    opacity: 0;
  }
}

.villaTable {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 1em;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.villaTable th,
.villaTable td {
  border: 1px solid #626730a6; /* light green border */
  padding: 0.75em 1em;
  text-align: center;
}

.villaTable thead th {
  background: #626730a6; /* dark green */
  color: #fff;
  font-weight: bold;
  border-bottom: 2px solid #626730a6;
}

.villaTable tbody th {
  background: #ffffff; /* very light green */
  color: #222;
  font-weight: 500;
}

.villaTable tbody tr:nth-child(even) {
  background: #c7c9c4; /* alternate row light green */
}

.villaTable tbody tr:hover {
  background: #c8e6c9; /* hover row green */
}

.villaTable td[colspan] {
  background: #f9fff9;
  color: black;
  font-weight: 500;
}

/* Responsive table styles */
@media (max-width: 768px) {
  .container_prices {
    padding: 1rem 0;
    max-width: 100%;
  }

  .villaTable th,
  .villaTable td {
    padding: 0.7rem;
    font-size: 0.8rem;
  }

  .villaTable th:first-child {
    min-width: 112px;
  }

  .villaTable th:not(:first-child) {
    min-width: 63px;
  }
}

@media (max-width: 480px) {
  .villaTable th,
  .villaTable td {
    padding: 0.5rem;
    font-size: 0.7rem;
  }

  .villaTable th:first-child {
    min-width: 98px;
  }

  .villaTable th:not(:first-child) {
    min-width: 56px;
  }
}

/* Fix for mobile horizontal scroll */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container_dark {
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn-pictures {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #23404a;
  border-radius: 5px;
  color: #23404a;
  transition: background-color 0.3s, color 0.3s;
  margin: 2em auto;
  width: fit-content;
  min-width: 200px;
}

.btn-pictures:hover {
  background-color: #23404a;
  color: #f5f5f7;
}

.btn-pictures h2 {
  margin: 0;
  white-space: nowrap;
  color: #23404a;
}

.btn-pictures:hover h2 {
  color: #f5f5f7;
}

.btn-pictures a {
  color: #23404a;
  text-decoration: none;
}

.btn-pictures:hover a {
  color: #f5f5f7;
}

/* ==========================================================================
   Legal & Footer Sections
   ========================================================================== */
.container_dsgvo {
  background-color: #7e843ca6;
  color: white;
  padding: 2em;
  margin-top: 10em;
}

.container_dsgvo a,
.container_dsgvo a:visited {
  text-decoration: underline;
  color: white;
}

#COPYRIGHT {
  color: white;
  background-color: #333;
  width: 100%;
  text-align: center;
  font-size: small;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#COPYRIGHT i,
#COPYRIGHT a,
#COPYRIGHT a:visited {
  text-decoration: none;
  color: white;
  font-size: medium;
}

/* ==========================================================================
   Loading & Utility Classes
   ========================================================================== */
.img-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #555;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.gallery-img-wrapper {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   User Selection & Text Selection
   ========================================================================== */
*::selection {
  background-color: transparent;
}

*::-moz-selection {
  background-color: transparent;
}

* {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type="text"],
textarea,
[contenteditable] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(126, 132, 60, 0.25);
  }
  
  .navbar-list.active {
    display: flex;
  }
  
  .navbar-item {
    width: 100%;
    text-align: center;
  }
  
  .navbar-item > a {
    display: block;
    font-size: 1.2em;
    color: #2e3335;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 0.2rem 1rem;
  }
  
  .navbar-item > a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #23404a;
  }
  
  .navbar-item > a::after {
    display: none;
  }

  .item_feature {
    width: 100% !important;
    margin: 15px 0;
    float: none;
    display: block;
  }

  .item_container {
    display: flex;
    flex-direction: column;
  }

  .content {
    padding: 3px;
  }

  .container_description {
    margin-top: 2em;
    padding: 2em;
  }

  td,
  th {
    font-size: 0.7em;
    border: 1px solid #dee2e6;
    padding: 2px;
  }

  table {
    width: 100%;
  }

  #IMG_BACKWARD {
    bottom: 50px;
  }

  #IMG_FORWARD {
    bottom: 50px;
  }

  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}

  .banner {
    height: 50vh;
    min-height: 300px;
  }

  #BANNER_TEXT_CONTAINER {
    padding: 1.5em 2em;
    min-width: 250px;
  }

  #BANNER_TEXT_CONTAINER h1 {
    font-size: 2em;
  }

  #BANNER_TEXT_CONTAINER h2 {
    font-size: 1.2em;
  }
}

@media (max-width: 700px) {
  #BANNER_TEXT_CONTAINER {
    padding: 1.2em 1.5em;
    min-width: 280px;
    max-width: 95vw;
  }

  #BANNER_TEXT_CONTAINER h1 {
    font-size: 2em;
  }
}

@media (max-width: 600px) {
  .container_description,
  .page_description,
  .container_dsgvo {
    padding: 0.7em 0.2em 0.7em 0.2em;
    margin: 1em 0.1em 1em 0.1em;
  }

  .item_feature {
    width: 100% !important;
    margin: 15px 0;
    float: none;
    display: block;
  }

  .item_container {
    display: flex;
    flex-direction: column;
  }

  .container_describtion {
    padding: 0.5em 0.1em 0.5em 0.1em;
  }

  .banner-caption h1 {
    font-size: 1.2em;
  }

  .col-m-1 {width: 8.33%;}
  .col-m-2 {width: 16.66%;}
  .col-m-3 {width: 25%;}
  .col-m-4 {width: 33.33%;}
  .col-m-5 {width: 41.66%;}
  .col-m-6 {width: 50%;}
  .col-m-7 {width: 58.33%;}
  .col-m-8 {width: 66.66%;}
  .col-m-9 {width: 75%;}
  .col-m-10 {width: 83.33%;}
  .col-m-11 {width: 91.66%;}
  .col-m-12 {width: 100%;}

  .banner {
    height: 40vh;
    min-height: 250px;
  }

  #BANNER_TEXT_CONTAINER {
    padding: 1.2em 1.5em;
    min-width: 200px;
  }

  #BANNER_TEXT_CONTAINER h1 {
    font-size: 1.6em;
  }

  #BANNER_TEXT_CONTAINER h2 {
    font-size: 1em;
  }
}

/* ==========================================================================
   Typography & Headings
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  color: #23404a;
  margin: 0;
  line-height: 1.3;
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
}

h3 {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 0.5em;
}

/* Banner text container */
#BANNER_TEXT_CONTAINER h1,
#BANNER_TEXT_CONTAINER h2 {
  color: #23404a;
}

/* Container headings */
.container_description h2,
.container_features h2,
.container_calendar h2,
.gallery-heading h2,
.item_description h2 {
  color: #23404a;
}

/* Feature items */
.item_feature h3 {
  color: #23404a;
}

/* Dark background overrides */
.container_dark h2,
.container_description h2,
.container_calendar h2,
.gallery-heading h2 {
  color: #f5f5f7;
}

/* Update media queries for responsive headings */
@media (max-width: 700px) {
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.5em;
  }
  
  h3 {
    font-size: 1.1em;
  }
  
  #BANNER_TEXT_CONTAINER h1 {
    font-size: 1.3em;
  }
  
  #BANNER_TEXT_CONTAINER h2 {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8em;
  }
  
  h2 {
    font-size: 1.3em;
  }
  
  h3 {
    font-size: 1em;
  }
}

/* Update existing heading styles */
#BANNER_TEXT_CONTAINER h1 {
  font-size: 2.5em;
  font-weight: 700;
  color: #23404a;
  margin-bottom: 0.2em;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px rgba(44,62,80,0.08);
}

#BANNER_TEXT_CONTAINER h2 {
  font-size: 1.3em;
  font-weight: 500;
  color: #23404a;
  margin-top: 0.2em;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(41,128,185,0.08);
}

.container_description h2,
.container_features h2,
.container_calendar h2,
.gallery-heading h2,
.item_description h2 {
  color: #23404a;
  margin-bottom: 1em;
}

.item_feature h3 {
  color: #23404a;
  margin: 10px 0;
}

/* ==========================================================================
   Gallery Styles
   ========================================================================== */
.gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-container.active {
  display: flex;
  opacity: 1;
}

.gallery-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav i {
  color: white;
  font-size: 24px;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-exit {
  top: 20px;
  right: 20px;
  transform: none;
  background: rgba(255, 255, 255, 0.15);
}

.gallery-exit:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* Loading spinner */
.gallery-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Touch feedback */
.gallery-touch-feedback {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: touch-feedback 0.3s ease-out;
}

@keyframes touch-feedback {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .gallery-image {
    max-width: 95%;
    max-height: 95vh;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav i {
    font-size: 20px;
  }

  .gallery-exit {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-image {
    max-width: 100%;
    max-height: 100vh;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
  }

  .gallery-nav i {
    font-size: 18px;
  }

  .gallery-exit {
    top: 10px;
    right: 10px;
  }
}

/* ========================================================================== */
/* Preview Icon for Feature Cards */
/* ========================================================================== */
.preview-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  cursor: pointer;
  position: relative;
}

.preview-icon .material-icons,
.preview-trigger.material-icons {
  font-size: 1.6em;
  color: #7e843c;
  vertical-align: middle;
  transition: color 0.2s, transform 0.2s;
  cursor: pointer;
}

.preview-icon .material-icons:hover,
.preview-trigger.material-icons:hover {
  color: #23404a;
  transform: scale(1.15);
}

.preview-icon[title]::after {
  content: attr(title);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #23404a;
  color: #fff;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  margin-left: 8px;
  transition: opacity 0.2s;
  z-index: 10;
}

.preview-icon:hover[title]::after {
  opacity: 1;
}

/* ========================================================================== */
/* Fullscreen Preview Overlay for Feature Images */
/* ========================================================================== */
#FULLSCREEN_CONTAINER {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 20, 24, 0.96);
  align-items: center;
  justify-content: center;
  text-align: center;
}

#FULLSCREEN_CONTAINER.active,
#FULLSCREEN_CONTAINER.show {
  display: flex;
}

#FULLSCREEN_CONTAINER img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 30px #000;
  margin: auto;
}

#FULLSCREEN_CONTAINER .fullscreen-close {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: 2.5em;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  background: rgba(35, 64, 74, 0.7);
  border-radius: 50%;
  padding: 0 12px;
  transition: background 0.2s, color 0.2s;
}

#FULLSCREEN_CONTAINER .fullscreen-close:hover {
  background: #7e843c;
  color: #fff;
}