/* ========== GLOBALE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

/* ========== HEADER ========== */
header {
    background-color: #1a1a2e;
    color: white;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* ========== NAVIGATION ========== */
nav {
    background-color: #16213e;
    padding: 1rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    display: inline-block;
}

nav a:hover {
    background-color: #0f3460;
    border-radius: 5px;
}

/* ========== MAIN CONTENT ========== */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.section {
    margin-bottom: 3rem;
}

.section h2, .section h3 {
    color: #1a1a2e;
    border-bottom: 3px solid #667eea;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.section h2 {
    font-size: 2rem;
}

.section h3 {
    font-size: 1.8rem;
}

/* ========== HERO-BEREICH (Startseite) ========== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: none;
}

/* ========== NEWS & SHOWS GRID ========== */
.news-grid, .shows-grid, .band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.news-card, .show-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover, .show-card:hover {
    transform: translateY(-5px);
}

.news-card h4 {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.news-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.show-card {
    text-align: center;
}

.show-card h4 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.show-location {
    color: #667eea;
    font-weight: bold;
    margin: 0.5rem 0;
}

.show-status {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.show-status.soldout {
    background-color: #f44336;
}

/* ========== BAND-SEITE ========== */
.member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    margin-bottom: 1rem;
    color: #555;
}

.member-quote {
    background-color: #f0f0f0;
    padding: 1rem;
    border-left: 4px solid #667eea;
    font-style: italic;
    margin-top: 1rem;
    border-radius: 5px;
}

/* ========== MUSIK-SEITE ========== */
.album-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
    margin-bottom: 2rem;
}

.album-cover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    min-height: 200px;
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.album-year {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tracklist {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.tracklist li {
    margin: 0.25rem 0;
}

/* ========== SONGS-SEITE ========== */
.song-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
    transition: transform 0.3s;
}

.song-card:hover {
    transform: translateY(-5px);
}

.song-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    color: white;
}

.song-header h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    border-bottom: none;
    color: white;
}

.song-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.song-content {
    padding: 1.5rem;
}

.song-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.song-lyrics {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #667eea;
    font-style: italic;
}

.song-lyrics h4 {
    color: #667eea;
    margin-bottom: 0.75rem;
    font-style: normal;
}

.song-lyrics p {
    margin: 0.5rem 0;
    font-family: monospace;
    font-size: 0.95rem;
}

.song-fact {
    background-color: #fff3e0;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ff9800;
}

.song-fact h4 {
    color: #ff9800;
    margin-bottom: 0.5rem;
}

.listen-btn {
    display: inline-block;
    background-color: #1db954;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.listen-btn:hover {
    background-color: #1ed760;
}

/* ========== TOUR-SEITE ========== */
.tour-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tour-table th,
.tour-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tour-table th {
    background-color: #1a1a2e;
    color: white;
    font-weight: bold;
}

.tour-table tr:hover {
    background-color: #f5f5f5;
}

.ticket-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.ticket-status.available {
    background-color: #4caf50;
    color: white;
}

.ticket-status.limited {
    background-color: #ff9800;
    color: white;
}

.ticket-status.soldout {
    background-color: #f44336;
    color: white;
}

.past-shows {
    margin-top: 2rem;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.past-shows h3 {
    margin-bottom: 1rem;
    border-bottom: none;
    display: block;
}

/* ========== GALERIE-SEITE ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* ========== FANCLUB-SEITE ========== */
.fanclub-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #5a67d8;
}

/* ========== FOOTER ========== */
footer {
    background-color: #1a1a2e;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav a {
        display: inline-block;
        margin: 0.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    main {
        padding: 0 1rem;
    }
    
    .album-card {
        grid-template-columns: 1fr;
    }
    
    .album-cover {
        min-height: 150px;
        font-size: 3rem;
    }
    
    .member-image {
        height: 200px;
        font-size: 3rem;
    }
    
    .tour-table th,
    .tour-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .song-header h3 {
        font-size: 1.5rem;
    }
    
    .song-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
}