:root {
          --primary: #5c7d4f; /*#635f54; /*#3f414d; #2b6cb0;*/
          --secondary: #f7fafc;
          --accent: #edf2f7;
          --dark: #1a202c;
        }

        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
          color: var(--dark);
          background-color: var(--secondary);
          scroll-behavior: smooth;
        }

        header {
          height: 100vh;
          background: url("bilder/Haus71_Startseite.jpg") center/cover no-repeat;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          text-align: center;
          color: white;
          position: relative;
        }

        header::after {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.5);
        }

        header h1, header p {
          position: relative;
          z-index: 2;
        }

        header h1 {
          font-size: 3rem;
          margin-bottom: 1rem;
        }

        nav.nav {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          background: rgba(255, 255, 255, 0.95);
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 1rem 2rem;
          backdrop-filter: blur(6px);
          z-index: 1000;
        }

        .nav-left {
          display: flex;
          align-items: center;
          gap: 0.6rem;
        }

        .nav-links {
          display: flex;
          gap: 1.2rem;
          justify-content: center;
          flex-wrap: wrap;
          transition: transform 0.3s ease;
        }

        .nav-links a {
          color: var(--dark);
          text-decoration: none;
          font-weight: 500;
          transition: color 0.2s ease;
        }

        .nav-links a:hover {
          color: var(--primary);
        }

        .logo {
          max-height: 40px;
          height: auto;
          width: auto;
        }

        .nav-stars a {
          color: #d4af37;
          font-size: 1.2rem;
          text-decoration: none;
          transition: transform 0.2s ease;
        }

        .nav-stars a:hover {
          transform: scale(1.1);
        }

        .burger {
          display: none;
          font-size: 1.8rem;
          cursor: pointer;
          color: var(--primary);
          user-select: none;
        }

        /* === MOBILE STYLES === */
        @media (max-width: 900px) {
          nav.nav {
            flex-wrap: wrap;
            justify-content: space-between;
            position: relative;
          }

          .burger {
            display: block;
            z-index: 1001;
          }

          .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem 0;
            transform: translateY(-200%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          }

          .nav-links.open {
            transform: translateY(0);
          }

          .nav-stars {
            display: none;
          }
        }

        section {
          padding: 5rem 1.5rem;
          max-width: 1000px;
          margin: auto;
        }

        section h2 {
          text-align: center;
          margin-bottom: 2rem;
          font-size: 2rem;
          color: var(--primary);
        }

        .features {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          width: 100vw;
          position: relative;
          left: 50%;
          margin-left: -50vw;
          padding: 5rem 0;
          text-align: center;
        }

        .features > h2 {
          color: var(--primary);
          font-size: 2rem;
          margin-bottom: 3rem;
        }

        .features-inner {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2rem;
          justify-items: center;
          max-width: 1200px;
          margin: 0 auto;
        }

        .feature {
          background: white;
          border-radius: 20px;
          padding: 2rem;
          text-align: center;
          width: 100%;
          max-width: 350px;
          box-shadow: 0 8px 20px rgba(0,0,0,0.08);
          opacity: 0;
          transform: translateY(30px);
          transition: all 0.6s ease-out;
        }

        .feature.visible {
          opacity: 1;
          transform: translateY(0);
        }

        .feature:hover {
          transform: translateY(-5px);
          box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }

        .feature .icon {
          font-size: 2.8rem;
          margin-bottom: 1rem;
          color: var(--primary);
        }

        .feature h3 {
          margin-bottom: 0.7rem;
          font-size: 1.4rem;
          color: var(--dark);
        }

        .feature p {
          color: #4a5568;
          font-size: 1rem;
          line-height: 1.6;
        }

        .feature-list-wrapper {
          max-width: 800px;
          margin: 4rem auto 0;
          text-align: center;
        }

        .feature-list-label {
          display: inline-block;
          color: var(--primary);
          font-weight: 600;
          margin-bottom: 0.5rem;
          font-size: 1.1rem;
        }

        .feature-list-divider {
          border: none;
          height: 2px;
          background: rgba(43, 108, 176, 0.3);
          width: 50px;
          margin: 0.5rem auto 2rem auto;
          border-radius: 1px;
        }

        .feature-list {
          padding: 2rem;
          background: rgba(255, 255, 255, 0.9);
          border-radius: 15px;
          box-shadow: 0 8px 20px rgba(0,0,0,0.08);
          list-style: none;
          text-align: left;
          line-height: 1.6;
          position: relative;
          transition: all 0.5s ease;
        }

        .feature-list li {
          padding-left: 1.5rem;
          margin-bottom: 0.8rem;
          position: relative;
          color: #4a5568;
          font-size: 1rem;
        }

        .feature-list li::before {
          content: "✔";
          position: absolute;
          left: 0;
          color: var(--primary);
          font-weight: bold;
        }

        .fade-in {
          opacity: 0;
          transform: translateY(30px);
          transition: all 0.6s ease-out;
        }

        .fade-in.visible {
          opacity: 1;
          transform: translateY(0);
        }

         .service {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          width: 100vw;
          position: relative;
          left: 50%;
          margin-left: -50vw;
          padding: 5rem 0;
          text-align: center;
        }

        .service h2 {
          color: var(--primary);
          font-size: 2rem;
          margin-bottom: 2rem;
        }

        .service-intro {
          max-width: 700px;
          color: #4a5568;
          font-size: 1.1rem;
          margin: 0 auto 3rem auto;
          line-height: 1.6;
        }

        .service-list-wrapper {
          max-width: 600px;
          margin: 0 auto;
          text-align: center;
        }

        .service-label {
          display: inline-block;
          color: var(--primary);
          font-weight: 600;
          margin-bottom: 0.5rem;
          font-size: 1.1rem;
        }

        .service-divider {
          border: none;
          height: 2px;
          background: rgba(43, 108, 176, 0.3);
          width: 50px;
          margin: 0.5rem auto 2rem auto;
          border-radius: 1px;
        }

        .service-list {
          list-style: none;
          text-align: left;
          background: rgba(255, 255, 255, 0.95);
          border-radius: 15px;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
          padding: 2rem;
          line-height: 1.7;
          color: #4a5568;
          margin: 0 auto;
        }

        .service-list li {
          position: relative;
          padding-left: 1.5rem;
          margin-bottom: 0.8rem;
        }

        .service-list li::before {
          content: "✔";
          position: absolute;
          left: 0;
          color: var(--primary);
          font-weight: bold;
        }

        .prices {
          padding: 5rem 1.5rem;
          text-align: center;
          background: var(--accent);
        }

        .prices h2 {
          color: var(--primary);
          font-size: 2rem;
          margin-bottom: 3rem;
        }

        .prices-table {
          max-width: 600px;
          margin: 0 auto 2rem auto;
          overflow-x: auto;
        }

        .prices-table table {
          width: 100%;
          border-collapse: collapse;
          background: white;
          border-radius: 15px;
          box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .prices-table th,
        .prices-table td {
          padding: 1rem 1.5rem;
          border-bottom: 1px solid #e2e8f0;
          font-size: 1rem;
          color: var(--dark);
          text-align: left;
        }

        .prices-table th {
          background: var(--primary);
          color: white;
        }

        .prices-table tr:last-child td {
          border-bottom: none;
        }

        .prices-info {
          max-width: 700px;
          margin: 2rem auto 0 auto;
          padding: 1.5rem 2rem;
          background: #D9CA7C;
          border-left: 4px solid var(--primary);
          border-radius: 8px;
          color: #4a5568;
          line-height: 1.6;
          font-size: 1rem;
          display: flex;
          align-items: flex-start;
          gap: 1rem;
        }

        .prices-info .info-icon {
          font-size: 1.8rem;
          flex-shrink: 0;
          margin-top: 0.2rem;
        }

        .prices-info .info-text p {
          margin-bottom: 0.5rem;
        }

        .gallery {
          padding: 5rem 1.5rem;
          text-align: center;
          background: var(--secondary);
        }

        .gallery h2 {
          color: var(--primary);
          font-size: 2rem;
          margin-bottom: 3rem;
        }

        .gallery {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 1rem;
        }

        .gallery img {
          width: 100%;
          height: auto;
          max-height: 200px;
          object-fit: cover;
          border-radius: 10px;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          cursor: pointer;
        }

        .gallery img:hover {
          transform: scale(1.05);
          box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .lightbox {
          display: none;
          position: fixed;
          z-index: 1000;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.85);
          justify-content: center;
          align-items: center;
        }

        .lightbox-img {
          max-width: 90%;
          max-height: 90vh;
          object-fit: contain;
          border-radius: 10px;
        }

        .lightbox .close {
          position: absolute;
          top: 20px;
          right: 30px;
          font-size: 2.5rem;
          color: white;
          cursor: pointer;
        }

        .lightbox-nav {
          position: absolute;
          width: 100%;
          top: 50%;
          display: flex;
          justify-content: space-between;
          padding: 0 2rem;
          transform: translateY(-50%);
        }

        .lightbox-nav span {
          font-size: 3rem;
          color: white;
          cursor: pointer;
          user-select: none;
          transition: color 0.2s;
        }

        .lightbox-nav span:hover {
          color: var(--primary);
        }

        .zoom-controls {
          position: absolute;
          bottom: 20px;
          right: 20px;
          display: flex;
          gap: 0.5rem;
        }

        .zoom-controls button {
          font-size: 1.5rem;
          padding: 0.5rem 1rem;
          border: none;
          border-radius: 5px;
          background: var(--primary);
          color: white;
          cursor: pointer;
          transition: background 0.2s;
        }

        .zoom-controls button:hover {
          background: #1e4f8a;
        }

        .contact {
          position: relative;
          width: 100%;
          padding: 5rem 0;
          text-align: center;
        }

        .contact-inner {
          max-width: 1000px;
          width: 100%;
          margin: 0 auto;
          padding: 0 2rem;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        #contact h2 {
          color: var(--primary);
          margin-bottom: 3rem;
          font-size: 2rem;
        }

        .contact-info {
          max-width: 600px;
          margin: 0 auto;
        }

        .contact-info p {
          font-size: 1.1rem;
          color: #4a5568;
          margin-bottom: 2rem;
        }

        .contact-details {
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
          align-items: center;
          margin-bottom: 2rem;
        }

        .contact-item {
          display: flex;
          align-items: center;
          gap: 1rem;
          background: white;
          padding: 1rem 1.5rem;
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          width: 100%;
          max-width: 400px;
          transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .contact-item:hover {
          transform: translateY(-3px);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .contact-item .icon {
          font-size: 1.8rem;
          color: var(--primary);
        }

        .contact-item a {
          color: var(--primary);
          text-decoration: none;
          font-weight: 500;
        }

        .contact-item a:hover {
          text-decoration: underline;
        }

        .contact-note {
          color: #718096;
          font-size: 0.95rem;
        }

        .footer {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          width: 100vw;
          position: relative;
          left: 50%;
          margin-left: -50vw;
          padding: 4rem 1rem;
          text-align: center;
          color: var(--dark);
          font-size: 0.95rem;
        }

        .footer-inner {
          max-width: 1100px;
          margin: 0 auto;
          padding: 0 1rem;
        }

        .footer-top {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          gap: 2.5rem;
        }

        .footer-address {
          flex: 1;
          min-width: 250px;
          text-align: left;
          display: flex;
          align-items: flex-start;
          gap: 0.8rem;
        }

        .footer-address .icon {
          font-size: 1.5rem;
          color: var(--primary);
          margin-top: 0.2rem;
        }

        .footer-map {
          flex: 1;
          min-width: 300px;
          max-width: 450px;
          border-radius: 15px;
          overflow: hidden;
          box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .footer-map iframe {
          width: 100%;
          height: 250px;
          border: none;
        }

        .footer-divider {
          border: none;
          height: 1px;
          background: rgba(43, 108, 176, 0.2);
          margin: 2rem auto;
          width: 80%;
        }

        .footer-bottom {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          align-items: center;
        }

        .footer-bottom a {
          color: var(--primary);
          text-decoration: none;
          font-weight: 500;
        }

        .footer-bottom a:hover {
          text-decoration: underline;
        }

        @media (max-width: 700px) {
          .footer-top {
            flex-direction: column;
            text-align: center;
          }

          .footer-address {
            justify-content: center;
            text-align: center;
          }
        }

        .info-bubble {
          position: fixed;
          bottom: -200px;
          right: 30px;
          z-index: 9999;
          transition: bottom 0.6s ease-out, opacity 0.6s ease;
          opacity: 0;
        }

        .info-bubble.show {
          bottom: 30px;
          opacity: 1;
        }

        .info-content {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          color: var(--dark);
          border-radius: 15px;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          padding: 1.2rem 1.6rem;
          max-width: 320px;
          font-size: 0.95rem;
          line-height: 1.5;
          position: relative;
          border-left: 4px solid var(--primary);
        }

        .info-content h4 {
          color: var(--primary);
          margin-bottom: 0.5rem;
          font-size: 1.1rem;
        }

        .info-content p {
          margin: 0;
        }

        .info-close {
          position: absolute;
          top: 8px;
          right: 12px;
          background: none;
          border: none;
          font-size: 1.3rem;
          color: var(--primary);
          cursor: pointer;
          transition: transform 0.2s ease;
        }

        .info-close:hover {
          transform: scale(1.2);
          color: #1e4f8a;
        }

        .contact-panel {
          position: fixed;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          z-index: 9998;
          display: flex;
          align-items: center;
        }

        .contact-tab {
          background: var(--primary);
          color: white;
          padding: 0.9rem 1rem;
          border-radius: 8px 0 0 8px;
          cursor: pointer;
          font-size: 1.4rem;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          transition: background 0.2s ease, transform 0.2s ease;
          position: relative;
          z-index: 2;
        }

        .contact-tab:hover {
          background: #1e4f8a;
          transform: scale(1.05);
        }

        .contact-panel {
          position: fixed;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          z-index: 9998;
        }

        .contact-tab {
          position: absolute;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          background: var(--primary);
          color: white;
          padding: 0.9rem 1rem;
          border-radius: 8px 0 0 8px;
          cursor: pointer;
          font-size: 1.4rem;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          transition: background 0.2s ease, transform 0.2s ease;
          z-index: 3; /* bleibt über dem Panel sichtbar */
        }

        .contact-tab:hover {
          background: #1e4f8a;
          transform: translateY(-50%) scale(1.05);
        }

        .contact-panel-content {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          color: var(--dark);
          padding: 1.5rem;
          width: 270px;
          border-radius: 12px 0 0 12px;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          transform: translateX(100%);
          transition: transform 0.4s ease;
          position: relative;
          right: 0;
        }

        .contact-panel.open .contact-panel-content {
          transform: translateX(0);
        }

        .contact-panel-content h4 {
          color: var(--primary);
          margin-bottom: 0.5rem;
          font-size: 1.2rem;
          text-align: left;
        }

        .contact-panel-content a {
          color: var(--primary);
          text-decoration: none;
        }

        .contact-panel-content a:hover {
          text-decoration: underline;
        }

        /* ==========================
           Impressum & Datenschutz Seite
        ========================== */

        body.impressum {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          color: var(--dark);
          scroll-behavior: smooth;
          line-height: 1.7;
        }

        body.impressum header {
          background: var(--primary);
          color: white;
          text-align: center;
          padding: 3rem 1rem;
        }

        body.impressum header h1 {
          font-size: 2.2rem;
          font-weight: 600;
        }

        body.impressum main {
          max-width: 1000px;
          margin: 4rem auto;
          background: white;
          border-radius: 20px;
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
          padding: 3rem 2rem;
        }

        body.impressum h2 {
          color: var(--primary);
          font-size: 1.5rem;
          margin-top: 2rem;
          margin-bottom: 1rem;
          border-left: 4px solid var(--primary);
          padding-left: 0.8rem;
        }

        body.impressum p {
          margin-bottom: 1rem;
          color: #4a5568;
        }

        body.impressum a {
          color: var(--primary);
          text-decoration: none;
        }

        body.impressum a:hover {
          text-decoration: underline;
        }

        body.impressum footer {
          background: linear-gradient(135deg, #e6f0ea 0%, #f9f9f7 100%);
          color: var(--dark);
          text-align: center;
          padding: 2.5rem 1rem;
          font-size: 0.9rem;
          border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        body.impressum footer a {
          color: var(--primary);
          text-decoration: none;
          font-weight: 500;
        }

        body.impressum footer a:hover {
          text-decoration: underline;
        }

        body.impressum .back-link {
          display: inline-block;
          margin-top: 2rem;
          background: var(--primary);
          color: white;
          padding: 0.7rem 1.5rem;
          border-radius: 8px;
          text-decoration: none;
          font-weight: 500;
          transition: background 0.3s ease;
        }

        body.impressum .back-link:hover {
          background: #1e4f8a;
        }

        @media (max-width: 700px) {
          body.impressum header h1 {
            font-size: 1.8rem;
          }
          body.impressum main {
            margin: 2rem 1rem;
            padding: 2rem 1.5rem;
          }
        }
