/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav-logo img {
    height: 50px;
    width: auto;
    margin-right: 1rem;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: #c17f59;
    color: #fff;
}

.btn-primary:hover {
    background: #8b4513;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #c17f59;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Music Section */
.music {
    padding: 5rem 0;
    background: #1a1a1a;
    color: #fff;
}

.music h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #ffd700;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.music-item {
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 400px;
}

.music-item.clickable {
    cursor: pointer;
}

.music-item.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.music-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(70%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.music-item:hover .music-info {
    transform: translateY(0);
}

.music-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.music-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-item:hover .music-overlay {
    opacity: 1;
}

.play-btn {
    background: #c17f59;
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    pointer-events: none;
}

.play-btn:hover {
    background: #8b4513;
}

.music-info {
    padding: 1.5rem;
}

.music-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.music-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.music-artist {
    font-weight: 600;
    color: #ffd700 !important;
    font-size: 1rem !important;
}

.music-album {
    font-size: 0.85rem !important;
    color: #aaa !important;
}

.music-description {
    font-size: 0.9rem !important;
    color: #ddd !important;
    line-height: 1.4;
    margin: 0.75rem 0 !important;
}

.music-release-date {
    font-size: 0.8rem !important;
    color: #999 !important;
    margin: 0.5rem 0 !important;
}

.music-release-date i {
    margin-right: 0.5rem;
    color: #c17f59;
}

.music-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.music-status-badge.status-available {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.music-status-badge.status-coming_soon {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.music-status-badge.status-preview_only {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.music-status-badge i {
    margin-right: 0.25rem;
}

.music-external-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.external-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.external-link:hover {
    background: #c17f59;
    color: #fff;
    transform: translateY(-2px);
}

.external-link i {
    font-size: 1rem;
}

/* Merch Section */
.merch {
    padding: 5rem 0;
    background: #fff;
}

.merch h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #8b4513;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.merch-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.merch-image {
    height: 250px;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merch-info {
    padding: 1.5rem;
}

.merch-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.merch-info p {
    color: #666;
    margin-bottom: 1rem;
}

.merch-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #c17f59;
    margin-bottom: 1rem;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: #f8f9fa;
}

.events h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #8b4513;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-item {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

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

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #c17f59;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.event-location,
.event-time,
.event-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.event-location i,
.event-time i {
    color: #c17f59;
    width: 16px;
}

.event-price {
    font-weight: 700;
    color: #c17f59;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #1a1a1a;
    color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: #ffd700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    color: #c17f59;
    width: 40px;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.contact-item p {
    color: #ccc;
}

/* Contact Form */
.contact-form {
    background: #333;
    padding: 2rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #555;
    border-radius: 5px;
    background: #444;
    color: #fff;
    font-family: inherit;
}

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

/* Footer */
.footer {
    background: #8b4513;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #c17f59;
}

.footer-bottom p {
    color: #ffd700;
    font-weight: 700;
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid #c17f59;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.audio-player.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.player-container {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1.5rem;
}

.player-artwork {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-artwork:hover .player-overlay {
    opacity: 1;
}

.player-content {
    flex: 1;
    min-width: 0;
}

.player-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.player-progress {
    margin: 1rem 0;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #444;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c17f59, #ffd700);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 2px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #ccc;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-control-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.player-control-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.player-control-btn.main-btn {
    background: #c17f59;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.player-control-btn.main-btn:hover {
    background: #8b4513;
    transform: scale(1.1);
}

.preview-timer {
    background: rgba(220, 53, 69, 0.9);
    padding: 0.5rem 2rem;
    display: none;
}

.preview-timer.active {
    display: block;
}

.timer-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.timer-fill {
    height: 100%;
    background: #fff;
    width: 100%;
    transition: width 1s linear;
    border-radius: 2px;
}

#timerText {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    display: block;
}

/* Responsive Audio Player */
@media (max-width: 768px) {
    .player-container {
        padding: 1rem;
        gap: 1rem;
    }
    
    .player-artwork {
        width: 60px;
        height: 60px;
    }
    
    .player-info h4 {
        font-size: 1rem;
    }
    
    .player-info p {
        font-size: 0.8rem;
    }
    
    .player-controls {
        gap: 0.5rem;
    }
    
    .player-control-btn {
        width: 35px;
        height: 35px;
    }
    
    .player-control-btn.main-btn {
        width: 45px;
        height: 45px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
        flex: 1;
    }
    
    .nav-title {
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile Music Design - Option 3: Overlay mit Gradient */
    .music-item {
        height: 300px;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
    }
    
    .music-cover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .music-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .music-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
        transform: translateY(0);
        z-index: 3;
        backdrop-filter: blur(5px);
    }
    
    .music-item:hover .music-info {
        transform: translateY(0);
    }
    
    .music-info::before {
        display: none;
    }
    
    .music-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        z-index: 2;
        pointer-events: auto;
    }
    
    .music-item:hover .music-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .play-btn {
        background: rgba(193, 127, 89, 0.95);
        backdrop-filter: blur(10px);
        border: 3px solid rgba(255, 255, 255, 0.5);
        width: 80px;
        height: 80px;
        font-size: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 10;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .play-btn:hover {
        background: rgba(139, 69, 19, 0.95);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .play-btn:active {
        transform: scale(0.95);
    }
    
    .music-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .music-info p {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .music-artist {
        font-size: 0.9rem !important;
        font-weight: 600;
        color: #ffd700 !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .music-album {
        font-size: 0.8rem !important;
        color: #ccc !important;
    }
    
    .music-description {
        font-size: 0.8rem !important;
        color: #ddd !important;
        line-height: 1.3;
        margin: 0.5rem 0 !important;
    }
    
    .music-release-date {
        font-size: 0.75rem !important;
        color: #bbb !important;
        margin: 0.25rem 0 !important;
    }
    
    .music-status-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        margin: 0.25rem 0;
    }
    
    .music-external-links {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .external-link {
        width: 30px;
        height: 30px;
    }
    
    .external-link i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-title {
        font-size: 1rem;
        margin-left: 0.25rem;
    }
    
    .nav-logo img {
        height: 40px;
        margin-right: 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-text h2,
    .music h2,
    .merch h2,
    .events h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    /* Mobile Music Play Button Optimierung für kleine Bildschirme */
    .music-item {
        height: 280px;
    }
    
    .play-btn {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        border: 4px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .music-info {
        padding: 1rem;
    }
    
    .music-info h3 {
        font-size: 1rem;
    }
    
    .music-info p {
        font-size: 0.8rem;
    }
    
    .music-artist {
        font-size: 0.85rem !important;
    }
    
    .music-status-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }
    
    .external-link {
        width: 28px;
        height: 28px;
    }
    
    .external-link i {
        font-size: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-text h2,
    .music h2,
    .merch h2,
    .events h2,
    .contact h2 {
        font-size: 2rem;
    }
}