/* --- GLOBAL --- */
body {
    margin: 0;
    color: #fff;
    font-family: 'Arial', sans-serif;
    background: #000;
    overflow-x: hidden;
}
p {
text-align: center;
margin-top: 10px;
    margin-bottom: 10px;
}
h1  {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

h2, h3 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}





/* BLINK EFFECT */
@keyframes blink { 50% { opacity: 0; } }
.blink { animation: blink 1s infinite; }

/* BUTTON */

button {
    background: linear-gradient(135deg, #0d3fa6, #071f52);
    border: none;
    padding: 17px 33px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    border-radius: 12px;
    margin-top: 12px;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(45,105,255,0.5);
}
button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(45,105,255,0.8);
}
button:disabled {
    opacity: 0.5;
    cursor: default;
}
/* FILE INPUT / DRAG DROP */
.drag-drop-area {
    border: 2px dashed #0d3fa6;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    margin: 14px auto;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: rgba(255,255,255,0.05);
}
.drag-drop-area:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 12px rgba(45,105,255,0.5);
}
.drag-drop-area p {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}
/* Versteckt das echte File-Input */
#file-input {
    display: none;
}
/* STATUS */
.status {
    margin-top: 10px;
    font-weight: bold;
    color: #ffd700;
}

.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    border: none;
   background: linear-gradient(to right, #020b1e, #1c6fd5); /* Dunkelblau → Hellblau */
    color: #fff; 
    font-weight: 600;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(212,175,55,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.donate-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 40px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(to right, #020b1e, #1c6fd5); /* Dunkelblau → Hellblau */
    color: #fff; 
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(212,175,55,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.donate-btn:hover {
    background: linear-gradient(135deg, #020b1e, #062b5f);
    color: #fff; /* optional, Text anpassen */
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(28,111,213,0.55);
}



  
/* --- HERO SECTION (OBEN) --- */
.hero-section {
    position: relative;    
overflow: hidden;
height: auto;
}


.floating-title {
    position: relative; /* jetzt innerhalb von hero-section */
    left: 50%;
    transform: translateX(-50%);
    font-size: 7rem;
    font-family: 'Arial', sans-serif; /* oder 'Poppins', 'Raleway' etc. */
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.hero-video {
position: absolute;
    inset: 0;                 /* top:0 left:0 right:0 bottom:0 */
    width: 100%;
    height: 100%;

    object-fit: cover;        /* 🔥 wie background-size: cover */
    object-position: center;  /* 🔥 wie center center */
    transform: translateZ(0);
    z-index: 0;
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
   

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-section h1 {
    font-family: 'Great Vibes', cursive;
    color: #a0f0ff;
    text-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.hero-section h2 {
    font-size: 1.2rem;
    color: #a0f0ff;
}





	

/* --- INFO SECTION (UNTEN) --- */
.info-section {
    position: relative;
    height: auto;
    overflow: hidden;
}


/* Info-Boxen */
.info-box {
  position: relative;
    color: #fff;
    z-index: 3;

    background: rgba (0,0,0,0.8); /* ❗ kleiner Bug gefixt */
    border: 1px solid rgba(255,255,255,0.18);

    padding: 20px;
    border-radius: 14px;

    width: min(90%, 280px); /* 🔑 wichtig */
    box-sizing: border-box;

    backdrop-filter: blur(50px);
    box-shadow: 0 0 18px rgba(255,255,255,0.15);

    transition: 0.35s;
    animation: float 6s ease-in-out infinite;


}
.info-box:hover { transform: scale(1.05); box-shadow: 0 0 28px rgba(120,160,255,0.65); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.info-box-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}





/* --- SERVICE SECTIONS --- */

.section-title-432 {
    font-family: 'Great Vibes', cursive;
    font-size: 7rem;     /* kleiner als deine 4rem Hauptüberschrift */
    color: #a0f0ff;        /* gleiche Farbe wie oben */
    text-shadow: 0 0 10px rgba(255,255,0,0.5);
    letter-spacing: 1px;
    position: relative;
    left: 50%;              /* horizontal zentrieren */
    transform: translateX(-50%);
    z-index: 3;             /* über Overlay */
    text-shadow:1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Tablets / kleine Laptops */
@media (max-width: 1024px) {
    .floating-title, .section-title-432 {
        font-size: 6rem;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .floating-title, .section-title-432{
        font-size: 4.5rem;
    }
}

/* sehr kleine Geräte */
@media (max-width: 480px) {
    .floating-title, .section-title-432{
        font-size: 3.5rem;
    }
}

.personalized-section {
    position: relative;	
    height: auto;
    overflow: hidden;
}
.hifi-section {
    position: relative;
    height: auto;
    overflow: hidden;
}
.additional-section {
    position: relative;
    height: auto;
    overflow: hidden;
}
.frequency-section {
    position: relative;
    height: auto;
    overflow: hidden;
    
}


.image-box2 img.responsive-img {
    max-width: 100%;   /* passt Bild an Containerbreite an */
    max-height: 400px; /* optional, maximale Höhe */
    width: auto;
    height: auto;
}

/* ===== UNIVERSAL OVERLAY ===== */
.overlay, .overlay2 {
    position: relative;          /* bleibt im normalen Flow */
    z-index: 2;

    width: min(80vw, 1200px);    /* 80% vom Viewport, max 1200px */
    margin: 10px auto; 

    padding: 0px 0px;
    border-radius: 18px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 0 30px rgba(0,0,0,0.6);

    text-align: center;
}


.overlay2 .small {
    font-size: 0.8rem;
    opacity: 0.7;
}


/* Desktop / Standard */
.overlay {
    width: 86%;        /* nimmt 80% der Section-Breite */
    max-width: 1200px; /* maximale Breite */
    padding: 40px;
    box-sizing: border-box;
}

/* Tablet Hochformat */
@media (max-width: 1024px) {
    .overlay {
        width: 90%;
        padding: 32px 20px;
    }
}

/* Tablet / kleiner Laptop */
@media (max-width: 768px) {
    .overlay {
        width: 92%;
        padding: 28px 16px;
    }
}

/* Handy */
@media (max-width: 480px) {
    .overlay {
        width: 96%;
        padding: 20px 12px;
    }
}




.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 120%;
    height: 120%;

    transform: translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    will-change: transform;
    z-index: 0;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
    padding: clamp(30px, 6vh, 70px) 3vw;
    max-width: 1200px;
    width: 100%;
  margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;

}
.personalized-bg {background-image: url('/static/3.jpg');}
.info-bg { background-image: url('/static/1.jpg'); }
.frequency-bg { background-image: url('/static/2.jpg'); }
.hifi-bg { background-image: url('/static/4.jpg'); }
.additional-bg {background-image: url('/static/5.jpg');}

@keyframes fadeInUp { from { opacity:0; transform: translateY(25px);} to {opacity:1; transform: translateY(0);} }

/* Backgrounds für einzelne sections (IDs) */
/* Content-Container */
.content-container  {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-box, .image-box { ;display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.05); 
    border:1px solid rgba(255,255,255,0.15); 
    padding:24px; border-radius:12px; 
    backdrop-filter: blur(5px); 
    box-shadow: 0 0 18px rgba(255,255,255,0.1); 
    transition:0.35s; 
    width: 90%;}

.text-box:hover, .image-box:hover { transform: translateY(-5px); box-shadow: 0 0 28px rgba(255,255,255,0.25); }
.image-box img { width:100%; border-radius:12px; display:block; margin:auto; }



.image-container {
    width: 100%;         /* nimmt maximal den verfügbaren Platz */
    max-width: 500px;    /* maximale Breite des Bildes */
    margin: 0 auto;      /* zentriert das Bild */
    overflow: hidden;    /* verhindert, dass es über den Container hinausgeht */
   text-align: center;
}

.responsive-image {
    width: 70%;         /* Bild passt sich der Container-Breite an */
    height: auto;        /* behält das Seitenverhältnis */
    display: block;
    border-radius: 12px; /* optional, abgerundete Ecken */
text-align: center;
margin: 0 auto;
}



/* Tabellen */
table { width:100%; border-collapse: collapse; margin-top:15px; }
table th, table td { border:1px solid rgba(255,255,255,0.2); padding:8px; color:#fff; font-size:0.95rem; }
table th { background: rgba(255,255,255,0.1); }


/* --- FOOTER --- */
.site-footer {
    text-align: center;
    padding: 18px;
    background: #02040f;
    color: #ccc;
    font-size: 0.9rem;
}







.compare-intro {
    color: #ccc;
    font-size: 1.05rem;
}

.compare-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto; /* zentriert das Grid */
    padding: clamp(0px, 5vh, 50px);
    box-sizing: border-box;

}

.compare-card {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 25px;
}

.compare-card h3 {
    margin-bottom: 15px;
}

.compare-card audio {
    width: 100%;
    margin-bottom: 10px;
}














.contact-section {
    position: relative;
    overflow: hidden;
}

/* Gradient-Parallax-Hintergrund */
.contact-parallax-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,#020b1e 0%, #062b5f 45%,#1c6fd5 100%);
    transform: translateY(0);
    transition: transform 0.1s linear;
    z-index: 0;
    top: -200%;
    left: 0;
    width: 100%;
    height: 180%;
}





.contact-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
    color: #ccc;
    z-index: 3;}

.contact-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 40px;
    z-index: 3;}

@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #111;
    jcolor: #fff;
    z-index: 3;}


.contact-form button {
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    cursor: pointer;
z-index: 3;}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    z-index: 3;}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 1.05rem;
z-index: 3;}
