/* Global Styles */
:root {
    --primary-color: #007bff;
    --primary-rgb: 0, 123, 255;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --accent-color: #0056b3;
    --transition: all 0.3s ease;

    /* Dark mode variables */
    --bg-color: #ffffff;
    --text-color: #333333;
    --text-light: #6c757d;
    --text: #333333;
    --muted: #6c757d;
    --section-bg: #f8f9fa;
    --card-bg: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.9);
    --hero-overlay: rgba(0, 0, 0, 0.7);
}

/* Dark theme */
[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #ffffff;
    --text-light: #adb5bd;
    --text: #ffffff;
    --muted: #adb5bd;
    --section-bg: #1e1e1e;
    --card-bg: #2d2d2d;
    --nav-bg: rgba(30, 30, 30, 0.95);
    --hero-overlay: rgba(0, 0, 0, 0.7); /* Slightly lighter overlay in dark mode */

    /* Ensure all text is white in dark mode */
    color: var(--text-color);
}



/* Playlist styles */
.playlist-section {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.playlist-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

.playlist-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.playlist-cover {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.playlist-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.playlist-info h3 {
    margin: 0 0 1rem 0;
    color: var(--text-color);
}

.lyrics {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--text-color);
    overflow-y: auto;
    max-height: 400px;
}

[data-theme='dark'] .lyrics {
    color: #ffffff;
    border-top-color: rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .playlist-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .playlist-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .playlist-cover {
        height: 250px;
    }
}

/* Ensure text is readable in dark mode for specific elements */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] a:not(.btn) {
    color: #ffffff;
}

/* Improve contrast for links in dark mode */
[data-theme="dark"] a:not(.btn) {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

[data-theme="dark"] a:not(.btn):hover {
    opacity: 1;
    text-decoration: underline;
}

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

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    background-color: var(--section-bg);
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

p {
    margin-bottom: 1.5rem;
}

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

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

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.section {
    position: relative;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

 .platforms {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center; /* Buttons zentrieren */
      text-align: center;
    }
    .platform {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      background: rgba(255,255,255,0.05);
      padding: 6px 10px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
      font-weight: 600;
      font-size: 0.8rem;
      transition: 0.12s ease;
    }
    .platform:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-2px);
    }
    .platform svg {
      width: 14px;
      height: 14px;
    }
    .more-text {
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.75rem;
      text-align: center;
      opacity: 0.8;
    }

/* Default light theme scrolled state */
:root:not([data-theme="dark"]) nav.scrolled {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Dark theme scrolled state */
[data-theme="dark"] nav.scrolled {
    background: var(--nav-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Common scrolled styles */
nav.scrolled {
    padding: 10px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.logo img {
    height: 50px; /* Fixed height for the logo */
    width: auto; /* Maintain aspect ratio */
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Adjust logo size when navigation is scrolled */
.scrolled .logo img {
    height: 60px;
}

/* Ensure proper spacing in the header */
header {
    padding-top: 80px; /* Make room for the fixed header */
    flex-shrink: 0;
}

/* Adjust hero section to account for header */
.hero {
    padding-top: 0;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Make hamburger lines white in dark mode */
[data-theme="dark"] .hamburger span {
    background: #ffffff;
}

/* Theme Toggle */
.theme-toggle {
    cursor: pointer;
    font-size: 1.4rem;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

.theme-toggle i {
    transition: var(--transition);
    position: absolute;
}

/* Ensure only one icon is visible at a time */
.theme-toggle .fa-moon,
.theme-toggle .fa-sun {
    transition: opacity 0.3s ease;
}

.theme-toggle .fa-moon { display: block; }
.theme-toggle .fa-sun { display: none; }

[data-theme="dark"] .theme-toggle .fa-moon { display: none; }
[data-theme="dark"] .theme-toggle .fa-sun { display: block; }

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('../bilder/banner.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    padding-bottom: 33vh;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    position: relative;
}

/* Add overlay only in dark mode */
[data-theme="dark"] .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.music-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    padding: 15px;
    position: relative;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Featured/Current Release Card */
.music-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 123, 255, 0.05) 100%);
}

[data-theme="dark"] .music-card.featured {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 123, 255, 0.1) 100%);
}

.music-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.4);
}

.music-card.featured::before {
    content: 'NEU';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

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

.music-cover {
    width: 100%;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.music-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.2rem;
    text-align: center;
}

.music-card p {
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.music-card .btn {
    display: block;
    margin: 15px 20px 20px;
    text-align: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: #1a73e8; /* Slightly darker blue for hover */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Dark mode specific styles */
[data-theme="dark"] .social-links a {
    background: #3a3a3c; /* Darker background in dark mode */
}

[data-theme="dark"] .social-links a:hover {
    background: #4a4a4c; /* Slightly lighter on hover in dark mode */
}

/* Videos Section */
.video-subtitle {
    text-align: center;
    color: var(--text-color);
    margin: 2rem auto 3rem;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding: 0.8rem 2rem;
    background: rgba(var(--primary-rgb), 0.15);
    border-radius: 25px;
    line-height: 1.5;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
   
    letter-spacing: 1px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.video-date {
    text-align: center;
    color: var(--text-color);
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
    display: block;
    padding: 0.5rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #000;
    /* 16:9 Aspect Ratio */
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Impressum and Datenschutz Sections */
.impressum-content,
.datenschutz-content {
    line-height: 1.8;
    margin: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-color);
}

.impressum-content h1,
.datenschutz-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.impressum-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-color);
   /*  border-bottom: 2px solid var(--primary-color); */
   /*  padding-bottom: 0.8rem; */
   /*  font-weight: 600; */
   /*  line-height: 1.4; */
}

.impressum-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.4;
}

.impressum-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

.impressum-content a,
.datenschutz-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.impressum-content a:hover,
.datenschutz-content a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .impressum-content h1,
    .datenschutz-content h1 {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .impressum-content h2,
    .datenschutz-content h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1.2rem;
    }
    
    .impressum-content h3,
    .datenschutz-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .impressum-content,
    .datenschutz-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .impressum-content h1,
    .datenschutz-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .impressum-content h2,
    .datenschutz-content h2 {
        font-size: 1.4rem;
    }
    
    .impressum-content h3,
    .datenschutz-content h3 {
        font-size: 1.1rem;
    }
    
    .impressum-content p,
    .datenschutz-content p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

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

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 0;
    width: 100vw;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: auto;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}


footer .container {
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #adb5bd;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #adb5bd;
}

.footer-bottom p {
    margin: 0;
    padding-bottom: 0;
}

/* Ensure no gap after footer */
footer .container {
    margin-bottom: 0 !important;
    padding-bottom: 20px !important;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--nav-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }
    
    [data-theme="dark"] .nav-links {
        background: var(--bg-color);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h1,
    .section h1 {
        font-size: 3.5rem;
    }
    
    .section h1 {
        text-align: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Consistent heading styles for legal pages */
    .impressum-content h2,
    .section h2 {
        font-size: 1.8rem;
        text-align: left;
        margin: 2rem 0 1rem;
    }
    
    .impressum-content h2::after,
    .section h2::after {
        display: none;
    }
    
    .impressum-content h3,
    .section h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .impressum-content h4,
    .section h4 {
        font-size: 1.3rem;
        margin: 1.3rem 0 0.6rem;
    }
    
    .impressum-content h5,
    .section h5 {
        font-size: 1.1rem;
        margin: 1.1rem 0 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .music-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .section h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

