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

h1 {
    font-family: "Blackletter", "Old English Text MT", "Arial Black", Arial, sans-serif;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.5em;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body {
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.stein-icon, .flag {
    width: 60px;
    height: auto;
    margin: 0 20px;
}

.logo {
    width: 465px;
    height: auto;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.sidebar-left, .sidebar-right {
    flex: 1;
    min-width: 250px;
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.main-section {
    flex: 2;
    min-width: 300px;
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.band-photo {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.band-members {
    font-size: 1.1em;
    color: #87ceeb;
    margin: 10px 0;
}

.german-info {
    font-style: italic;
    font-size: 0.9em;
    color: #d3d3d3;
    margin-top: 15px;
}

.audio-list {
    list-style: none;
    padding: 0;
}

.audio-list li {
    margin-bottom: 10px;
    font-size: 1em;
}

.audio-list audio {
    width: 100%;
    margin-top: 5px;
}

.intro {
    color: #808080;
    font-size: 1em;
    margin-bottom: 15px;
}

.photo-link, .contact a {
    display: inline-block;
    color: #87ceeb;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.photo-link:hover, .contact a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.7em;
    color: #a0a0a0;
}

.keywords {
    white-space: pre-wrap;
}

/* New Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 20px;
}

.gallery-item {
    background-color: #3d3d3d;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border: 2px solid #444;
    border-radius: 4px;
}

.caption {
    font-size: 0.9em;
    color: #d0d0d0;
    margin-top: 10px;
}

.locations {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #3d3d3d;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.locations h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.locations ul {
    list-style-type: none;
    padding: 0;
}

.locations li {
    margin-bottom: 8px;
}

.contact-section {
    margin-top: 20px;
    text-align: center;
}

.contact {
    font-size: 1em;
    color: #a0d8ef;
}

.contact a {
    color: #a0d8ef;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (min-width: 768px) {
    .main-content {
        flex-direction: row;
    }
    .sidebar-left {
        order: 1;
    }
    .main-section {
        order: 2;
    }
    .sidebar-right {
        order: 3;
    }
}

@media (max-width: 767px) {
    .header {
        flex-direction: column;
    }
    .stein-icon, .flag {
        margin: 10px 0;
    }
    .logo {
        margin: 10px 0;
    }
    .main-content {
        flex-direction: column;
    }
    .band-photo {
        margin-bottom: 15px;
    }
    .audio-list li {
        font-size: 0.9em;
    }
    .gallery {
        grid-template-columns: 1fr; /* Stack gallery vertically on mobile */
    }
    .locations {
        max-width: 100%;
    }
}