/* 1. GRUNDLAGEN (Für alle Geräte) */
body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%; /* Verhindert, dass Bilder jemals aus dem Bildschirm ragen */
    height: auto !important; /* Verhindert Verzerrungen */
}

/* 2. TEXTE & ÜBERSCHRIFTEN */
.Text {
    font-size: 18px;
    line-height: 1.6;
    color: #363636;
    margin-bottom: 15px;
}

.TextHedding2 { font-size: 35px; text-decoration: none; }
.firstsign3 { font-size: 35px; color: #ff4040; }

.header-zentriert {
    text-align: center;
    padding: 20px;
}
/* Deine Markenfarben */
.firstsign, .firstsign3 {
    color: #ff4040 !important; /* Dein DJ-Rot */
    font-weight: bold;
}

.TextHedding2 {
    color: #363636; /* Dein DJ-Schwarz/Anthrazit */
}

/* Der Menü-Look */
.menü {
    color: #363636;
    font-size: 18px;
}

/* 3. LAYOUT (MacBook / Desktop) */
#navcontainer3 {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    display: flow-root;
}

.profile-pic {
    float: right;
    width: 180px;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* 4. NAVIGATION */
#navlist {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#navlist li { font-size: 18px; padding: 10px; }
#navlist a { text-decoration: none; color: #363636; }

/* 5. HANDY-OPTIMIERUNG (Wenn Bildschirm schmaler als 768px) */
@media screen and (max-width: 768px) {
    #navcontainer3 {
        padding: 15px;
    }

    .profile-pic {
        float: none;
        display: block;
        margin: 0 auto 20px auto;
        width: 200px;
    }

    .TextHedding2, .firstsign3 {
        font-size: 22px;
    }
}