
  /* ====================================
   NASTIQ – MOBILE OPTIMIZATION
   ==================================== */




/* Viewport Breite */
@media (max-width: 768px) {
    html {
      font-size: 14px;
    }
  
    body {
      padding: 1rem;
    }
  
  
    h1, h2 {
      font-size: 3rem;
      text-align: center;
    }
  
    h3 {
      font-size: 3rem;
      text-align: center;
    }
  
    h4 {
      font-size: 2rem;
      text-align: center;
    }
  
    h5, h6, p, li {
      font-size: 1.2rem;
      line-height: 1.6;
      text-align: center;
    }
  

    .logo-section {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh; /* nimmt die volle Höhe vom Bildschirm ein */
      padding-top: 0;     /* entfernt evtl. zu viel Abstand oben */
      padding-bottom: 0;
      flex-direction: column;
    }
    
    .logo {
      max-width: 80vw;
      height: auto;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
  
    section {
      padding: 80px 20px;
      margin: 50px auto;
    }
  
    .cta {
      font-size: 1.2rem;
      padding: 10px 20px;
    }
  
    nav a {
      font-size: 2.5rem;
      text-align: center;
      display: block;
      margin-bottom: 1rem;
    }
  
    .container,
    .content {
      padding: 0 1rem;
    }
  
    .social-icons {
      gap: 15px;
      flex-wrap: wrap;
    }
  
    .social-icons img {
      width: 30px;
    }
  
    ul {
      padding-left: 1rem;
    }
  
    li {
      margin: 1rem 0;
      padding-left: 0.5rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
    h1, h2 {
      font-size: 2rem;
      text-align: center;
    }
  
    h3 {
      font-size: 2rem;
      text-align: center;
    }
  
    .cta {
      width: 100%;
      text-align: center;
    }
  
    .logo-section {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
      height: 100vh !important;
      padding: 0 !important;
      margin: 0 !important;
      flex-direction: column;
      background: transparent;
      position: relative;
    }
    
    .logo {
      max-width: 80vw;
      height: auto;
      display: block;
    }

    .logo-section {
      padding-top: 120px;
      min-height: 50vh;
      flex-direction: column;
    }
  
    .footer-logo {
      width: 120px;
    }
  
    footer p, footer a {
      font-size: 0.9rem;
    }
  }

  









/* Mobile Navigation - Fügen Sie dies zu mobile.css hinzu */

/* Basis Navigation */
nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

/* Desktop Navigation (Standard) */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f0f0f0;
}

/* Mobile Menu Button - versteckt auf Desktop */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
      display: block;
  }
  
  .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      flex-direction: column;
      padding: 2rem 0;
      gap: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
  }
  
  .nav-links.mobile-active {
      display: flex;
  }
  
  .nav-links li {
      text-align: center;
      padding: 0;
  }
  
  .nav-links a {
      display: block;
      padding: 1rem 2rem;
      font-size: 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-links a:hover {
      background-color: rgba(255,255,255,0.1);
  }
}

/* Animation für den Hamburger Button */
.mobile-menu-btn.active {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}