/* Unbounded font-face declarations */
@font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/unbounded-v7-latin-200.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/unbounded-v7-latin-300.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/unbounded-v7-latin-regular.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/unbounded-v7-latin-500.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/unbounded-v7-latin-600.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/unbounded-v7-latin-700.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/unbounded-v7-latin-800.woff2') format('woff2');
  }
  
  @font-face {
    font-display: swap;
    font-family: 'Unbounded';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/unbounded-v7-latin-900.woff2') format('woff2');
  }
  
  :root {
      --color-bg: #FCF7E4;
      --color-primary: #484D9B;
      --color-text: #393D3E;
      --color-accent1: #009EDC;
      --color-accent2: #E75A11;
      --color-accent3: #F9B000;
      --color-accent4: #3098A3;
      --color-accent5: #CC76A7;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      font-family: 'Unbounded', sans-serif;
      background-color: var(--color-bg);
      color: var(--color-text);
      line-height: 1.6;
      overflow-x: hidden;
  }
  
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
  }
  
  /* Header Styles */
  header {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
  }
  
  .header-content {
      text-align: center;
      z-index: 1;
  }
  
  .logo-container {
      position: relative;
      width: 150px;
      height: 150px;
      margin: 0 auto;
      cursor: pointer;
  }
  
  .brain-logo {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
  }
  
  .slogan {
      position: absolute;
      top: 110%;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.2rem;
      color: var(--color-primary);
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .tagline {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: var(--color-primary);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  }
  
  .cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--color-primary);
      color: var(--color-bg);
      text-decoration: none;
      border-radius: 50px;
      font-weight: bold;
      transition: all 0.3s ease;
  }
  
  .cta-button:hover {
      transform: scale(1.05);
      background-color: var(--color-accent1);
  }
  
  /* Produktspezifische Farben */
  .product-header.deltadash, .product[data-color="accent3"] {
      background-color: #F9B000;
  }
  
  .product-header.balancecheck, .product[data-color="accent4"] {
      background-color: #3098A3;
  }
  
  .product-header.nudgy, .product[data-color="accent2"] {
      background-color: #E75A11;
  }
  
  .product-header.saibo, .product[data-color="accent1"] {
      background-color: #009EDC;
  }
  
  .product-header.catsquad, .product[data-color="accent5"] {
      background-color: #CC76A7;
  }
  
  /* Gemeinsame Stile für Product-Header */
  .product-header {
      position: relative;
      padding: 4rem 0;
      color: var(--color-bg);
      text-align: center;
  }
  
  /* Angepasste SVG-Shape-Farben */
  .product-header .shape {
      opacity: 0.3;
  }
  
  .product-header.deltadash .shape {
      fill: #FDDA6C;
  }
  
  .product-header.balancecheck .shape {
      fill: #65B8C1;
  }
  
  .product-header.nudgy .shape {
      fill: #F18D5A;
  }
  
  .product-header.saibo .shape {
      fill: #4CBEF0;
  }
  
  .product-header.catsquad .shape {
      fill: #DDA0C2;
  }
  
  /* Product Grid Styles */
  .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      padding: 6rem 0;
      perspective: 1000px;
  }
  
  .product {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: all 0.5s ease;
      transform-style: preserve-3d;
      position: relative;
      overflow: hidden;
  }
  
  .product:hover {
      transform: rotateY(10deg) translateZ(20px);
      box-shadow: -10px 10px 20px rgba(0,0,0,0.2);
  }
  
  .product::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, transparent, var(--product-color) 60%);
      transform: rotate(45deg);
      opacity: 0;
      transition: opacity 0.3s ease;
  }
  
  .product:hover::before {
      opacity: 0.3;
  }
  
  .product h2 {
      color: var(--color-primary);
      margin-bottom: 1rem;
      font-size: 1.8rem;
      position: relative;
      z-index: 1;
  }
  
  .product p {
      font-size: 1rem;
      color: var(--color-text);
      position: relative;
      z-index: 1;
  }
  
  /* Shapes Animation */
  .shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
  }
  
  .shape {
      position: absolute;
      opacity: 0.5;
  }
  
  #shape1 {
      top: 20%;
      left: 10%;
      animation: float 6s ease-in-out infinite;
  }
  
  #shape2 {
      top: 60%;
      right: 15%;
      animation: float 8s ease-in-out infinite;
  }
  
  #shape3 {
      bottom: 10%;
      left: 30%;
      animation: float 10s ease-in-out infinite;
  }
  
  @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
  }
  
  /* Footer Styles */
  footer {
      text-align: center;
      padding: 2rem 0;
      background-color: var(--color-primary);
      color: var(--color-bg);
  }
  
  .footer-nav {
      margin-top: 1rem;
  }
  
  .footer-nav a {
      color: var(--color-bg);
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s ease;
  }
  
  .footer-nav a:hover {
      color: var(--color-accent1);
  }
  
  /* Product color variations */
  .product[data-color="accent1"] { --product-color: var(--color-accent1); }
  .product[data-color="accent2"] { --product-color: var(--color-accent2); }
  .product[data-color="accent3"] { --product-color: var(--color-accent3); }
  .product[data-color="accent4"] { --product-color: var(--color-accent4); }
  .product[data-color="accent5"] { --product-color: var(--color-accent5); }
  .product[data-color="primary"] { --product-color: var(--color-primary); }
  
  /* Mobile tilt effect */
  @media (hover: hover) {
      .logo-container:hover .brain-logo {
          animation: shake 0.5s ease-in-out;
      }
  
      .logo-container:hover .slogan {
          opacity: 1;
          transform: translateX(-50%) translateY(-10px);
      }
  }
  
  .logo-container.active .brain-logo {
      animation: shake 0.5s ease-in-out;
  }
  
  .logo-container.active .slogan {
      opacity: 1;
      transform: translateX(-50%) translateY(-10px);
  }
  
  @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-5px) rotate(-5deg); }
      75% { transform: translateX(5px) rotate(5deg); }
  }
  
  /* Product link styles */
  .product-link {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.5rem 1rem;
      background-color: var(--color-primary);
      color: var(--color-bg);
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
  }
  
  .product-link:hover {
      background-color: var(--product-color);
  }
  
  /* Product Page Styles */
  .header-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 2rem;
  }
  
  .product-header .logo-container {
      margin-bottom: 2rem;
  }
  
  .product-title {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-align: center;
  }
  
  .product-subtitle {
      font-size: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
  }
  
  .product-content,
  main.container {
      max-width: 800px;
      margin: 4rem auto;
      padding: 0 2rem;
  }
  
  .product-section {
      margin-bottom: 3rem;
  }
  
  .product-section h2 {
      color: var(--color-primary);
      font-size: 2rem;
      margin-bottom: 1rem;
  }
  
  /* About Us Page Styles */
  .profile {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      margin-bottom: 3rem;
  }
  
  .profile-image {
      width: 300px;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .profile-content {
      flex: 1;
  }
  
  .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
  }
  
  .tag {
      background-color: var(--color-primary);
      color: var(--color-bg);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-size: 0.9rem;
  }
  
  /* Navigation Styles */
  .product-nav {
      display: flex;
      justify-content: space-between;
      max-width: 800px;
      margin: 2rem auto;
      padding: 0 2rem;
  }
  
  .nav-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--color-primary);
      color: var(--color-bg);
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
  }
  
  .nav-button:hover {
      background-color: var(--color-accent1);
  }
  
  /* Contact Form Styles */
  .contact-form {
      max-width: 600px;
      margin: 0 auto;
  }
  
  .form-group {
      margin-bottom: 1.5rem;
  }
  
  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--color-primary);
      font-weight: bold;
  }
  
  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 0.5rem;
      border: 2px solid var(--color-primary);
      border-radius: 5px;
      font-family: 'Unbounded', sans-serif;
  }
  
  .form-group textarea {
      height: 150px;
      resize: vertical;
  }
  
  .contact-form .cta-button {
      display: block;
      width: 100%;
      padding: 1rem;
      background-color: var(--color-primary);
      color: var(--color-bg);
      border: none;
      border-radius: 5px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

.contact-form .cta-button:hover {
    background-color: var(--color-accent1);
}

/* Additional styles for better readability */
p {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        width: 100px;
        height: 100px;
    }

    .slogan {
        font-size: 1rem;
    }

    .profile {
        flex-direction: column;
        align-items: center;
    }

    .profile-image {
        width: 200px;
        height: auto;
    }

    .product-title {
        font-size: 2.5rem;
    }

    .product-subtitle {
        font-size: 1.2rem;
    }


    .product-nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}