/* Grundlegende Resets und Box-Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    display: none;
}

@keyframes luxuryGradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes breatheEffect {
  0%, 100% {
    transform: scale(.95); /* Normalgröße */
  }
  10% {
transform: scale(.95);
}
  50% {
    transform: scale(1); /* Minimale Vergrößerung (1.5%) in der Mitte */
  }
}

/* Body-Styling für luxuriösen Look */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Sehr dunkler, luxuriöser Gradient mit Schwarz und gedecktem Violett */
    background: linear-gradient(-45deg, #20597E, #4F2669); /* Schwarz -> Dunkelgrau -> Dunkelviolett -> Schwarz */
    background-size: 200% 200%;
    animation: luxuryGradientShift 25s ease infinite; /* Noch langsamere Animation */
    font-family: 'Lato', sans-serif; /* Standard-Schrift für Fallback */
    color: #e0e0e0; /* Elegantes Off-White/Hellgrau für Text */
    text-align: center;
    overflow: hidden;
}

.content-wrapper {
    padding: 2rem;
    position: relative;
    z-index: 1;
    

 animation-name: breatheEffect;       /* Name der Keyframes */
    animation-duration: 8s;            /* Dauer für einen Atemzyklus (sehr langsam) */
    animation-timing-function: ease-in-out; /* Weicher Übergang */
    animation-iteration-count: infinite;   /* Endlosschleife */
}


/* Vorhandenen .brand-name Block anpassen: */
.brand-name {
    font-family: 'Archivo Narrow', sans-serif; 
    font-weight: 300; 
    font-size: clamp(3rem, 9vw, 7rem); 
    text-transform: uppercase;
    color: #ffffff; 
    margin-bottom: .6rem;
    white-space: nowrap;
    display: inline-block; 
}

@keyframes pulseGlow {
  0%, 100% { 
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15); 
  }
  10% { 
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 
                 0 0 40px rgba(255, 255, 255, 0.6); 
  }
20% { 
    text-shadow: none;
  }
}

.brand-name span {
    display: inline-block; /* Wichtig für Animationen/Effekte */
    /* Animation anwenden */
padding: 0em .15em;
    animation-name: pulseGlow;

    animation-iteration-count: infinite; /* Endlosschleife */
    animation-timing-function: ease-in-out; /* Sanfter Übergang */
}

/* NEU: Unterschiedliche Startverzögerungen für Pseudo-Zufälligkeit */
.brand-name span:nth-child(1) { animation-delay: 1s; animation-duration: 9s;}
.brand-name span:nth-child(2) { animation-delay: 5s;animation-duration: 11s;}
.brand-name span:nth-child(3) { animation-delay: 3s;animation-duration: 10s;}
.brand-name span:nth-child(4) { animation-delay: 7s;animation-duration: 8.5s;}
.brand-name span:nth-child(5) { animation-delay: 2s;animation-duration: 9.5s;}
.brand-name span:nth-child(6) { animation-delay: 4s;animation-duration: 10.5s;} 


/* Styling für den Slogan */
.slogan {
    font-family: 'Lato', sans-serif;
    font-weight: 300; /* Leicht */
    font-size: clamp(0.8rem, 2vw, 1.4rem); /* Etwas kleiner für mehr Eleganz */
    text-transform: uppercase;
    letter-spacing: 0.13em; /* Mehr Abstand auch hier */
    opacity: 0.8;
    margin-bottom: 2rem; /* Mehr Abstand zur Linie */
    position: relative;
    color: #bdbdbd; /* Etwas dunkleres Grau für den Slogan */
}



