/* styles-dark.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: 'Outfit', sans-serif;
    background-color: #121212; /* Dark background */
    color: #fff; /* White text color */
    overflow: hidden; /* Prevents scrolling */
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(35vh - 30px);
}

.logo-container {
    position: absolute;
    top: 15px;
    left: 20px;
}

.logo-container img {
    width: 50px;
}

#headline {
    font-size: 6em;
    text-align: center;
    transform: translateY(-1px);
    word-break: break-word;
    font-weight: bold;
    max-width: 80%;
    margin: 0 auto;
    animation: slideInFromBottom 1s ease-out;
    background: linear-gradient(to right bottom, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0.38));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(255,255,255,0.5); /* 0 horizontale Verschiebung, 2px vertikale Verschiebung, 5px Unschärfe und 0.5 Transparenz */
}

#pulsing-logo {
    font-size: 6em;
    color: #fff; /* Change text color to white */
    text-align: center;
    transform: translateY(-1px);
    word-break: break-word;
    font-weight: bold;
    max-width: 80%;
    margin: 0 auto;
    
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: pulse 2s ease-in-out infinite; 
}

.pronto-logo {
    width: 50px; 
}

@media screen and (max-width: 900px) {
    #headline {
        font-size: 4em;
        max-width: 80%;
    }
}

@media screen and (max-width: 750px) {
    #headline {
        font-size: 3.5em;
        max-width: 80%;
    }
}

@keyframes pulse {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes slideInFromBottom {
    0% {
      transform: translateY(5%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}


  footer {
    background: linear-gradient(155deg, #121212, #121212);
    height: 30px;
    display: flex;
    justify-content: left;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
}

.footer-content img {
    height: 16px;
    margin-right: 5px;
    margin-left: 10px;
}

.footer-content p {
    margin: 0px;
    color: #fff; /* White text color */
    font-size: 12px;
}
  
  .footer-content p {
    margin: 0px;
    color: #fff; /* White text color */
    font-size: 12px;
  }

  .icon-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.icon-bar-wrapper {
    display: flex;
    width: 90%;  
    margin: 0 auto;
    overflow: hidden;  
    position: relative; 
    max-width: 823px;
}
.icon-bar-wrapper:before, 
.icon-bar-wrapper:after {
    content: "";
    position: absolute;
    width: 10%; /* Adjust based on how wide you want the fading effect to be */
    height: 100%;
    z-index: 2;
}

.icon-bar-wrapper:before {
    left: 0;
    background: linear-gradient(to right, #121212, rgba(255,255,255,0));
}

.icon-bar-wrapper:after {
    right: 0;
    background: linear-gradient(to left, #121212, rgba(255,255,255,0));
}

.icon-bar1 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: calc(2 * max-content);
    animation: scroll-left 35s linear infinite;
    transform: translateX(0);
    position: relative; 
    z-index: 1;
}
.icon-bar2 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: calc(2 * max-content);
    animation: scroll-left 50s linear infinite;
    transform: translateX(0);
    position: relative; 
    z-index: 1;
}
.icon-bar3 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: calc(2 * max-content);
    animation: scroll-left 30s linear infinite;
    transform: translateX(0);
    position: relative; 
    z-index: 1;
}
.icon-bar4 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: calc(2 * max-content);
    animation: scroll-left 45s linear infinite;
    transform: translateX(0);
    position: relative; 
    z-index: 1;
}

.icon-bar4::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #121212, rgba(255,255,255,0) 83%);
    z-index: 2;
}



.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; /* Oder eine andere gewünschte Größe */
    height: 50px;
    margin-left: 35px; /* Abstand zwischen den Boxen */
    margin-top: 20px;
    border-radius: 18%; 
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 1px 0px inset;
    background: linear-gradient(155.91deg, rgb(24, 25, 28) 21.92%, rgb(33, 34, 37) 77.49%)
}

.icon {
    width: 60%; /* Oder eine andere gewünschte Größe */
    height: 60%;
    filter: drop-shadow(rgba(0, 0, 0, 0.25) 0px 4px 4px);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.center-logo {
    z-index: 10;
    padding: 10px;
    background: linear-gradient(155deg, #006DFF, #006DFF);
    border-radius: 20%;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 1px 0px inset, 1px 15px 15px 15px rgba(0,0,0,0.6);
    transform-style: preserve-3d; /* wichtig für 3D-Transformationen */
}
.center-logo img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
    transform-origin: center center; /* wichtig für 3D-Transformationen */
}

.icon-box {
    opacity: 0; /* Set initial state to invisible */
    animation: fadeIn 1200ms ease-out forwards;
}

