@font-face {
    font-family: 'Baloo 2';
    font-style: normal;
    font-weight: 400;
    src: url('/Baloo2-VariableFont_wght.ttf') format('woff2');
  }
  
  /* Beispiel für Nunito (Regular) */
  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('/Nunito-VariableFont_wght.ttf') format('woff2');
  }
  
  
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  :root {
      --primary: #7fc099;
      --primary-light: #a8d9bc;
      --primary-dark: #5a9a75;
      --coral: #ff8a7a;
      --yellow: #ffd26a;
      --purple: #c4a8ff;
      --blue: #7ac7ff;
      --pink: #ffb3d9;
      --cream: #fff9f0;
      --dark: #2d3436;
  }
  
  html {
      scroll-behavior: smooth;
  }
  
  body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
  }
  
  h1, h2, h3, h4 {
      font-family: 'Baloo 2', cursive;
  }
  
  /* ==================== FLOATING DECORATIONS ==================== */
  .floating-deco {
      position: fixed;
      pointer-events: none;
      z-index: 0;
      font-size: 30px;
      opacity: 0.6;
      animation: floatAround 20s infinite ease-in-out;
  }
  
  .deco-1 { top: 15%; left: 5%; animation-delay: 0s; }
  .deco-2 { top: 30%; right: 8%; animation-delay: -3s; font-size: 24px; }
  .deco-3 { top: 50%; left: 3%; animation-delay: -7s; font-size: 20px; }
  .deco-4 { top: 70%; right: 5%; animation-delay: -11s; }
  .deco-5 { top: 85%; left: 8%; animation-delay: -15s; font-size: 26px; }
  
  @keyframes floatAround {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(15px, -20px) rotate(10deg); }
      50% { transform: translate(-10px, 15px) rotate(-5deg); }
      75% { transform: translate(20px, 10px) rotate(8deg); }
  }
  
  /* ==================== NOTCH NAVBAR ==================== */
  .notch-nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-radius: 50px;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 
          0 10px 40px rgba(127, 192, 153, 0.4),
          0 0 0 3px rgba(255,255,255,0.3) inset;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .notch-nav:hover {
      transform: translateX(-50%) scale(1.03);
      box-shadow: 
          0 15px 50px rgba(127, 192, 153, 0.5),
          0 0 0 3px rgba(255,255,255,0.4) inset;
  }
  
  .notch-nav .logo {
      background: white;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      animation: wiggle 3s infinite ease-in-out;
  }
  
  @keyframes wiggle {
      0%, 100% { transform: rotate(-5deg); }
      50% { transform: rotate(5deg); }
  }
  
  .notch-nav .nav-links {
      display: flex;
      gap: 4px;
  }
  
  .notch-nav a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: 25px;
      transition: all 0.3s ease;
      white-space: nowrap;
  }
  
  .notch-nav a:hover {
      background: rgba(255,255,255,0.25);
      transform: translateY(-2px);
  }
  
  .notch-nav .cta-btn {
      background: var(--yellow);
      color: var(--dark) !important;
      font-weight: 700;
      margin-left: 4px;
      box-shadow: 0 4px 15px rgba(255, 210, 106, 0.4);
  }
  
  .notch-nav .cta-btn:hover {
      background: #ffc940;
      transform: translateY(-3px) scale(1.05);
  }
  
  .mobile-toggle {
      display: none;
      background: white;
      border: none;
      color: var(--primary-dark);
      font-size: 18px;
      cursor: pointer;
      padding: 10px;
      border-radius: 50%;
      width: 40px;
      height: 40px;
  }
  
  @media (max-width: 768px) {
      .notch-nav .nav-links { display: none; }
      .notch-nav.mobile-expanded .nav-links {
          display: flex;
          flex-direction: column;
          width: 100%;
      }
      .notch-nav.mobile-expanded {
          flex-direction: column;
          border-radius: 28px;
          padding: 14px;
          width: calc(100% - 32px);
          max-width: 320px;
      }
      .notch-nav.mobile-expanded a { text-align: center; padding: 14px; }
      .mobile-toggle { display: flex; align-items: center; justify-content: center; }
      .notch-nav .logo { margin-right: auto; }
  }
  
  /* ==================== HERO ==================== */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 24px 80px;
      position: relative;
      background: linear-gradient(180deg, #e6f7ed 0%, #fff5e6 50%, var(--cream) 100%);
      overflow: hidden;
  }
  
  /* Animated Background Blobs */
  .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.5;
      animation: blobMove 15s infinite ease-in-out;
  }
  
  .blob-1 {
      width: 500px;
      height: 500px;
      background: var(--primary-light);
      top: -150px;
      right: -100px;
      animation-delay: 0s;
  }
  
  .blob-2 {
      width: 400px;
      height: 400px;
      background: var(--coral);
      bottom: -100px;
      left: -100px;
      animation-delay: -5s;
  }
  
  .blob-3 {
      width: 350px;
      height: 350px;
      background: var(--yellow);
      top: 50%;
      left: 30%;
      animation-delay: -10s;
  }
  
  @keyframes blobMove {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -50px) scale(1.1); }
      66% { transform: translate(-30px, 30px) scale(0.9); }
  }
  
  .hero-content {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
  }
  
  @media (max-width: 968px) {
      .hero-content {
          grid-template-columns: 1fr;
          gap: 40px;
      }
  }
  
  .hero-text {
      animation: fadeInUp 0.8s ease-out;
  }
  
  .hero-text .badge {
      display: inline-block;
      background: white;
      padding: 10px 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 24px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  
  .hero-text h1 {
      font-size: 64px;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--dark);
  }
  
  @media (max-width: 968px) {
      .hero-text h1 {
          font-size: 42px;
      }
  }
  
  @media (max-width: 480px) {
      .hero-text h1 {
          font-size: 36px;
      }
  }
  
  .hero-text h1 .highlight {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      display: inline-block;
  }
  
  .hero-text p {
      font-size: 20px;
      color: #636e72;
      margin-bottom: 32px;
      line-height: 1.7;
  }
  
  @media (max-width: 768px) {
      .hero-text p {
          font-size: 18px;
          margin-bottom: 24px;
      }
  }
  
  @media (max-width: 480px) {
      .hero-text p {
          font-size: 16px;
      }
  }
  
  .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
  }
  
  @media (max-width: 480px) {
      .hero-buttons {
          flex-direction: column;
          width: 100%;
      }
      
      .hero-buttons .btn {
          width: 100%;
          justify-content: center;
          text-align: center;
      }
  }
  
  .btn {
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
  }
  
  .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      box-shadow: 0 10px 30px rgba(127, 192, 153, 0.3);
  }
  
  .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(127, 192, 153, 0.4);
  }
  
  .btn-secondary {
      background: white;
      color: var(--dark);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  
  .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  
  .hero-image {
      position: relative;
      animation: fadeInUp 0.8s ease-out 0.2s both;
  }
  
  .hero-img-wrapper {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      transform: rotate(2deg);
      transition: all 0.4s ease;
  }
  
  .hero-img-wrapper:hover {
      transform: rotate(0deg) scale(1.02);
  }
  
  .hero-img-wrapper img {
      width: 100%;
      height: auto;
      display: block;
  }
  
  /* Floating Info Cards */
  .float-card {
      position: absolute;
      background: white;
      padding: 16px 20px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: floatCard 3s infinite ease-in-out;
  }
  
  @media (max-width: 968px) {
      .float-card {
          display: none;
      }
  }
  
  .float-card-1 {
      top: -20px;
      left: -30px;
      animation-delay: 0s;
  }
  
  .float-card-2 {
      bottom: -20px;
      right: -30px;
      animation-delay: -1.5s;
  }
  
  .float-card .icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
  }
  
  .float-card-1 .icon { background: #e3f5ff; }
  .float-card-2 .icon { background: #ffe8f0; }
  
  .float-card .text h4 {
      font-size: 14px;
      margin-bottom: 2px;
      color: var(--dark);
  }
  
  .float-card .text p {
      font-size: 12px;
      color: #636e72;
      margin: 0;
  }
  
  @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
  }
  
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @media (max-width: 968px) {
      .hero-content {
          grid-template-columns: 1fr;
          gap: 40px;
      }
      .hero-text h1 { font-size: 48px; }
      .hero-text p { font-size: 18px; }
      .float-card { display: none; }
  }
  
  /* ==================== ABOUT SECTION ==================== */
  .about {
      padding: 100px 24px;
      background: white;
      position: relative;
      overflow: hidden;
  }
  
  .about::before {
      content: '🌈';
      position: absolute;
      font-size: 200px;
      opacity: 0.05;
      top: 50px;
      right: -50px;
      pointer-events: none;
  }
  
  .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }
  
  .about-content {
      position: relative;
      z-index: 1;
  }
  
  .section-tag {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
  }
  
  .about-content h2 {
      font-size: 48px;
      margin-bottom: 24px;
      line-height: 1.2;
  }
  
  .about-content p {
      font-size: 18px;
      color: #636e72;
      margin-bottom: 20px;
      line-height: 1.8;
  }
  
  .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
  }
  
  .stat-card {
      text-align: center;
      padding: 20px;
      background: var(--cream);
      border-radius: 20px;
      transition: all 0.3s ease;
  }
  
  .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .stat-card .number {
      font-size: 36px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
  }
  
  .stat-card .label {
      font-size: 14px;
      color: #636e72;
  }
  
  .about-features {
      position: relative;
  }
  
  .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }
  
  .feature-box {
      background: linear-gradient(135deg, var(--cream), white);
      padding: 28px;
      border-radius: 24px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
  }
  
  .feature-box:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(127, 192, 153, 0.15);
  }
  
  .feature-box .icon {
      font-size: 42px;
      margin-bottom: 16px;
      display: block;
  }
  
  .feature-box h4 {
      font-size: 20px;
      margin-bottom: 8px;
  }
  
  .feature-box p {
      font-size: 15px;
      color: #636e72;
      line-height: 1.6;
      margin: 0;
  }
  
  @media (max-width: 968px) {
      .about-container {
          grid-template-columns: 1fr;
          gap: 40px;
      }
      .about-content h2 { font-size: 36px; }
      .stats-grid { grid-template-columns: repeat(3, 1fr); }
      .feature-grid { grid-template-columns: 1fr; }
  }
  
  /* ==================== SERVICES ==================== */
  .services {
      padding: 100px 24px;
      background: linear-gradient(180deg, white 0%, var(--cream) 100%);
      position: relative;
  }
  
  .services-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .services-header {
      text-align: center;
      margin-bottom: 60px;
  }
  
  .services-header h2 {
      font-size: 48px;
      margin-bottom: 16px;
  }
  
  .services-header p {
      font-size: 20px;
      color: #636e72;
      max-width: 600px;
      margin: 0 auto;
  }
  
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
  }
  
  .service-card {
      background: white;
      padding: 40px 32px;
      border-radius: 32px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 3px solid transparent;
      position: relative;
      overflow: hidden;
  }
  
  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      transform: scaleX(0);
      transition: transform 0.4s ease;
  }
  
  .service-card:hover::before {
      transform: scaleX(1);
  }
  
  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      border-color: var(--primary-light);
  }
  
  .service-icon {
      font-size: 72px;
      margin-bottom: 24px;
      display: inline-block;
      animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
  }
  
  .service-card:hover .service-icon {
      animation: none;
      transform: scale(1.1) rotate(5deg);
  }
  
  .service-card h3 {
      font-size: 26px;
      margin-bottom: 12px;
      color: var(--dark);
  }
  
  .service-card p {
      font-size: 16px;
      color: #636e72;
      line-height: 1.7;
      margin-bottom: 24px;
  }
  
  .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      transition: gap 0.3s ease;
  }
  
  .service-link:hover {
      gap: 12px;
  }
  
  @media (max-width: 768px) {
      .services-header h2 { font-size: 36px; }
      .services-grid { grid-template-columns: 1fr; }
  }
  
  /* ==================== BOOKING SECTION ==================== */
  .booking {
      padding: 100px 24px;
      background: white;
      position: relative;
  }
  
  .booking-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: start;
  }
  
  .booking-info h2 {
      font-size: 48px;
      margin-bottom: 24px;
  }
  
  .booking-info > p {
      font-size: 18px;
      color: #636e72;
      margin-bottom: 32px;
      line-height: 1.7;
  }
  
  .booking-perks {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .perk-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px;
      background: var(--cream);
      border-radius: 16px;
      transition: all 0.3s ease;
  }
  
  .perk-item:hover {
      transform: translateX(8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  
  .perk-item .icon {
      font-size: 36px;
      flex-shrink: 0;
  }
  
  .perk-item h4 {
      font-size: 18px;
      margin-bottom: 4px;
  }
  
  .perk-item p {
      font-size: 14px;
      color: #636e72;
      margin: 0;
  }
  
  .booking-form-card {
      background: white;
      padding: 40px;
      border-radius: 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
      border: 2px solid var(--cream);
  }
  
  .booking-form-card h3 {
      font-size: 32px;
      margin-bottom: 12px;
  }
  
  .booking-form-card > p {
      color: #636e72;
      margin-bottom: 32px;
  }
  
  .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }
  
  .form-group {
      display: flex;
      flex-direction: column;
  }
  
  .form-group.full-width {
      grid-column: 1 / -1;
  }
  
  .form-group label {
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 14px;
      color: var(--dark);
  }
  
  .checkbox-group label {
      margin-bottom: 0;
  }
  
  .hidden-label {
      font-size: 14px;
      opacity: 0;
      pointer-events: none;
      height: 22px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
      padding: 14px 18px;
      border: 2px solid #e8ecef;
      border-radius: 12px;
      font-size: 15px;
      font-family: 'Nunito', sans-serif;
      transition: all 0.3s ease;
      background: white;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(127, 192, 153, 0.1);
  }
  
  .form-group textarea {
      min-height: 120px;
      resize: vertical;
  }
  
  .checkbox-group {
      display: flex;
      flex-direction: column;
  }
  
  .checkbox-label {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      font-weight: 600;
      color: var(--dark);
      padding: 14px 18px;
      background: var(--cream);
      border-radius: 12px;
      transition: all 0.3s ease;
      width: 100%;
      margin: 0;
  }
  
  .checkbox-label:hover {
      background: #f0e5d8;
  }
  
  .checkbox-label input[type="checkbox"] {
      display: none;
  }
  
  .checkbox-custom {
      width: 24px;
      height: 24px;
      border: 2px solid #e8ecef;
      border-radius: 6px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      flex-shrink: 0;
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-color: var(--primary);
  }
  
  .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
      content: '✓';
      color: white;
      font-weight: bold;
      font-size: 16px;
  }
  
  .checkbox-text {
      font-size: 15px;
  }
  
  .submit-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Baloo 2', cursive;
  }
  
  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(127, 192, 153, 0.4);
  }
  
  .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
  }
  
  @media (max-width: 968px) {
      .booking-container {
          grid-template-columns: 1fr;
          gap: 40px;
      }
      .booking-info h2 { font-size: 36px; }
      .booking-form-card { padding: 28px; }
      .form-grid {
          grid-template-columns: 1fr;
      }
  }
  
  /* ==================== KINDERLAND SECTION ==================== */
  .kinderland {
      padding: 100px 24px;
      background: linear-gradient(180deg, var(--cream) 0%, #fff5e6 50%, white 100%);
      position: relative;
      overflow: hidden;
  }
  
  .kinderland::before {
      content: '🎪';
      position: absolute;
      font-size: 200px;
      opacity: 0.05;
      top: 50%;
      left: -50px;
      transform: translateY(-50%) rotate(-15deg);
      pointer-events: none;
  }
  
  .kinderland::after {
      content: '🎨';
      position: absolute;
      font-size: 180px;
      opacity: 0.05;
      bottom: -20px;
      right: -30px;
      transform: rotate(20deg);
      pointer-events: none;
  }
  
  .kinderland-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
  }
  
  .kinderland-image {
      position: relative;
  }
  
  .kinderland-img-wrapper {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0,0,0,0.15);
      transform: rotate(-3deg);
      transition: all 0.5s ease;
  }
  
  .kinderland-img-wrapper:hover {
      transform: rotate(0deg) scale(1.03);
      box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  }
  
  .kinderland-img-wrapper img {
      width: 100%;
      height: auto;
      display: block;
  }
  
  .kinderland-badge {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background: white;
      padding: 20px 24px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 16px;
      animation: floatCard 3s infinite ease-in-out;
      z-index: 2;
  }
  
  .kinderland-badge .badge-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
  }
  
  .kinderland-badge .badge-text h4 {
      font-size: 20px;
      margin: 0;
      color: var(--dark);
      line-height: 1;
  }
  
  .kinderland-badge .badge-text p {
      font-size: 13px;
      margin: 4px 0 0 0;
      color: #636e72;
  }
  
  .kinderland-content h2 {
      font-size: 52px;
      margin-bottom: 24px;
      line-height: 1.2;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }
  
  .kinderland-content p {
      font-size: 17px;
      line-height: 1.8;
      color: #636e72;
      margin-bottom: 20px;
  }
  
  .kinderland-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 32px 0 40px;
  }
  
  .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: white;
      padding: 16px 20px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }
  
  .feature-item:hover {
      transform: translateX(8px);
      border-color: var(--primary-light);
      box-shadow: 0 10px 30px rgba(127, 192, 153, 0.15);
  }
  
  .feature-item .feature-icon {
      font-size: 28px;
      width: 50px;
      height: 50px;
      background: var(--cream);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }
  
  .feature-item span:last-child {
      font-weight: 600;
      font-size: 15px;
      color: var(--dark);
  }
  
  .kinderland-content .btn {
      margin-top: 8px;
  }
  
  @media (max-width: 968px) {
      .kinderland {
          padding: 80px 24px;
      }
      
      .kinderland-container {
          grid-template-columns: 1fr;
          gap: 50px;
      }
      
      .kinderland-image {
          order: 2;
      }
      
      .kinderland-content {
          order: 1;
      }
      
      .kinderland-content h2 {
          font-size: 36px;
      }
      
      .kinderland-features {
          grid-template-columns: 1fr;
      }
      
      .kinderland-badge {
          bottom: 20px;
          right: 20px;
          padding: 16px 20px;
      }
  }
  
  /* ==================== TODAY'S MENU SECTION ==================== */
  .todays-menu {
      padding: 100px 24px;
      background: linear-gradient(180deg, var(--cream) 0%, #fff5f0 100%);
      position: relative;
  }
  
  .menu-container {
      max-width: 1000px;
      margin: 0 auto;
  }
  
  .menu-header {
      text-align: center;
      margin-bottom: 60px;
  }
  
  .menu-header h2 {
      font-size: 48px;
      margin-bottom: 16px;
  }
  
  .menu-header p {
      font-size: 20px;
      color: #636e72;
      max-width: 700px;
      margin: 0 auto;
  }
  
  .today-menu-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
      max-width: 700px;
      margin: 0 auto;
  }
  
  .today-menu-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  }
  
  .menu-card-header {
      padding: 32px;
      text-align: center;
      background: var(--primary);
      color: white;
      position: relative;
      overflow: hidden;
  }
  
  .menu-card-header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: shimmer 3s infinite linear;
  }
  
  @keyframes shimmer {
      0% { transform: translate(-50%, -50%); }
      100% { transform: translate(50%, 50%); }
  }
  
  .day-emoji {
      font-size: 64px;
      display: block;
      margin-bottom: 12px;
      animation: bounce 2s infinite ease-in-out;
  }
  
  .menu-card-header h3 {
      font-size: 36px;
      margin: 0;
      position: relative;
      z-index: 1;
  }
  
  .menu-card-body {
      padding: 40px 32px;
  }
  
  .menu-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      background: var(--cream);
      border-radius: 20px;
      margin-bottom: 20px;
      transition: all 0.3s ease;
  }
  
  .menu-item:last-of-type {
      margin-bottom: 24px;
  }
  
  .menu-item:hover {
      transform: translateX(8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  
  .menu-item-icon {
      font-size: 36px;
      flex-shrink: 0;
  }
  
  .menu-item h4 {
      font-size: 22px;
      margin-bottom: 8px;
      color: var(--dark);
  }
  
  .menu-item p {
      font-size: 16px;
      color: #636e72;
      line-height: 1.6;
      margin: 0;
  }
  
  .menu-highlight {
      background: linear-gradient(135deg, var(--yellow), #ffc940);
      padding: 24px;
      border-radius: 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  .menu-highlight::before {
      content: '✨';
      position: absolute;
      font-size: 100px;
      opacity: 0.1;
      top: -20px;
      right: -20px;
  }
  
  .highlight-badge {
      display: inline-block;
      background: white;
      color: var(--dark);
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .menu-highlight p {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      margin: 0;
      position: relative;
      z-index: 1;
  }
  
  .menu-price {
      background: white;
      padding: 24px 32px;
      border-radius: 20px;
      text-align: center;
      margin-top: 20px;
      border: 3px solid var(--primary-light);
      position: relative;
      overflow: hidden;
  }
  
  .menu-price::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
      background-size: 200% 100%;
      animation: shimmer 3s infinite;
  }
  
  @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
  }
  
  .price-label {
      font-size: 14px;
      color: #636e72;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
  }
  
  .price-amount {
      font-size: 42px;
      font-weight: 800;
      font-family: 'Baloo 2', cursive;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 4px;
      line-height: 1;
  }
  
  .price-note {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
  }
  
  .menu-footer {
      text-align: center;
      margin-top: 48px;
  }
  
  .menu-note {
      background: white;
      padding: 24px 32px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      border: 2px solid var(--cream);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 32px;
  }
  
  .note-icon {
      font-size: 32px;
      flex-shrink: 0;
  }
  
  .menu-note p {
      text-align: left;
      margin: 0;
      font-size: 15px;
      line-height: 1.6;
      color: #636e72;
  }
  
  .menu-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
  }
  
  .menu-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 18px 36px;
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 16px;
      transition: all 0.3s ease;
  }
  
  .menu-cta-btn.primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      box-shadow: 0 10px 30px rgba(127, 192, 153, 0.3);
  }
  
  .menu-cta-btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(127, 192, 153, 0.4);
  }
  
  .menu-cta-btn.secondary {
      background: linear-gradient(135deg, var(--coral), #ff6b6b);
      box-shadow: 0 10px 30px rgba(255, 138, 122, 0.3);
  }
  
  .menu-cta-btn.secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 138, 122, 0.4);
  }
  
  /* Fallback for old button without class */
  .menu-cta-btn:not(.primary):not(.secondary) {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      box-shadow: 0 10px 30px rgba(127, 192, 153, 0.3);
  }
  
  .menu-cta-btn:not(.primary):not(.secondary):hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(127, 192, 153, 0.4);
  }
  
  @media (max-width: 768px) {
      .menu-header h2 { font-size: 36px; }
      .menu-card-header h3 { font-size: 28px; }
      .day-emoji { font-size: 48px; }
      .menu-card-body { padding: 28px 20px; }
      .menu-item { padding: 20px; flex-direction: column; text-align: center; }
      .menu-note { flex-direction: column; text-align: center; padding: 20px; }
      .menu-note p { text-align: center; }
      .menu-buttons { 
          flex-direction: column; 
          width: 100%;
      }
      .menu-cta-btn {
          width: 100%;
          justify-content: center;
      }
      .price-amount { font-size: 36px; }
  }
  
  /* ==================== GOOGLE REVIEWS SECTION ==================== */
  .reviews {
      padding: 100px 24px;
      background: white;
      position: relative;
      overflow: hidden;
  }
  
  .reviews::before {
      content: '⭐';
      position: absolute;
      font-size: 300px;
      opacity: 0.03;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
  }
  
  .reviews-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  .reviews-header {
      text-align: center;
      margin-bottom: 60px;
  }
  
  .reviews-header h2 {
      font-size: 48px;
      margin-bottom: 16px;
  }
  
  .reviews-header p {
      font-size: 20px;
      color: #636e72;
      max-width: 600px;
      margin: 0 auto 24px;
  }
  
  .google-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
  }
  
  .rating-number {
      font-size: 42px;
      font-weight: 800;
      color: var(--dark);
      font-family: 'Baloo 2', cursive;
  }
  
  .rating-stars {
      font-size: 28px;
      color: #ffc107;
  }
  
  .rating-count {
      font-size: 16px;
      color: #636e72;
      margin-left: 8px;
  }
  
  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
      margin-bottom: 48px;
  }
  
  .review-card {
      background: var(--cream);
      padding: 32px;
      border-radius: 24px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      position: relative;
  }
  
  .review-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 80px;
      color: var(--primary-light);
      opacity: 0.3;
      font-family: Georgia, serif;
      line-height: 1;
  }
  
  .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      border-color: var(--primary);
      background: white;
  }
  
  .review-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
  }
  
  .reviewer-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      font-weight: 700;
      flex-shrink: 0;
      box-shadow: 0 4px 15px rgba(127, 192, 153, 0.3);
  }
  
  .reviewer-info h4 {
      font-size: 18px;
      margin-bottom: 4px;
      color: var(--dark);
  }
  
  .review-rating {
      color: #ffc107;
      font-size: 16px;
  }
  
  .review-text {
      font-size: 15px;
      line-height: 1.7;
      color: #636e72;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
  }
  
  .review-date {
      font-size: 13px;
      color: #b2bec3;
      position: relative;
      z-index: 1;
  }
  
  .google-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 20px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      max-width: 400px;
      margin: 0 auto;
  }
  
  .google-logo img {
      height: 32px;
  }
  
  .google-logo span {
      font-size: 16px;
      color: #636e72;
      font-weight: 600;
  }
  
  .review-cta {
      text-align: center;
      margin-top: 48px;
  }
  
  .review-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(127, 192, 153, 0.3);
  }
  
  .review-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(127, 192, 153, 0.4);
  }
  
  @media (max-width: 768px) {
      .reviews-header h2 { font-size: 36px; }
      .reviews-grid { grid-template-columns: 1fr; }
      .review-card { padding: 24px; }
      .rating-number { font-size: 32px; }
      .rating-stars { font-size: 24px; }
  }
  
  /* ==================== CONTACT SECTION ==================== */
  .contact {
      padding: 100px 24px;
      background: linear-gradient(180deg, white 0%, var(--cream) 100%);
  }
  
  .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
  }
  
  .contact-info h2 {
      font-size: 48px;
      margin-bottom: 32px;
  }
  
  .contact-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }
  
  .contact-cards .contact-card:last-child {
      grid-column: 1 / -1;
  }
  
  .contact-card {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px;
      background: white;
      border-radius: 20px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
  }
  
  .contact-card:hover {
      transform: translateX(8px);
      border-color: var(--primary);
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  
  .contact-card .icon {
      font-size: 36px;
      width: 60px;
      height: 60px;
      background: var(--cream);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }
  
  .contact-card h4 {
      font-size: 18px;
      margin-bottom: 4px;
  }
  
  .contact-card p {
      font-size: 16px;
      color: #636e72;
      margin: 0;
  }
  
  .contact-card a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .contact-card a:hover {
      color: var(--primary);
  }
  
  .hours-card {
      background: white;
      padding: 32px;
      border-radius: 24px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
      border: 2px solid var(--cream);
  }
  
  .hours-card h4 {
      font-size: 24px;
      margin-bottom: 24px;
      text-align: center;
  }
  
  .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid var(--cream);
  }
  
  .hours-row:last-child {
      border-bottom: none;
  }
  
  .hours-row .day {
      font-weight: 600;
      color: var(--dark);
  }
  
  .hours-row .time {
      color: var(--primary);
      font-weight: 600;
  }
  
  .hours-row .time.closed {
      color: #ff8a7a;
  }
  
  @media (max-width: 968px) {
      .contact-container {
          grid-template-columns: 1fr;
          gap: 40px;
      }
      .contact-info h2 { font-size: 36px; }
      .contact-cards {
          grid-template-columns: 1fr;
      }
      .contact-cards .contact-card:last-child {
          grid-column: 1;
      }
  }
  
  /* ==================== FOOTER ==================== */
  .footer {
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      color: white;
      padding: 60px 24px 24px;
      position: relative;
      overflow: hidden;
  }
  
  .footer-wave {
      position: absolute;
      top: -50px;
      left: 0;
      width: 100%;
      height: 100px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%235a9a75' d='M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
      background-size: cover;
  }
  
  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }
  
  .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
  }
  
  .footer-brand .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
  }
  
  .footer-brand .logo-icon {
      font-size: 36px;
  }
  
  .footer-brand .logo-text {
      font-size: 24px;
      font-weight: 700;
      font-family: 'Baloo 2', cursive;
  }
  
  .footer-brand p {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.9;
  }
  
  .footer-col h4 {
      font-size: 18px;
      margin-bottom: 20px;
      font-weight: 700;
  }
  
  .footer-col ul {
      list-style: none;
  }
  
  .footer-col ul li {
      margin-bottom: 12px;
  }
  
  .footer-col ul li a {
      color: white;
      text-decoration: none;
      opacity: 0.8;
      transition: all 0.3s ease;
      font-size: 15px;
  }
  
  .footer-col ul li a:hover {
      opacity: 1;
      transform: translateX(4px);
      display: inline-block;
  }
  
  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.2);
  }
  
  .footer-bottom p {
      font-size: 14px;
      opacity: 0.8;
  }
  
  .social-links {
      display: flex;
      gap: 12px;
  }
  
  .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 20px;
      transition: all 0.3s ease;
  }
  
  .social-links a:hover {
      background: white;
      transform: translateY(-4px);
  }
  
  @media (max-width: 968px) {
      .footer-main {
          grid-template-columns: 1fr;
          gap: 32px;
      }
      .footer-bottom {
          flex-direction: column;
          gap: 20px;
          text-align: center;
      }
  }
  
  /* ==================== UTILITIES ==================== */
  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
  }
  
  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Toast Notification */
  .toast {
      position: fixed;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      padding: 18px 32px;
      border-radius: 50px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
      z-index: 10000;
      transition: bottom 0.4s ease;
      font-weight: 600;
  }
  
  .toast.show {
      bottom: 40px;
  }
  
  .toast.success {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
  }
  
  .toast.error {
      background: linear-gradient(135deg, var(--coral), #ff6b6b);
      color: white;
  }
  
  /* Cookie Banner */
  .cookie-banner {
      position: fixed;
      bottom: -300px;
      left: 50%;
      transform: translateX(-50%);
      max-width: 500px;
      width: calc(100% - 32px);
      background: white;
      padding: 28px 32px;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
      z-index: 9999;
      transition: bottom 0.4s ease;
  }
  
  .cookie-banner.show {
      bottom: 24px;
  }
  
  .cookie-banner h4 {
      font-size: 20px;
      margin-bottom: 12px;
  }
  
  .cookie-banner p {
      font-size: 14px;
      color: #636e72;
      margin-bottom: 20px;
      line-height: 1.6;
  }
  
  .cookie-banner .buttons {
      display: flex;
      gap: 12px;
  }
  
  .cookie-banner button {
      flex: 1;
      padding: 12px 20px;
      border: none;
      border-radius: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Nunito', sans-serif;
  }
  
  .btn-accept {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
  }
  
  .btn-accept:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(127, 192, 153, 0.4);
  }
  
  .btn-settings {
      background: var(--cream);
      color: var(--dark);
  }
  
  .btn-settings:hover {
      background: #f0e5d8;
  }
  /* ==================== MOBILE OPTIMIERUNGEN ==================== */
  
  /* Blobs kleiner auf Mobile */
  @media (max-width: 768px) {
      .blob-1 {
          width: 300px;
          height: 300px;
      }
      
      .blob-2 {
          width: 250px;
          height: 250px;
      }
      
      .blob-3 {
          width: 200px;
          height: 200px;
      }
  }
  
  /* Hero Image - Mobile Anpassung */
  @media (max-width: 968px) {
      .hero-image {
          order: -1; /* Bild über Text auf Mobile */
      }
      
      .hero-img-wrapper {
          transform: rotate(0deg);
          margin-bottom: 20px;
      }
  }
  
  /* Features Section - Mobile */
  @media (max-width: 768px) {
      .features {
          padding: 60px 20px;
      }
      
      .features-header h2 {
          font-size: 36px;
      }
      
      .features-header p {
          font-size: 16px;
      }
      
      .features-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  }
  
  /* Stats Section - Mobile */
  @media (max-width: 768px) {
      .stats {
          padding: 60px 20px;
      }
      
      .stats-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }
  }
  
  /* Menu Section - Mobile */
  @media (max-width: 768px) {
      .menu {
          padding: 60px 20px;
      }
      
      .section-header h2 {
          font-size: 36px;
      }
      
      .section-header p {
          font-size: 16px;
      }
  }
  
  /* Gallery Grid - Basis Layout */
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      width: 100%;
  }
  
  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      cursor: pointer;
  }
  
  /* Gallery - Mobile */
  @media (max-width: 768px) {
      .gallery {
          padding: 60px 20px;
      }
      
      .gallery-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }
      
      .filter-buttons {
          overflow-x: auto;
          padding-bottom: 10px;
          -webkit-overflow-scrolling: touch;
      }
      
      .filter-buttons::-webkit-scrollbar {
          height: 4px;
      }
      
      .filter-buttons::-webkit-scrollbar-thumb {
          background: var(--primary);
          border-radius: 4px;
      }
  }
  
  /* Booking Form - Mobile */
  @media (max-width: 768px) {
      .booking {
          padding: 60px 20px;
      }
      
      .booking-container {
          grid-template-columns: 1fr;
          gap: 30px;
      }
      
      .booking-form {
          padding: 30px 20px;
      }
      
      .form-row {
          grid-template-columns: 1fr;
          gap: 16px;
      }
  }
  
  /* Order Popup - Mobile optimiert */
  @media (max-width: 768px) {
      .order-popup {
          padding: 30px 20px;
          max-height: 85vh;
          width: 95%;
      }
      
      .order-popup h3 {
          font-size: 24px;
          padding-right: 40px;
      }
      
      .close-order-popup {
          top: 15px;
          right: 15px;
      }
      
      .menu-items-order {
          gap: 12px;
      }
      
      .menu-item-order {
          padding: 16px;
      }
  }
  
  /* Urlaub Popup - Mobile */
  @media (max-width: 768px) {
      .urlaub-popup {
          padding: 30px 20px;
          max-width: 90%;
      }
      
      .urlaub-popup h3 {
          font-size: 24px;
      }
      
      .urlaub-icon {
          font-size: 2.5rem;
      }
  }
  
  /* Cookie Banner - Mobile */
  @media (max-width: 768px) {
      .cookie-banner {
          width: calc(100% - 24px);
          padding: 20px;
      }
      
      .cookie-banner h4 {
          font-size: 18px;
      }
      
      .cookie-banner p {
          font-size: 13px;
      }
      
      .cookie-banner .buttons {
          flex-direction: column;
      }
  }
  
  /* Toast - Mobile Anpassung */
  @media (max-width: 768px) {
      .toast {
          width: calc(100% - 40px);
          max-width: 90%;
          padding: 14px 20px;
          font-size: 14px;
      }
      
      .toast.show {
          bottom: 20px;
      }
  }
  
  /* Floating Decorations - auf Mobile reduzieren */
  @media (max-width: 768px) {
      .floating-deco {
          font-size: 20px;
          opacity: 0.3;
      }
      
      .deco-3,
      .deco-4,
      .deco-5 {
          display: none;
      }
  }
  
  /* Section Spacing - Mobile kompakter */
  @media (max-width: 768px) {
      section {
          padding: 60px 20px !important;
      }
  }
  
  /* Buttons - Mobile Touch-Optimierung */
  @media (max-width: 768px) {
      .btn {
          padding: 14px 28px;
          font-size: 15px;
          min-height: 48px; /* Touch-friendly */
      }
  }
  
  /* Form Inputs - Mobile Touch-Optimierung */
  @media (max-width: 768px) {
      input,
      textarea,
      select {
          font-size: 16px !important; /* Verhindert Zoom auf iOS */
          min-height: 48px;
      }
      
      textarea {
          min-height: 120px;
      }
  }
  
  /* Navigation Links - größere Touch-Targets */
  @media (max-width: 768px) {
      .notch-nav a {
          min-height: 48px;
          display: flex;
          align-items: center;
          justify-content: center;
      }
  }
  
  /* Quantity Controls - Mobile größer */
  @media (max-width: 768px) {
      .quantity-btn {
          min-width: 44px;
          min-height: 44px;
          font-size: 20px;
      }
      
      .quantity-display {
          min-width: 50px;
          font-size: 18px;
      }
  }
  
  /* Smooth Scrolling Mobile */
  @media (max-width: 768px) {
      html {
          scroll-padding-top: 80px;
      }
  }
  
  /* Hide overflow-x on small screens */
  @media (max-width: 768px) {
      body {
          overflow-x: hidden;
      }
  }
  
  /* Responsive Images */
  @media (max-width: 768px) {
      img {
          max-width: 100%;
          height: auto;
      }
  }
  
  /* Menu Cards - Mobile */
  @media (max-width: 768px) {
      .menu-day-card {
          padding: 24px 20px;
      }
      
      .menu-day-card h3 {
          font-size: 22px;
      }
  }
  
  /* Review Cards - Mobile Stack */
  @media (max-width: 480px) {
      .review-card {
          padding: 20px;
      }
      
      .review-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
      }
  }
  
  /* Social Links - Mobile größer */
  @media (max-width: 768px) {
      .social-links a {
          width: 48px;
          height: 48px;
          font-size: 22px;
      }
  }
  
  /* Prevent horizontal scroll */
  * {
      max-width: 100%;
  }
  
  /* Container max-width */
  @media (max-width: 768px) {
      .container,
      .hero-content,
      .features-container,
      .booking-container,
      .contact-container,
      .footer-container {
          max-width: 100%;
          padding-left: 20px;
          padding-right: 20px;
      }
  }
  
  /* Fix für sehr kleine Screens */
  @media (max-width: 360px) {
      .hero-text h1 {
          font-size: 32px;
      }
      
      .section-header h2 {
          font-size: 32px;
      }
      
      .btn {
          padding: 12px 24px;
          font-size: 14px;
      }
  }
  
  /* Landscape Mobile - spezielle Behandlung */
  @media (max-width: 968px) and (orientation: landscape) {
      .hero {
          min-height: auto;
          padding: 80px 20px 40px;
      }
      
      .hero-content {
          grid-template-columns: 1fr 1fr;
          gap: 30px;
      }
  }