/* Grundlegende Stile */
:root {
    --primary-color: #d97706; /* Amber-600 */
    --primary-dark: #b45309; /* Amber-700 */
    --primary-light: #fbbf24; /* Amber-400 */
    --secondary-color: #1f2937; /* Gray-800 */
    --text-color: #4b5563; /* Gray-600 */
    --light-bg: #fffbeb; /* Amber-50 */
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

section {
    padding: 80px 0;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    background-color: var(--primary-dark);
    border-bottom-left-radius: 8px;
    padding: 5px;
    display: flex;
    box-shadow: var(--shadow);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    padding: 5px 10px;
    cursor: pointer;
    font-weight: 600;
    opacity: 0.7;
    transition: var(--transition);
}

.lang-btn:hover {
    opacity: 1;
}

.lang-btn.active {
    opacity: 1;
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* Language specific content */
.en, .de {
    display: none;
}

html[lang="en"] .en {
    display: block;
}

html[lang="de"] .de {
    display: block;
}

/* For inline elements */
span.en, span.de {
    display: none;
}

html[lang="en"] span.en {
    display: inline;
}

html[lang="de"] span.de {
    display: inline;
}

/* Fix for album headings */
h4.en, h4.de {
    display: none;
}

html[lang="en"] h4.en {
    display: flex;
}

html[lang="de"] h4.de {
    display: flex;
}

/* Header */
header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
	text-align: center;
  align-items: center;
  justify-content: center;
}

.contact-info a {
    color: var(--orange);
    display: flex;
    align-items: center;
}

.contact-info a i {
    margin-right: 0.5rem;
}

.contact-info a:hover {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px; /* Header-Höhe berücksichtigen */
    overflow: hidden;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-content h1 {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
	margin: 24px 0;
  padding: 0;
  font-size: 90px;
  color: #f06000;
  letter-spacing: -2px;
  margin: 0 auto 18px auto;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, .8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-light);
    animation: fadeInUp 1s ease-out;
}

/* Biography Section */
.biography {
    background-color: var(--light-bg);
}

.bio-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.bio-section.reverse {
    direction: rtl;
}

.bio-section.reverse .bio-text {
    direction: ltr;
}

.bio-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    transition: transform 0.3s ease;
}

.bio-image img:hover {
    transform: scale(1.02);
}

.bio-box {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.bio-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bio-column {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.bio-quote {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 3rem;
}

.bio-quote blockquote {
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    position: relative;
    padding: 0 2rem;
}

.bio-quote blockquote::before,
.bio-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: var(--primary-light);
    opacity: 0.3;
}

.bio-quote blockquote::before {
    top: -1rem;
    left: 0;
}

.bio-quote blockquote::after {
    bottom: -2rem;
    right: 0;
}

.bio-note {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    background-color: var(--light-bg);
    margin-top: 3rem;
}

/* Albums Section */
.albums {
    background: linear-gradient(to bottom, var(--white), var(--light-bg));
}

.album-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.album-cover {
    background: linear-gradient(to bottom right, var(--primary-dark), var(--primary-color));
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-cover img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.album-cover img:hover {
    transform: scale(1.05) rotate(2deg);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.album-info h3 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.album-links h4 {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.album-links h4 i {
    margin-right: 0.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}

.links-grid a {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.links-grid a:hover {
    background-color: var(--light-bg);
}

.links-grid a i {
    margin-right: 0.5rem;
}

/* Album Popup */
.album-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.album-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.album-popup {
    background-color: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.album-popup-overlay.active .album-popup {
    transform: scale(1);
}

.album-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.album-popup-close:hover {
    background-color: var(--primary-dark);
    transform: rotate(90deg);
}

.album-popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.album-popup-cover {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    margin-right: 1.5rem;
    box-shadow: var(--shadow);
}

.album-popup-title h3 {
    margin-bottom: 0.5rem;
}

.album-popup-content {
    margin-bottom: 1.5rem;
}

.album-popup-player {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    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(217, 119, 6, 0.2);
}

.placeholder {
    position: absolute;
    left: 0.75rem;
    top: 2.5rem;
    color: #9ca3af;
    pointer-events: none;
    transition: var(--transition);
    opacity: 0.7;
}

.form-group input:focus + .placeholder,
.form-group textarea:focus + .placeholder,
.form-group input:not(:placeholder-shown) + .placeholder,
.form-group textarea:not(:placeholder-shown) + .placeholder {
    opacity: 0;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.direct-contact {
    text-align: center;
    margin-top: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin-right: 0.75rem;
    color: var(--primary-color);
}

/* Captcha */
.captcha-container {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.captcha-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-info h3,
.footer-social h3,
.footer-links h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-info h3 i,
.footer-social h3 i,
.footer-links h3 i {
    margin-right: 0.5rem;
}

.social-icons {
    gap: 1rem;
    flex-wrap: wrap;
	font-align: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
	margin: 24px 0;
  padding: 0;
  font-size: 30px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

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

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom i {
    color: #f87171;
    margin: 0 0.25rem;
}

/* Legal Section */
.legal-section {
    padding-top: 120px;
    padding-bottom: 60px;
}

.legal-content {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-content h3 {
    margin-top: 2rem;
    color: var(--primary-dark);
}

.legal-content h4 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.back-to-home {
    text-align: center;
    margin-top: 2rem;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .bio-section,
    .bio-columns {
        grid-template-columns: 1fr;
    }
    
    .bio-section.reverse {
        direction: ltr;
    }
    
    .album-card {
        grid-template-columns: 1fr;
    }
    
    .album-cover {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .album-popup {
        padding: 1.5rem;
    }
    
    .album-popup-header {
        flex-direction: column;
        text-align: center;
    }
    
    .album-popup-cover {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .language-switcher {
        top: 60px;
        right: 0;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 0;
    }
    
    .album-popup-player {
        height: 300px;
    }
}
