/* Grundlegende Stile */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #007bff;
    --text-color: #333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

h1, h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

section {
    padding: 4rem 0;
    text-align: center;
}

/* Navigationsleiste */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-links ul {
    list-style: none;
    display: flex;
}

.navbar-links li a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    display: block;
    transition: background-color 0.3s;
}

.navbar-links li a:hover {
    background-color: #555;
}

.toggle-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('7_306833.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gig-Kalender */
.gig-filters {
    margin-bottom: 20px;
    text-align: center;
}

.gig-filters .filter-button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gig-filters .filter-button.active {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.gig-filters .filter-button:hover:not(.active) {
    background-color: #e0e0e0;
}

.gig-list {
    margin-top: 2rem;
    text-align: left;
}

.gig-item {
    display: flex; /* Ensure flex is used for the layout */
    align-items: center;
    background-color: #fff;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, opacity 0.3s ease, visibility 0.3s ease; /* Added transition for smooth hide/show */
}

.gig-item:hover {
    transform: translateY(-5px);
}

.gig-date {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    margin-right: 1.5rem;
}

.gig-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
}

.gig-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.gig-details h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}

.gig-details p {
    margin: 0;
    color: #666;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Kontaktformular */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contact-form button {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: var(--accent-color);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1.5rem;
}

/* --- KORRIGIERTE SLIDER-STILE --- */
#feedback {
    background-color: var(--secondary-color);
    padding: 60px 20px;
    overflow: hidden;
}

.feedback-slider-circular {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    min-height: 400px; /* Gibt dem Container eine feste Höhe */
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex; /* Immer flex, wir steuern Sichtbarkeit anders */
    justify-content: center;
    align-items: center;

    /* Neue Art der Sichtbarkeitssteuerung für Fading */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;

    /* Positioniert alle Slides übereinander */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.feedback-circle {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.feedback-circle .stars {
    color: #ffd700;
    font-size: 2rem;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.feedback-circle .feedback-text {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.feedback-circle .feedback-author {
    font-weight: 700;
    color: #333;
}

.slider-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 3rem;
    color: #333;
    transition: color 0.3s;
    z-index: 10; /* Stellt sicher, dass die Pfeile oben liegen */
}

.slider-arrow:hover {
    color: #000;
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}


/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        text-align: center;
    }

    .navbar-links li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    /* Slider Anpassungen für Mobilgeräte */
    .feedback-circle {
        width: 260px;
        height: 260px;
    }

    .slider-arrow {
        font-size: 2.5rem;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }
}