/* FOR A DAY - Rock Website
   Schwarz + Sonnenaufgang Theme */

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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-muted: #888888;
    --accent-orange: #ff6b35;
    --accent-yellow: #ffc107;
    --accent-warm: #ff8c42;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ============================================
   HEADER & SUNRISE EFFECT
   ============================================ */

header.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    overflow: hidden;
}

/* Sonne im Header */
.sun-container {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.sun {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffc107 0%, #ff6b35 50%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 0 60px #ff6b35,
        0 0 120px rgba(255, 107, 53, 0.5),
        0 0 200px rgba(255, 193, 7, 0.3);
}

.sun-glow {
    width: 300px;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.3) 100%);
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(30px);
}

/* Sonne beim Scrollen */
header.hero.scrolled .sun-container {
    bottom: 50px;
}

header.hero.scrolled .sun {
    transform: translateX(-50%) scale(0.8);
    box-shadow: 
        0 0 30px #ff6b35,
        0 0 60px rgba(255, 107, 53, 0.3);
}

/* Navigation */
nav.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease;
}

nav.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding-top: 100px;
}

.hero-logo {
    width: clamp(200px, 50vw, 500px);
    height: auto;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 15vw, 180px);
    letter-spacing: 20px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--accent-orange);
    color: var(--bg-dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 20px auto 0;
}

/* Band Section */
.band-section {
    background: var(--bg-darker);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.band-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 18px;
}

.band-members {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0 40px;
}

.member-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.member-photo.flo {
    background-image: url('assets/Flo_kopf.jpg');
}

.member-photo.aaron {
    background-image: url('assets/Aaron_kopf-299x260.jpg');
}

.member-photo.dominique {
    background-image: url('assets/Dominique_kopf.jpg');
}

.member-photo::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-photo::before {
    opacity: 1;
}

.member-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.member-card p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Music Section */
.music-section {
    background: var(--bg-dark);
}

.spotify-embed {
    max-width: 800px;
    margin: 0 auto;
}

.album-placeholder {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    min-height: 352px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tour Section */
.tour-section {
    background: var(--bg-darker);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.tour-section .section-title {
    padding-left: 40px;
    padding-right: 40px;
}

.tour-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.tour-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid #222;
    transition: background 0.3s ease;
}

.tour-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

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

.tour-date .day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--accent-orange);
    display: block;
    line-height: 1;
}

.tour-date .month {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.tour-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.tour-info p {
    color: var(--text-muted);
}

/* Merch Section */
.merch-section {
    text-align: center;
    background: var(--bg-dark);
}

.merch-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    text-align: center;
    background: var(--bg-darker);
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-dark);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-orange);
}

/* Impressum Section */
.impressum-section {
    background: var(--bg-dark);
    text-align: left;
    min-height: 100vh;
    padding-top: 120px;
}

.impressum-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.impressum-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: var(--accent-orange);
}

.impressum-content h3:first-child {
    margin-top: 0;
}

.impressum-content p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.impressum-content a {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-orange);
    transition: color 0.3s ease;
}

.impressum-content a:hover {
    color: var(--accent-orange);
}

/* Standalone Page Nav */
nav.nav.standalone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

nav.nav.standalone .cta-button {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-logo {
        width: 280px;
    }
    
    .hero-title {
        letter-spacing: 10px;
    }
    
    .band-members {
        gap: 40px;
    }
    
    .member-photo {
        width: 150px;
        height: 150px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}