/* --- SKAPPA MUSIC - COMPLETE STYLESHEET --- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    background-color: #a0201a;
    color: white;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: flex; 
    align-items: center;
    gap: 5px; 
}

.logo-bird {
    height: 28px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #4CAF50;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    font-size: 1.2rem;
}

/* Hintergrund & Hero Sektion */
.hero-section {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('images/album-background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

/* Kachel-System */
.tile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    width: 95%;
    max-width: 1400px;
    justify-content: center;
}

.tile-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    flex-shrink: 0;
}

.song-tile {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    text-decoration: none !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: white !important;
}

.song-tile:hover { transform: scale(1.03); border-color: #fff; }

.song-title {
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.1;
    margin-top: 10px;
    display: block;
}

.tile-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
}

.tile-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.2s ease;
    text-decoration: none !important;
}

.tile-links a:hover {
    color: #4CAF50 !important;
    transform: scale(1.2);
}

.status-text {
    color: #ffffff !important;
    margin-top: 10px;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px #000;
    text-decoration: none !important;
}

/* Styling für die Placeholder-Kachel */
.song-tile.placeholder {
    display: flex;
    align-items: center;      /* Zentriert den Text vertikal */
    justify-content: center;   /* Zentriert den Text horizontal */
    background-color: rgba(255, 255, 255, 0.05); /* Leicht transparenter Hintergrund */
    border: 2px dashed rgba(255, 255, 255, 0.6); /* Gestrichelter Rand aus dem Entwurf */
    border-radius: 15px;      /* Gleiche Abrundung wie die normalen Kacheln */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Hover-Effekt für die Placeholder-Kachel */
.song-tile.placeholder:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Wird beim Drüberfahren leicht heller */
    border-color: #4caf50;                       /* Färbt den Rand in dein SKAPPA-Grün */
    transform: scale(1.03);                      /* Leichtes Einzoomen beim Hovern */
}

/* Korrektur für den Text innerhalb der Placeholder-Kachel */
.song-tile.placeholder .song-title {
    position: static;         /* Hebt die absolute Positionierung der normalen Titel auf */
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* --- CONTACT SECTION & FORMULARE --- */

.contact-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 90%;
    margin: 40px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 5;
}

.contact-container h2 {
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-intro {
    text-align: center;
    color: #e0e0e0 !important;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.info-item i {
    color: #4CAF50 !important; 
    font-size: 1.2rem;
    width: 30px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.info-item span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.4;
}

/* --- NEBENEINANDER, FARB- & UNTERSTREICHUNGS-FIX --- */
.social-box-contact {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    margin-top: 10px;
}

/* Entfernt die blaue Unterstreichung der Links */
.social-box-contact a {
    text-decoration: none !important; /* Das löscht den Unterstrich */
    outline: none !important;
    border: none !important;
}

.social-box-contact a i {
    color: #4CAF50 !important; 
    font-size: 1.5rem !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-decoration: none !important; /* Doppelte Absicherung */
}

/* Hover-Effekt: Icons werden WEISS */
.social-box-contact a:hover i {
    color: #ffffff !important;
    transform: scale(1.2) !important;
    text-decoration: none !important;
}

/* --- FORMULAR FELDER DESIGN --- */

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    color: white;
    border-radius: 8px;
    resize: vertical;
    min-height: 120px;
    font-size: 1rem;
}

.submit-btn {
    grid-column: span 2;
    background: linear-gradient(135deg, #a0201a 0%, #7a1814 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #c02a23 0%, #a0201a 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(160, 32, 26, 0.6);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.85); 
    backdrop-filter: blur(10px);
    color: #888;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a { color: #888; text-decoration: none; margin: 0 10px; }
footer a:hover { color: #4CAF50; }

/* --- MOBILE OPTIMIZATIONS (PORTRAIT) --- */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 10px 5px;
        position: absolute;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    .hero-section {
        padding-top: 220px !important; 
    }

    .contact-grid {
        display: block !important;
    }

    .contact-info {
        width: 100% !important;
        margin-bottom: 30px;
        display: block !important;
    }

    .info-item {
        display: table !important; 
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .info-item i {
        display: table-cell !important;
        vertical-align: middle !important;
        width: 35px !important;
    }

    .info-item span {
        display: table-cell !important;
        vertical-align: middle !important;
        color: #ffffff !important; 
        font-size: 1rem !important;
    }

    .social-box-contact {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start;
    }

    .contact-form {
        display: block !important;
    }

    .contact-form input, 
    .contact-form textarea, 
    .submit-btn {
        width: 100% !important;
        margin-bottom: 10px;
    }
}

/* --- MOBILE OPTIMIZATIONS (LANDSCAPE) --- */

@media (max-width: 950px) and (orientation: landscape) {
    .navbar {
        flex-direction: row !important; /* Menü wieder nebeneinander */
        justify-content: space-between !important;
        padding: 10px 20px !important;
        position: fixed !important;
    }

    .nav-links {
        flex-direction: row !important; /* Links nebeneinander */
        gap: 15px !important;
        margin-top: 0 !important;
    }

    .social-icons {
        display: flex !important;
        margin-left: 10px !important;
    }

    .hero-section {
        padding-top: 80px !important; /* Weniger Abstand zum flachen Menü */
        justify-content: flex-start;
    }
    
    .contact-container {
        margin-top: 20px !important;
        padding: 20px !important;
    }
}