/* Reset und Grund-Einstellungen */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    /* Der Hintergrund wird jetzt über die .background-container Divs gesteuert */
}

/* --- ANIMIERTER HINTERGRUND (Vanta.js WebGL) --- */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: #f8f8f8;
}

/* Körniger Effekt ("grob" und unscharf) */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
    pointer-events: none; /* Klicks gehen durch das Overlay hindurch */
}

/* --- HEADER (weiche, luftige Schrift) --- */
.header {
    width: 100%;
    padding-top: 60px;
    text-align: center;
}

.header-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #444; /* Etwas weicher als reines Schwarz */
    animation: pulse 4s infinite ease-in-out;
}

/* --- MAIN CONTENT (Schrift ähnlich dem Logo) --- */
.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.coming-soon {
    /* Fredoka hat diese dicken, abgerundeten Enden ähnlich dem Logo */
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    text-transform: lowercase; /* Optional, aber oft gut für diese Art von Schrift */
    letter-spacing: -0.02em;
    color: #000;
    text-align: center;
    
    /* Die langsam pochende Animation */
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Responsives Verhalten für Coming Soon Text */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 3rem;
    }
    .header-text {
        font-size: 1.8rem;
    }
}

/* --- FOOTER --- */
.footer {
    width: 100%;
    padding-bottom: 40px;
    text-align: center;
}

.footer nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer a {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer a:hover {
    color: #000;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* --- MODALS (Für Impressum, AGB, Datenschutz) --- */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px); /* Ein moderner, weicher Blur-Effekt */
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

/* Aktiviert das Modal, wenn die ID im Link-Hash steht */
.modal:target {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 50px 40px;
    max-width: 600px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    font-family: 'Raleway', sans-serif;
}

.modal-content h2 {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #000;
}

.modal-content p {
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    color: #999;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #000;
}

 / *   - - -   L O G O   A N I M A T I O N   - - -   * / 
 # a n i m a t i o n - c o n t a i n e r   { 
         p o s i t i o n :   r e l a t i v e ; 
         w i d t h :   1 0 0 % ; 
         m a x - w i d t h :   5 0 0 p x ; 
         h e i g h t :   3 5 0 p x ; 
 } 
 
 . s v g - l a y e r   { 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   5 0 % ; 
         l e f t :   5 0 % ; 
         t r a n s f o r m :   t r a n s l a t e ( - 5 0 % ,   - 5 0 % ) ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         v i s i b i l i t y :   h i d d e n ; 
 } 
 
 . s t 0   { 
         f i l l :   # 1 a 1 a 1 a ; 
 } 
  
 