body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #edcaa4;
    color: #111;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #edcaa4;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #000;
}

/* Nav Logo Styling */
.logo a {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* General Section Styling */
.section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Band Section Layout */
.band-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    text-align: left;
}

.bio-text {
    flex: 1;
    max-width: 500px;
    font-size: 16px;
    line-height: 1.8;
}

.bio-text p {
    margin-bottom: 20px;
}

.player-container {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

/* Image Divider (for the Band picture) */
.image-divider {
    text-align: center;
    padding: 0 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.image-divider img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Termine List Design */
.list-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.termin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.termin-row:last-child {
    border-bottom: none;
}

.termin-date { font-weight: bold; width: 120px; }
.termin-city { width: 150px; font-weight: 600; }
.termin-venue { flex-grow: 1; color: #555;}

.ticket-btn {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.ticket-btn:hover { background: #333; }

/* Video Grid Design */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-wrapper h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Kontakt Section */
.kontakt-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.kontakt-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.kontakt-box h3 {
    margin-top: 0;
    border-bottom: 2px solid #edcaa4;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.email-link {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    word-break: break-all;
}

/* Downloads List Styling */
.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-list li {
    margin-bottom: 15px;
}

.download-list a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: block;
    line-height: 1.4;
}

.download-list a:hover {
    text-decoration: underline;
    color: #555;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #edcaa4; 
    font-size: 14px;
    color: #000;
    border-top: 2px solid #000; 
}

.footer p {
    margin: 5px 0;
}

.footer-links {
    margin-top: 15px !important;
}

.footer-links a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    margin: 0 10px;
    cursor: pointer;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Modal / Overlay Box Design */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(4px); 
}

.modal-content {
    background-color: #fff;
    margin: 5% auto; 
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh; 
    overflow-y: auto; 
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    text-align: left;
}

.modal-content h2 {
    margin-top: 0;
    text-transform: uppercase;
    border-bottom: 2px solid #edcaa4;
    padding-bottom: 10px;
}

.close-btn {
    color: #999;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

.legal-text {
    font-size: 15px;
    line-height: 1.6;
}

.legal-text h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Mobile Responsiveness */
@media(max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .band-content { flex-direction: column; align-items: center; text-align: center; }
    .bio-text { text-align: left; }
    .termin-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .termin-date, .termin-city { width: auto; }
    
    .modal-content { margin: 10% auto; padding: 25px; }
    .close-btn { top: 10px; right: 20px; }
}