/* Grundlegendes Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', sans-serif;
    height: 100vh;
    overflow-y: auto;
  }
  
  .container {
    padding: 2rem;
    position: relative;
    z-index: 0;
  }

  .second-container {
    padding: 2rem;
    position: relative;
    top: 0px;
    z-index: 0;
  }

  .sticky-container {
    position: relative;
    top: -90px;
    background-image: linear-gradient(to bottom, #5b0080, transparent);
    padding: 2rem;
    transition: transform 0.5s ease-in-out;
  }
  
  .project-container {
    display: flex;
    flex-direction: ro;
    align-items: flex-start;
  }
  
  .project-boxes {
    width: 60%;
    margin-top: 2%;
    margin-right: 0px;
    display: flex;
    flex-direction: column;
  }

  .contact-boxes {
    width: 80%;
    margin-top: 2%;
    margin-left: -15px;
    display: flex;
    flex-direction: row;
  }

  .project-box {
    width: 750px;
    margin: 3px 0;
    padding: 20px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.397);
  }
  
  .contact-box {
    width: 750px;
    margin: 3px 0;
    margin-left: 10px;
    padding: 20px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.397);
  }

  .project-box h3 {
    margin-top: 0;
  }
  
  .project-box p {
    margin-bottom: 20px;
  }
  
  .project-box button {
    background-color: #c88dff;
    color: #5b0080;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica';
    font-weight: bold;
    font-size: 16px;
  }
  
  .project-box button:hover {
    background-color: #7200dd;
  }

  .contact-box button {
    background-color: #c88dff;
    color: #5b0080;
    padding: 14px 30px;
    margin-top: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica';
    font-weight: bold;
    font-size: 16px;
  }
  
  .contact-box button:hover {
    background-color: #7200dd;
  }

  .preview-container {
    width: 60%;
    background-color: rgba(0, 0, 0, 0.397);
    padding: 0px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 38px;
  }
  
  .preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .preview-video::-webkit-media-controls {
    display: none;
  }

  .logo {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  
  h1 {
    display: inline-block;
    font-family: 'Arsenica';
    font-size: 145px;
    line-height: 1.1;
    font-weight: 700;
    opacity: 1;
  }

 h2 {
    display: inline-block;
    font-family: 'Integral';
    font-size: 70px;
    line-height: 1.1;
    font-weight: 700;
    opacity: 1;
  }

  h3 {
    font-family: 'Integral';
    font-size: 22px;
    letter-spacing: 0.07em;
    line-height: 1.1;
    font-weight: 700;
    opacity: 1;
    margin-bottom: 15px;
  }

  p {
    font-family: 'Helvetica';
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 1;
  }

  .background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* oder ein anderer Wert, der niedriger ist als der der Text-Elemente */
    pointer-events: none;
    background-image: url('diamond-sunset.svg'); /* Optional: als SVG oder div */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 20%;
  }

  footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    clear: both;
  }

  footer a {
    color: #fff;
    text-decoration: none;
  }

  footer a:hover {
    color: #ccc;
  }

/* Fonts */
@font-face {
    font-family: "Arsenica";
    src: url('ArsenicaTrial-Demibold.ttf') format('truetype');
  }

@font-face {
    font-family: "Integral";
    src: url("IntegralCF-Medium.otf") format("opentype");
}

@font-face {
  font-family: "Helvetica";
  src: url("Helvetica.ttf") format("truetype");
}