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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.65),
        rgba(255, 255, 255, 0.65)
    ), url("pictures/PWE_Wannsee.JPG");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Navigation */
header {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.ensemble-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
}

.insta-button {
    display: flex;
    align-items: center;
    color: white;
    transition: color 0.3s;
}

.insta-button:hover {
    color: #e4405f;
}

/* Main Content */
main {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Image */
.hero-image {
    width: 100%;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Current Project Section */
.current-project {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.current-project h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.current-project h2 {
    color: #3498db;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.current-project p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.concert-dates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.concert-date {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
}

.concert-date p {
    margin-bottom: 0;
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Content Section (for subpages) */
.content-section {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-section h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-section h2 {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

/* Concert Items */
.concert-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.concert-item:last-child {
    border-bottom: none;
}

.concert-item h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 0;
}

.concert-item p {
    margin-bottom: 0.5rem;
}

.concert-with-poster {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.concert-poster img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-with-poster {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.project-poster img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Audio Items */
.audio-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.audio-item h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.audio-placeholder {
    margin-top: 1rem;
    padding: 2rem;
    background-color: #e0e0e0;
    border-radius: 5px;
    text-align: center;
    color: #666;
}

.info-text {
    margin-top: 2rem;
    font-style: italic;
}

/* Contact Form */
.contact-info {
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form button {
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}

footer a {
    color: #3498db;
    text-decoration: none;
    margin-left: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .current-project,
    .content-section {
        padding: 1.5rem;
    }
    
    .current-project h1,
    .content-section h1 {
        font-size: 2rem;
    }

    .concert-dates {
        grid-template-columns: 1fr;
    }
    
    .concert-with-poster {
        grid-template-columns: 1fr;
    }
    
    .project-with-poster {
        grid-template-columns: 1fr;
    }
}
