/* ============================================
   BROKENS - MAIN STYLESHEET
   Minimalistisches schwarz-weiß Design
   Vintage Schreibmaschinen-Look
   ============================================ */

/* ============================================
   1. RESET & GRUNDLAGEN
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Special Elite', cursive;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    position: relative;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise" seed="2" /></filter><rect width="100%" height="100%" fill="%23000000" /><rect width="100%" height="100%" fill="%23FFFFFF" opacity="0.02" filter="url(%23noise)" /></svg>');
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* ============================================
   2. CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ============================================
   3. HEADER & NAVIGATION
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background-color: #000000;
    border-bottom: 1px solid #1A1A1A;
    z-index: 100;
}

.navbar {
    padding: 1.5rem 0;
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

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

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.nav-link:hover {
    color: #BFBFBF;
    border-bottom: 2px solid #BFBFBF;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================================
   4. HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    position: relative;
    margin-top: 10%;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    animation: fadeInDown 1s ease-out 0.2s both;
}

.hero-claim {
    font-size: 1.5rem;
    color: #BFBFBF;
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 0.08em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" result="noise" seed="3" /></filter><rect width="100%" height="100%" fill="%23000000" /><rect width="100%" height="100%" fill="%23FFFFFF" opacity="0.015" filter="url(%23noise)" /></svg>');
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

/* ============================================
   5. BUTTONS & CTAs
   ============================================ */

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
    cursor: pointer;
    background-color: transparent;
    color: #FFFFFF;
}

.cta-button.primary {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.cta-button.primary:hover {
    background-color: #BFBFBF;
    border-color: #BFBFBF;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.cta-button.secondary:hover {
    background-color: #1A1A1A;
    border-color: #BFBFBF;
    color: #BFBFBF;
}

/* ============================================
   6. SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-transform: lowercase;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #BFBFBF;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* ============================================
   7. ABOUT SECTION
   ============================================ */

.about {
    background-color: #000000;
    border-top: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
}

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

.about-content p {
    font-family: 'Merriweather', serif;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #FFFFFF;
    font-weight: 400;
}

/* ============================================
   8. PLAYLISTS SECTION
   ============================================ */

.playlists {
    background-color: #000000;
}

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

.playlist-card {
    background-color: #1A1A1A;
    padding: 2rem;
    border: 1px solid #BFBFBF;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.playlist-card:hover {
    background-color: #2A2A2A;
    border-color: #FFFFFF;
    transform: translateY(-5px);
}

.playlist-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
}

.playlist-card p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: #BFBFBF;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.playlist-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.playlist-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Special Elite', cursive;
}

.playlist-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.playlist-btn.secondary {
    border-color: #BFBFBF;
    color: #BFBFBF;
}

.playlist-btn.secondary:hover {
    background-color: #BFBFBF;
    color: #000000;
}

.seo-content {
    background-color: #1A1A1A;
    padding: 2rem;
    border: 1px solid #BFBFBF;
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
}

.seo-content p {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #BFBFBF;
    font-weight: 400;
}

/* ============================================
   9. PROMOTION SECTION
   ============================================ */

.promotion {
    background-color: #000000;
    border-top: 1px solid #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
}

.promotion-content {
    max-width: 900px;
    margin: 0 auto;
}

.promotion-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
}

.promotion-text p {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.promotion-text h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
}

.promotion-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.promotion-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.promotion-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #BFBFBF;
}

.promotion-cta {
    font-style: italic;
    color: #BFBFBF;
    margin-top: 2rem;
}

/* ============================================
   10. CONTACT SECTION
   ============================================ */

.contact {
    background-color: #000000;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #1A1A1A;
    border: 1px solid #BFBFBF;
    color: #FFFFFF;
    font-family: 'Special Elite', cursive;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFFFF;
    background-color: #2A2A2A;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #BFBFBF;
    margin-top: 1rem;
    font-style: italic;
}

.form-dsgvo {
    text-align: center;
    font-size: 0.8rem;
    color: #BFBFBF;
    margin-top: 0.75rem;
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

.form-dsgvo a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-dsgvo a:hover {
    color: #BFBFBF;
}

/* ============================================
   11. FOOTER
   ============================================ */

.footer {
    background-color: #1A1A1A;
    border-top: 1px solid #BFBFBF;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
}

.footer-section p {
    font-size: 0.9rem;
    color: #BFBFBF;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #BFBFBF;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #BFBFBF;
    font-size: 0.85rem;
    color: #BFBFBF;
}

/* ============================================
   12. COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    border-top: 1px solid #BFBFBF;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #BFBFBF;
    flex: 1;
}

.cookie-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    cursor: pointer;
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: #BFBFBF;
}

/* ============================================
   13. ANIMATIONS
   ============================================ */

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

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

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

/* ============================================
   14. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-claim {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .playlists-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
        font-weight: bold;
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-claim {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: bold;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

/* ============================================
   15. ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   16. PRINT STYLES
   ============================================ */

@media print {
    body::before,
    .hero-grain,
    .header,
    .cookie-banner {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
