/* Popbüro Neckar-Alb Website Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #eee;
}

.logo img {
    max-width: 200px;
    height: auto;
}

nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    text-transform: lowercase;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b6b;
}

/* Main Content */
main {
    background-color: #fff;
    min-height: 60vh;
    padding: 40px 0;
}

.content-section {
    margin: 40px 0;
    text-align: center;
}

.content-section img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.content-section p {
    text-align: left;
    margin: 20px 0;
    line-height: 1.8;
}

.content-section h2, .content-section h3, .content-section h4 {
    margin: 20px 0;
    color: #333;
}

/* Grid Layout */
.grid-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.grid-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.grid-item img:hover {
    transform: scale(1.05);
}

.grid-item a {
    display: block;
    margin-top: 10px;
}

/* Band Gallery */
.band-filter {
    margin: 30px 0;
    text-align: center;
}

.band-filter button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.band-filter button:hover {
    background: #ff6b6b;
}

.band-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.band-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.band-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.band-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.band-item a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px;
    background: rgba(255,255,255,0.95);
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
    transition: background 0.3s;
    font-size: 14px;
}

.band-item:hover a {
    background: rgba(255,107,107,0.95);
    color: #fff;
}

/* Blog/News Section */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-post {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-post h3 {
    margin-bottom: 10px;
}

.blog-post .meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post a {
    color: #ff6b6b;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-info {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.contact-info p {
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #eee;
}

footer img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

footer a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .grid-section {
        flex-direction: column;
    }
    
    .band-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
