/* POPBÜRO Neckar-Alb Website - Modernes Design mit grünem Farbschema */

:root {
    /* Primärfarben (Grün) - aus Farbschema */
    --primary-color: #0F6148;
    --primary-dark: #0d5139;
    --primary-light: #f0fdf4;
    --primary-light-2: #d1fae5;
    --success: #059669;
    --success-dark: #065f46;
    
    /* Weitere UI-Farben */
    --warning: #f59e0b;
    --warning-bg: #fef3c7;
    --error: #ef4444;
    --error-bg: #fee2e2;
    --info: #3b82f6;
    --info-bg: #dbeafe;
    --neutral: #6b7280;
    --neutral-bg: #f3f4f6;
    
    /* Text- und Hintergrundfarben */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    
    /* Schatten und Radien */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #ffffff 0%, var(--bg-light) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Modern & Clean mit Burger-Menü */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

header .container {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

/* Obere Zeile: Logo + User Buttons */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Untere Zeile: Navigation zentriert */
.header-bottom {
    display: flex;
    justify-content: center;
    padding: 0;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo a {
    display: block;
}

.logo img {
    max-width: 180px;
    height: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.02);
}

/* Burger-Menü Button */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    transition: var(--transition);
}

.burger-menu:active {
    transform: scale(0.95);
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.burger-menu.active span {
    background: var(--primary-dark);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Navigation */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
    margin: 0;
}

nav li {
    display: inline-block;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: lowercase;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    display: block;
    white-space: nowrap;
}

/* Mobile Navigation - standardmäßig versteckt */
.mobile-nav {
    display: none;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    background: var(--primary-light);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
}

/* User Menu */
.user-menu {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.login-btn,
.register-btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.login-btn {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.login-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.register-btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.register-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.user-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.user-dropdown:hover .user-dropdown-content,
.user-dropdown-content:hover,
.user-dropdown-content.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.user-dropdown-content a {
    display: block;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 500;
}

.user-dropdown-content a:last-child {
    border-bottom: none;
}

.user-dropdown-content a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 24px;
}

/* Main Content */
main {
    background: transparent;
    min-height: 70vh;
    padding: 48px 0;
}

.content-section {
    margin: 60px 0;
}

.content-section img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.content-section img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.content-section p {
    text-align: left;
    margin: 24px 0;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 32px 0 24px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 28px 0 20px;
    color: var(--text-dark);
}

.content-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 0 16px;
    color: var(--text-dark);
}

/* Grid Layout */
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.grid-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-light);
}

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.grid-item img {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.grid-item p {
    padding: 24px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

.grid-item a {
    display: block;
}

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

.band-filter button {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 12px 28px;
    margin: 6px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.band-filter button:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.band-filter button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Band Gallery */
.band-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.band-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-white);
    height: 280px;
    border: 2px solid var(--border-light);
}

.band-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.band-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.band-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.band-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
    transition: var(--transition);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.band-item:hover a {
    background: var(--primary-color);
    color: white;
    padding: 20px 12px;
}

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

.blog-post {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.blog-post:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-post h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.blog-post .date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.blog-post p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* No News Message */
.no-news-message {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    margin: 48px auto;
    max-width: 600px;
    box-shadow: var(--shadow-sm);
}

.no-news-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    color: var(--primary-color);
}

.no-news-message h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.no-news-message p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Contact Info */
.contact-info {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin: 48px 0;
    border: 2px solid var(--border-light);
}

.contact-info p {
    margin: 16px 0;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info a:hover {
    color: var(--primary-dark);
}

/* Footer */
footer {
    background: var(--bg-white);
    color: var(--text-dark);
    text-align: center;
    padding: 48px 0 32px;
    border-top: 1px solid var(--border-light);
    margin-top: 80px;
}

footer img {
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    opacity: 0.9;
    transition: var(--transition);
}

footer img:hover {
    opacity: 1;
    transform: scale(1.02);
}

footer p {
    color: var(--text-light);
    font-size: 14px;
    margin: 16px 0;
}

footer a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 16px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

footer a:hover {
    color: var(--primary-color);
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

footer a:hover::after {
    transform: scaleX(1);
}

/* Formular-Styles */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Checkboxen und Radio Buttons */
input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: var(--primary-color);
}

/* Buttons */
button:not(.burger-menu):not(.user-btn),
.btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

button:not(.burger-menu):not(.user-btn):hover,
.btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.badge-success {
    background: var(--primary-light-2);
    color: var(--success);
}

.badge-active {
    background: var(--primary-light-2);
    color: var(--success-dark);
}

.badge-approved {
    background: var(--primary-light-2);
    color: var(--success);
}

.badge-warning {
    background: var(--warning-bg);
    color: var(--warning);
}

.badge-error {
    background: var(--error-bg);
    color: var(--error);
}

.badge-info {
    background: var(--info-bg);
    color: var(--info);
}

.badge-neutral {
    background: var(--neutral-bg);
    color: var(--neutral);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background: var(--primary-color);
    color: white;
}

.bg-primary-light {
    background: var(--primary-light);
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* ===========================
   RESPONSIVE DESIGN - MOBILE
   =========================== */

/* Tablet und kleinere Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .logo img {
        max-width: 160px;
    }
    
    nav a {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Mobile Ansicht - Burger-Menü aktivieren */
@media (max-width: 768px) {
    :root {
        --radius-sm: 6px;
        --radius-md: 10px;
        --radius-lg: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    header {
        padding: 0;
    }
    
    header .container {
        flex-direction: column;
        padding: 0 16px;
    }
    
    .header-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    /* Desktop Navigation verstecken */
    .header-bottom {
        display: none;
    }
    
    .logo {
        flex-shrink: 0;
        z-index: 1001;
    }
    
    .logo img {
        max-width: 160px;
        display: block;
    }
    
    /* User Menu bleibt sichtbar */
    .header-top .user-menu {
        display: flex;
        gap: 6px;
        margin-left: auto;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    /* Burger-Menü anzeigen */
    .burger-menu {
        display: flex;
        flex-shrink: 0;
        z-index: 1001;
    }
    
    /* Mobile Navigation als Overlay */
    .mobile-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: white;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0;
        overflow-y: auto;
        flex-direction: column;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .mobile-nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .mobile-nav li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav a {
        padding: 20px 24px;
        font-size: 15px;
        width: 100%;
        display: block;
        text-align: left;
        border-radius: 0;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        text-transform: lowercase;
        transition: var(--transition);
    }
    
    .mobile-nav a:hover,
    .mobile-nav a.active {
        background: var(--primary-light);
        padding-left: 32px;
        color: var(--primary-color);
    }
    
    /* User Menu Buttons auf Mobile */
    .login-btn,
    .register-btn {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .user-btn {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .user-dropdown-content {
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        width: 220px;
        max-width: calc(100vw - 32px);
        z-index: 1002;
    }
    
    /* Overlay für Burger-Menü */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* User Menu */
    .user-menu {
        order: 2;
        gap: 6px;
        margin-left: auto;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .login-btn,
    .register-btn {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .user-dropdown {
        position: relative;
    }
    
    .user-btn {
        padding: 8px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .user-dropdown-content {
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
        width: 220px;
        max-width: calc(100vw - 32px);
        z-index: 1002;
    }
    
    /* Content */
    main {
        padding: 32px 0;
    }
    
    .content-section {
        margin: 40px 0;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-section h3 {
        font-size: 22px;
    }
    
    .content-section h4 {
        font-size: 18px;
    }
    
    .content-section p {
        font-size: 15px;
    }
    
    .content-section img {
        margin: 24px 0;
    }
    
    .grid-section {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 0;
    }
    
    .grid-item p {
        padding: 20px;
        font-size: 14px;
    }
    
    .band-gallery {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 12px;
        margin: 32px 0;
    }
    
    .band-item {
        height: 200px;
    }
    
    .band-item a {
        font-size: 11px;
        padding: 10px 8px;
        line-height: 1.3;
    }
    
    .band-item:hover a {
        padding: 14px 8px;
    }
    
    .band-filter {
        margin: 32px 0;
    }
    
    .band-filter button {
        padding: 10px 18px;
        font-size: 13px;
        margin: 4px;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 0;
    }
    
    .blog-post {
        padding: 20px;
    }
    
    .blog-post h3 {
        font-size: 18px;
    }
    
    .no-news-message {
        padding: 60px 20px;
        margin: 32px 0;
    }
    
    .no-news-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .no-news-message h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .no-news-message p {
        font-size: 14px;
    }
    
    .contact-info {
        padding: 24px;
    }
    
    .contact-info p {
        font-size: 15px;
    }
    
    footer {
        padding: 32px 0 24px;
        margin-top: 60px;
    }
    
    footer img {
        margin-bottom: 20px;
    }
    
    footer p {
        font-size: 13px;
    }
    
    footer a {
        margin: 0 8px;
        font-size: 13px;
        display: inline-block;
        margin-top: 8px;
    }
}

/* Sehr kleine Smartphones */
@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }
    
    .logo img {
        max-width: 140px;
    }
    
    nav {
        width: 100%;
        max-width: 280px;
    }
    
    nav a {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    nav a:hover,
    nav a.active {
        padding-left: 28px;
    }
    
    .user-menu {
        gap: 4px;
        margin-right: 4px;
    }
    
    .login-btn,
    .register-btn,
    .user-btn {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .burger-menu {
        width: 28px;
        height: 22px;
    }
    
    .burger-menu span {
        height: 2.5px;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9.75px) rotate(45deg);
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9.75px) rotate(-45deg);
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .band-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .band-item {
        height: 180px;
    }
    
    .band-filter button {
        padding: 8px 14px;
        font-size: 12px;
        margin: 3px;
    }
    
    .no-news-message {
        padding: 40px 16px;
    }
    
    .no-news-icon {
        width: 56px;
        height: 56px;
    }
    
    .grid-item p {
        padding: 16px;
        font-size: 13px;
    }
    
    .user-dropdown-content {
        right: 8px;
        width: calc(100% - 16px);
    }
}

/* Desktop Optimierungen */
@media (min-width: 1025px) {
    .band-item:hover {
        z-index: 10;
    }
}

/* Print Styles */
@media print {
    header {
        position: static;
        box-shadow: none;
    }
    
    nav,
    footer img,
    .burger-menu,
    .user-menu {
        display: none;
    }
    
    .band-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    a {
        text-decoration: underline;
    }
}

/* ===================================
   BREADCRUMBS - SEO Navigation
   =================================== */

.breadcrumbs {
    background: var(--primary-light);
    border-bottom: 1px solid var(--primary-light-2);
    padding: 12px 24px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    max-width: 1240px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.4;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    white-space: nowrap;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-item.active span {
    display: inline-block;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-separator {
    display: inline-block;
    margin: 0 10px;
    color: var(--neutral);
    font-size: 14px;
    font-weight: 400;
}

/* Home-Icon */
.breadcrumb-item:first-child a span::before {
    content: '🏠 ';
}

/* Tablet */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px 16px;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        margin: 0 8px;
    }
    
    .breadcrumb-item.active span {
        max-width: 180px;
    }
}

/* Mobile - kompakte einzeilige Darstellung */
@media (max-width: 480px) {
    .breadcrumbs {
        padding: 8px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .breadcrumb-list {
        font-size: 12px;
        flex-wrap: nowrap;
    }
    
    .breadcrumb-separator {
        margin: 0 5px;
        font-size: 12px;
    }
    
    .breadcrumb-item.active span {
        max-width: 140px;
    }
    
    /* Mittlere Elemente auf Mobile ausblenden, nur Start + Ende zeigen */
    .breadcrumb-item:not(:first-child):not(:last-child) {
        display: none;
    }
    
    /* Separator vor letztem Element anpassen */
    .breadcrumb-item:first-child .breadcrumb-separator {
        display: inline-block;
    }
    
    .breadcrumb-item:first-child .breadcrumb-separator::after {
        content: '..';
        margin-right: 5px;
    }
}
