/* Fonts */
@font-face {
    font-family: "Fira Code";
    src: url("assets/fonts/Fira Code/FiraCode-Bold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Code";
    src: url("assets/fonts/Fira Code/FiraCode-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Code";
    src: url("assets/fonts/Fira Code/FiraCode-Medium.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Code";
    src: url("assets/fonts/Fira Code/FiraCode-Regular.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Fira Code";
    src: url("assets/fonts/Fira Code/FiraCode-SemiBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "Karla";
    src: url("assets/fonts/Karla/Karla-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
  }
  
  /* Reset & Base */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body, html {
      height: 100%;
      overflow: hidden;
      background-color: rgb(46, 45, 45);
  }
  
  /* Coming Soon Section */
  .coming-soon-section {
      background-image: url('assets/bg.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }
  
  /* Content - ohne Card, nur Text */
  .coming-soon-content {
      text-align: center;
      z-index: 2;
  }
  
  .coming-soon-content h1 {
      font-family: 'Fira Code', monospace;
      font-size: 64px;
      font-weight: 300;
      color: white;
      margin-bottom: 20px;
  }
  
  .coming-soon-content h2 {
      font-family: 'Karla', sans-serif;
      font-size: 96px;
      font-weight: 700;
      color: white;
      margin-bottom: 30px;
  }
  
  .coming-soon-content p {
      font-family: 'Karla', sans-serif;
      font-size: 18px;
      font-weight: 300;
      color: white;
      line-height: 1.8;
      margin-bottom: 15px;
  }
  
  .coming-soon-content .email-link {
      color: white;
      text-decoration: none;
      font-weight: 400;
      transition: color 0.3s ease;
      display: inline-block;
      margin-top: 30px;
      font-size: 18px;
      font-family: 'Karla', sans-serif;
  }
  
  .coming-soon-content .email-link:hover {
      color: #3dcfb6;
  }
  
  .logo {
      margin-bottom: 40px;
  }
  
  .logo img {
      width: 200px;
      height: auto;
  }
  
  /* Animated Banner - genau wie im Hero */
  .animated-banner {
      position: absolute;
      bottom: 49px;
      left: 0;
      width: 100%;
      height: 70px;
      background-color: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(5px);
      overflow: hidden;
      transform: skew(0deg, -3deg);
      font-size: 38px;
      font-family: 'Karla', sans-serif;
      font-weight: 300;
      color: #3dcfb6;
      padding: 0 20px;
      z-index: 1;
  }
  
  .banner-text {
      position: absolute;
      white-space: nowrap;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      animation: moveText 45s linear infinite;
      margin: 0 20px;
  }
  
  @keyframes moveText {
      0% {
          left: 100%;
      }
      100% {
          left: -100%;
      }
  }
  
  /* Responsive */
  @media screen and (max-width: 1100px) {
      .coming-soon-content h2 {
          font-size: 80px;
      }
  }
  
  @media screen and (max-width: 780px) {
      .coming-soon-content h1 {
          font-size: 42px;
      }
      
      .coming-soon-content h2 {
          font-size: 64px;
      }
      
      .coming-soon-content p {
          font-size: 16px;
      }
      
      .logo img {
          width: 150px;
      }
      
      .animated-banner {
          bottom: 15px;
          height: 45px;
      }
      
      .animated-banner .banner-text {
          font-size: 22px;
      }
  }
  
  @media screen and (max-width: 450px) {
      .coming-soon-content h1 {
          font-size: 32px;
      }
      
      .coming-soon-content h2 {
          font-size: 45px;
      }
      
      .coming-soon-content p {
          font-size: 14px;
      }
      
      .logo img {
          width: 120px;
      }
      
      .animated-banner {
          bottom: 10px;
          height: 40px;
      }
      
      .animated-banner .banner-text {
          font-size: 18px;
      }
  }