/* normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0}input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto}input[type='search']{-webkit-appearance:none}input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* Custom Styles */
:root {
  --primary-color: #0c735f;
  --dark-color: #1a1b1f;
  --light-color: #fff;
  --text-color: #333;
  --bg-light-gray: #f7f7f7;
  --font-family-main: 'Playfair Display', serif;
  --transition-speed: 200ms;
}
*,*::before,*::after { box-sizing: border-box; }
body {
  font-family: var(--font-family-main);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.7;
  background-color: var(--bg-light-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: color var(--transition-speed) ease; }
a:hover { color: var(--dark-color); }
h1, h2, h3, h4, h5, h6 { margin: 1.5rem 0 0.75rem; font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; color: var(--primary-color); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; color: var(--primary-color); font-weight: 400; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.content-wrapper { max-width: 80%; margin: 0 auto; background-color: var(--light-color); }

/* Buttons */
.button-primary {
  display: inline-block;
  margin: 1rem 0.5rem;
  padding: 12px 25px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--light-color);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}
.button-primary:hover, .button-primary:focus { background-color: #32343a; border-color: #32343a; color: var(--light-color); }

/* Header & Navbar */
.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}
.navbar-brand { padding: 5px 0; }
.navbar-logo { max-height: 50px; width: auto; }
.navbar-menu { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: block;
  padding: 1rem;
  color: var(--dark-color);
  font-size: 14px;
  letter-spacing: 0.25px;
}
.nav-link:hover, .nav-link.active, .nav-link:focus { color: var(--primary-color); }
.nav-button { margin-left: 1rem; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-list { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--primary-color);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease, visibility 0s var(--transition-speed);
}
.dropdown-link { display: block; padding: 10px 20px; color: var(--light-color); }
.dropdown-link:hover { background-color: rgba(255,255,255,0.1); }
.menu-button { display: none; background: none; border: none; padding: 10px; cursor: pointer; z-index: 1001; }
.menu-icon-bar { display: block; width: 25px; height: 3px; background-color: var(--dark-color); margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-button.is-active .menu-icon-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button.is-active .menu-icon-bar:nth-child(2) { opacity: 0; }
.menu-button.is-active .menu-icon-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  color: var(--light-color);
  background: url('../images/Stauseehaus_start.jpg') no-repeat center center/cover;
  text-align: center;
}
.hero-content { max-width: 80%; }
.hero-logo-text { max-width: 60%; margin: 0 auto; }
.hero-subtitle { font-size: 1.8rem; font-weight: 400; margin-top: 1rem; }

/* Sections */
.intro-section { padding: 10rem 0; }
.intro-logo { max-width: 150px; margin: 0 auto 1rem; }
.intro-logo-text { max-width: 300px; margin: 0 auto 2rem; }
.intro-section p { max-width: 320px; margin: 0 auto; }

.booking-section { padding: 4rem 0; background-color: var(--light-color); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.booking-card { padding: 1.5rem; border: 1px solid #eee; border-radius: 8px; }
.booking-card img { margin: 1rem auto; }

.text-section { padding: 4rem 20px; }
.lageplan-image { margin: 2rem 0; }
.apartment-section { padding: 4rem 0; }
.apartment-section .container { padding: 0 20px; }
.feature-list { margin: 2rem 0; }
.feature-item { margin-bottom: 1.5rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  background-color: var(--primary-color);
  padding: 1.5rem;
  border-radius: 8px;
}
.gallery__item { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 1 / 1; }
.gallery__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}
.gallery__item:hover .gallery__thumbnail { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.lightbox.is-visible { opacity: 1; visibility: visible; transition: opacity 0.3s ease; }
.lightbox__content { position: relative; max-width: 90%; max-height: 90%; }
.lightbox__image { display: block; max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: none;
  border: none;
  color: var(--light-color);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-speed) ease;
}
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: 15px; right: 25px; font-size: 3rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); padding: 1rem; }
.lightbox__prev { left: 10px; }
.lightbox__next { right: 10px; }

