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

body, html {
    font-family: 'Inter', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Properties */
:root {
    --primary-color: #ffff00;
    --secondary-color: #ffcc00;
    --accent-color: #ffdd44;
    --text-light: #ffffff;
    --text-dark: #1a1a2e;
    --bg-dark: #0f0f23;
    --bg-card: rgba(255, 255, 255, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.band-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffff00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    position: relative;
}

.band-title::before { content: '['; color: #ffff00; }
.band-title::after { content: ']'; color: #ffff00; }
.band-title .small-e { 
    display: inline-block; 
    color: #ffff00; 
    font-size: 0.75em; /* 75% der Höhe von R und D */
    vertical-align: baseline; /* Basislinie für bessere Ausrichtung */
    line-height: 1; /* Verhindert zusätzlichen Zeilenabstand */
}

.band-title .mirrored-e { 
    display: inline-block; 
    transform: scaleX(-1); 
    color: #ffff00; 
    font-size: 0.75em; /* 75% der Höhe von R und D */
    vertical-align: baseline; /* Basislinie für bessere Ausrichtung */
    line-height: 1; /* Verhindert zusätzlichen Zeilenabstand */
}

/* Kleinere Version für Inline-Text */
.band-title-inline {
    font-size: inherit;
    font-weight: 600;
    color: #ffff00;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
    position: relative;
}

.band-title-inline::before { content: '['; color: #ffff00; }
.band-title-inline::after { content: ']'; color: #ffff00; }
.band-title-inline .small-e { 
    display: inline-block; 
    color: #ffff00; 
    font-size: 0.75em; /* 75% der Höhe von R und D */
    vertical-align: baseline; /* Basislinie für bessere Ausrichtung */
    line-height: 1; /* Verhindert zusätzlichen Zeilenabstand */
}

.band-title-inline .mirrored-e { 
    display: inline-block; 
    transform: scaleX(-1); 
    color: #ffff00; 
    font-size: 0.75em; /* 75% der Höhe von R und D */
    vertical-align: baseline; /* Basislinie für bessere Ausrichtung */
    line-height: 1; /* Verhindert zusätzlichen Zeilenabstand */
}

.logo-link {
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:hover .band-title {
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.8);
}

.contact-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(255, 255, 0, 0.3);
    transition: var(--transition);
}

.contact-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 0, 0.4);
}

.contact-bar p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    transition: var(--transition);
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text p {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-text p:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

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

.nav-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '[';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-item::after {
    content: ']';
    position: absolute;
    right: -10px;
    opacity: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--primary-color);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

.nav-item:hover::before {
    opacity: 1;
    left: -5px;
}

.nav-item:hover::after {
    opacity: 1;
    right: -5px;
}

.nav-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-item.active {
    color: var(--primary-color);
    background: rgba(255, 255, 0, 0.1);
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.nav-item.active::before,
.nav-item.active::after {
    opacity: 1;
    color: var(--primary-color);
}

/* Musician Gallery */
.musician-gallery {
    padding: 2rem 0;
}

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

.musician-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.musician-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.musician-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.musician-card:hover .musician-image {
    transform: scale(1.05);
}

.musician-info {
    padding: 1.5rem;
    text-align: center;
}

.musician-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.musician-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 0, 0.8), rgba(255, 204, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

/* Poster Carousel */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    transition: var(--transition);
}

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

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 0, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(255, 255, 0, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

/* Songs Section */
.songs-section {
    text-align: center;
    padding: 2rem 0;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.song-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.song-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.song-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.song-title-text {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.5);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 255, 0, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(255, 255, 0, 0.8), 0 0 70px rgba(255, 255, 0, 0.4);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .band-title {
        font-size: 2rem;
    }
    
    .contact-bar {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-content {
        padding: 1rem;
        margin-top: 140px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-container {
        padding: 1rem 0;
    }
    
    .carousel-item {
        flex: 0 0 250px;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .carousel-nav {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
    
    .nav-menu {
        padding: 0.75rem 0;
    }
    
    .nav-text {
        font-size: 0.8rem;
    }
    
    .nav-item {
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .band-title {
        font-size: 1.5rem;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .musician-image {
        height: 200px;
    }
    
    .carousel-item {
        flex: 0 0 200px;
    }
    
    .carousel-image {
        height: 250px;
    }
    
    .nav-text {
        font-size: 0.7rem;
    }
    
    .nav-item {
        padding: 0.25rem 0.5rem;
    }
    
    .nav-menu {
        padding: 0.5rem 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.scroll-progress {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease;
}
