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

body {
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

/* HERO */
.hero {
    text-align: center;
    padding: 90px 20px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    margin-top: 10px;
    color: #ccc;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* CONTACT-BEREICH MIT HINTERGRUNDBILD */

#contact {
    
    padding: 50px 20px;
    margin-top: -50px;          /* Nach oben verschieben */
    border-radius: 10px;        /* Abgerundete Ecken */
    
}
}

/* Halbtransparentes Overlay */
#contact::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(240, 192, 64, 0.7); 
    z-index: 1;
    border-radius: 10px;
}

/* FORM */
#contact form {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

#contact input,
#contact textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
}

#contact textarea {
    min-height: 120px;
    resize: vertical;
}

a	{color:#fff;
text-decoration: none;}

#contact button {
    padding: 12px;
    background-color: #DB4607;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

/* SOCIAL ICONS + TEXT */
#contact .social-links {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2; 
}

#contact .social-links a {
    display: flex;
    align-items: center;
    gap: 10px;               
    font-size: 18px;         
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

#contact .social-links i {
    font-size: 36px;         
}

/* Farben für Plattformen */
#contact .social-links a.instagram { color: #E1306C; }
#contact .social-links a.facebook { color: #1877F2; }
#contact .social-links a.youtube { color: #FF0000; }
#contact .social-links a.soundcloud { color: #FF5500; }
#contact .social-links a.spotify { color: #1DB954; } /* Spotify grün */

#contact .social-links a:hover {
    transform: scale(1.2);
}

/* FOOTER */
footer {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    #contact .social-links {
        gap: 15px;
    }

    #contact .social-links i {
        font-size: 28px;
    }

    #contact .social-links a {
        font-size: 16px;
    }
}