/* Footer */
.footer { padding: 3rem 0 1.5rem; background-color: var(--primary-color); color: rgba(255,255,255,0.8); }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-brand img { width: 150px; }
.footer-content { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-block p { margin: 0; }
.footer-block a { color: var(--light-color); }
.footer-block a:hover { text-decoration: underline; }
.footer-divider { height: 1px; background-color: rgba(255,255,255,0.2); margin: 3rem auto 1.5rem; }
.footer-copyright { font-size: 14px; text-align: center; }

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .content-wrapper { max-width: 95%; }
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--light-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  .navbar-menu.is-open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-item { width: 100%; }
  .nav-link { padding: 0.75rem 0; }
  .nav-button { margin: 1.5rem 0 0; }
  .menu-button { display: block; }
  .dropdown-list { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0 0 0 1rem; }
  .dropdown-link { color: var(--dark-color); padding: 5px 0; }
  .dropdown-link:hover { color: var(--primary-color); background: none; }
  .nav-dropdown:hover .dropdown-list { display: block; }
}
@media screen and (max-width: 767px) {
  .hero { min-height: 60vh; }
  .hero-logo-text { max-width: 80%; }
  .hero-subtitle { font-size: 1.4rem; }
  .content-wrapper { max-width: 100%; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-container, .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
@media screen and (max-width: 479px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  .hero-subtitle { font-size: 1.2rem; }
  .navbar-menu { width: 100%; }
}


.apartment-hero {
  height: 450px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}

.apartment-hero--1 {
  background-image: url('../images/obj_1280x960_89454_011.jpg');
}

.apartment-hero--2 {
  background-image: url('../images/obj_1280x960_89454_013.jpg');
}

/* ADD THIS TO THE END OF YOUR style.css FILE */

.button-secondary {
  display: inline-block;
  margin: 1rem 0.5rem;
  padding: 12px 25px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}
.button-secondary:hover, .button-secondary:focus {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.reviews-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.star-rating .stars {
  font-size: 1.5rem;
  color: #fbbc05; /* Google Yellow */
}
.star-rating .rating-text {
  font-size: 1rem;
}
.google-logo {
  height: 24px;
  width: auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.review-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  background-color: #fafafa;
}
.review-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-style: italic;
  color: #555;
  position: relative;
  padding-left: 2rem;
}
.review-card blockquote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: 'Times New Roman', serif;
}
.review-card footer {
  margin-top: 1rem;
  font-weight: bold;
  color: var(--primary-color);
  text-align: right;
}

/* ADD THIS TO THE END OF YOUR style.css FILE */

/* Neue CSS-Variable für helleren Grünton */
:root {
  --primary-color-light: #e7f1ef;
}

/* Styling für die Feature-Liste mit Icons */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.feature-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary-color-light);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}
.feature-text {
  flex-grow: 1;
}
.feature-text h5 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.feature-text p {
  margin-top: 0;
  line-height: 1.6;
}

/* Kleine Anpassung für das Dropdown-Icon im Menü */
.nav-link i.fa-chevron-down {
  margin-left: 0.5em;
  font-size: 0.8em;
}
/* ADD THIS TO THE END OF YOUR style.css FILE */

/* Abstand für Icons in Buttons */
.button-primary i,
.button-secondary i {
  margin-right: 0.75em;
}
/* ADD THIS TO THE END OF YOUR style.css FILE */

/* Instagram Feed Section */
.instagram-section {
  padding: 4rem 0;
  background-color: var(--bg-light-gray); /* Hebt sich leicht vom weißen Inhaltsbereich ab */
}

.instagram-section h2 {
  margin-bottom: 0.5rem;
}

.instagram-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  color: #555;
}

.instagram-widget-container {
  margin-bottom: 2rem;
}

/* Stellt sicher, dass das Widget von LightWidget immer responsive ist */
.lightwidget-widget {
  width: 100%;
  border: 0;
  overflow: hidden;
}