/* === VARIABLES === */
:root {
    /* Primary color palette */
    --primary: #c06014;    /* Warmer reddish-orange */
    --primary-dark: #a44a08;
    --secondary: #537a40;  /* Softer green */
    --dark: #2c3e50;
    --light: #f3f8f9;
    --gray: #95a5a6;
    --success: #5cb85c;
    
    /* Light mode theme variables */
    --background: #ecf0f1;
    --text-color: var(--dark);
    --card-bg: white;
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1a2530;
    --footer-text: rgba(255, 255, 255, 0.7);
    --section-alt-bg: #f8f9fa;
    --box-shadow: rgba(0, 0, 0, 0.05);
    --box-shadow-hover: rgba(0, 0, 0, 0.1);
    --border-color: #eee;
    
    /* Enhanced Form Variables */
    --form-bg: rgba(255, 255, 255, 0.98);
    --form-field-bg: #ffffff;
    --form-field-focus-bg: #ffffff;
    --form-border-color: #d1d5db;
    --form-label-color: #6b7280;
    --form-placeholder-color: #9ca3af;
    --primary-focus-shadow: rgba(192, 96, 20, 0.2);
    --error-bg: rgba(239, 68, 68, 0.05);
    
    /* Animation speeds */
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    
    /* Font sizes */
    --font-small: 0.9rem;
    --font-medium: 1rem;
    --font-large: 1.2rem;
    --font-xlarge: 1.5rem;
    --font-xxlarge: 2.5rem;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 60px;
    
    /* Border radius */
    --radius-small: 5px;
    --radius-medium: 10px;
    --radius-large: 15px;
    --radius-round: 30px;
    --radius-circle: 50%;
}

/* Dark mode theme variables */
[data-theme="dark"] {
    --primary: #e67e22;    /* Brighter orange for dark mode */
    --primary-dark: #d35400;
    --secondary: #78a76f;  /* Lighter green for dark mode */
    --dark: #ecf0f1;
    --light: #1a2530;
    --gray: #95a5a6;
    --success: #5cb85c;
    
    --background: #0f172a;
    --text-color: #ecf0f1;
    --card-bg: #1e2531;
    --header-bg: rgba(15, 23, 42, 0.95);
    --footer-bg: #0f172a;
    --footer-text: rgba(255, 255, 255, 0.7);
    --section-alt-bg: #1e293b;
    --box-shadow: rgba(0, 0, 0, 0.2);
    --box-shadow-hover: rgba(0, 0, 0, 0.3);
    --border-color: #2d3748;
    
    /* Dark Mode Form Variables */
    --form-bg: rgba(30, 37, 49, 0.95);
    --form-field-bg: rgba(15, 23, 42, 0.8);
    --form-field-focus-bg: rgba(30, 41, 59, 0.9);
    --form-border-color: #374151;
    --form-label-color: #d1d5db;
    --form-placeholder-color: #9ca3af;
    --primary-focus-shadow: rgba(230, 126, 34, 0.2);
    --error-bg: rgba(239, 68, 68, 0.1);
}

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-medium), color var(--transition-medium);
}

/* Container for consistent width across sections */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section standard styling */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    clear: both;
}

/* Section title styling */
.section-title {
    font-size: var(--font-xxlarge);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-color);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Smooth image loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
    will-change: opacity, transform;
}

.lazy-load.loaded {
    opacity: 1;
}

/* === COMPONENTS === */
/* Button styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(138, 37, 37, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 37, 37, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.btn-secondary:hover {
    background-color: #1e4021;
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.btn-group {
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

/* Feature cards styling */
.feature-card {
    background-color: white;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--box-shadow);
    transition: all var(--transition-medium);
    text-align: center;
    padding: 30px 20px;
    color: var(--text-color);
}

[data-theme="dark"] .feature-card {
    background-color: var(--card-bg);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--box-shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-circle);
    background-color: var(--section-alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: all var(--transition-medium);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-color);
}

/* Accordion styling */
.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--radius-small);
    overflow: hidden;
    box-shadow: 0 2px 5px var(--box-shadow);
    background-color: white;
}

[data-theme="dark"] .accordion-item {
    background-color: var(--card-bg);
}

.accordion-header {
    background-color: white;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: all var(--transition-medium);
    color: var(--text-color);
}

[data-theme="dark"] .accordion-header {
    background-color: var(--card-bg);
}

.accordion-header:hover {
    background-color: var(--section-alt-bg);
}

.accordion-header::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--transition-medium);
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-body {
    padding: 0 20px 20px;
    color: var(--text-color);
}

/* Enhanced Form elements styling */
.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--form-border-color);
    border-radius: var(--radius-medium);
    background-color: var(--form-field-bg);
    color: var(--text-color);
    font-size: 1.05rem;
    transition: all var(--transition-medium);
    font-family: inherit;
    outline: none;
}

.form-control::placeholder {
    color: var(--form-placeholder-color);
    opacity: 0.7;
}

.form-control:focus {
    background-color: var(--form-field-focus-bg);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-focus-shadow);
}

.form-control:hover:not(:focus) {
    border-color: var(--primary);
    background-color: var(--form-field-focus-bg);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.form-group.half {
    flex: 1;
    min-width: 150px;
}

.form-group label {
    position: absolute;
    top: -12px;
    left: 15px;
    background-color: var(--background);
    padding: 0 10px;
    font-size: 0.95rem;
    color: var(--form-label-color);
    border-radius: var(--radius-small);
    transition: all var(--transition-medium);
    font-weight: 500;
    z-index: 1;
}

/* Error states */
.form-control.error {
    border-color: #ef4444;
    background-color: var(--error-bg);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px var(--box-shadow);
    transition: all var(--transition-medium);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* === LAYOUT STYLES === */
/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    box-shadow: 0 2px 15px var(--box-shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
}

header.scrolled {
    height: 70px;
    background-color: var(--header-bg);
    box-shadow: 0 5px 20px var(--box-shadow-hover);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    transition: all var(--transition-medium);
    margin-right: 20px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    box-shadow: 0 5px 15px rgba(192, 96, 20, 0.3);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(138, 37, 37, 0.4);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 10px;
}

.nav-links li {
    position: relative;
}

.nav-item {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.nav-item span {
    position: relative;
    z-index: 2;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(192, 96, 20, 0.08);
    transition: all var(--transition-medium);
    z-index: 1;
    border-radius: 30px;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::before {
    height: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 10px rgba(138, 37, 37, 0.2);
    white-space: nowrap;
}

.nav-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 37, 37, 0.3);
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    background-color: rgba(192, 96, 20, 0.08);
}

.theme-toggle:hover {
    background-color: rgba(192, 96, 20, 0.15);
}

.theme-toggle i {
    font-size: 1.3rem;
    transition: all var(--transition-medium);
}

.theme-toggle .fa-sun {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    opacity: 1;
    transform: translateY(0);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    opacity: 0;
    transform: translateY(-20px);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: var(--primary);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(138, 37, 37, 0.2);
    transition: all var(--transition-medium);
}

.hamburger:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(138, 37, 37, 0.4);
}

/* Footer styling */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 30px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color var(--transition-medium);
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 20px;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all var(--transition-medium);
    font-size: 1.2rem;
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--footer-text);
    opacity: 0.5;
}

/* === SECTION STYLES === */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 96, 20, 0.7), rgba(83, 122, 64, 0.7));
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
    color: white;
}

.hero-gruppe {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 50%;
    height: auto;
    z-index: 2;
    transform: translateY(100%);
    animation: flyInUp 1.5s ease 0.5s forwards;
}

/* Flying flowers animation */
.flowers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.flower {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url('images/flower.webp');
    background-size: contain;
    background-repeat: no-repeat;
    animation: flowerFly 15s linear infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.flower:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
    transform-origin: center;
}

.flower:nth-child(2) {
    width: 25px;
    height: 25px;
    left: 25%;
    animation-duration: 18s;
    animation-delay: 1s;
    transform-origin: center;
}

.flower:nth-child(3) {
    width: 35px;
    height: 35px;
    left: 40%;
    animation-duration: 15s;
    animation-delay: 2s;
    transform-origin: center;
}

.flower:nth-child(4) {
    width: 20px;
    height: 20px;
    left: 55%;
    animation-duration: 22s;
    animation-delay: 0.5s;
    transform-origin: center;
}

.flower:nth-child(5) {
    width: 30px;
    height: 30px;
    left: 70%;
    animation-duration: 16s;
    animation-delay: 3s;
    transform-origin: center;
}

.flower:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 85%;
    animation-duration: 19s;
    animation-delay: 1.5s;
    transform-origin: center;
}

@keyframes flowerFly {
    0% {
        top: -10%;
        transform: translateX(10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateX(-15px) rotate(180deg);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 110%;
        transform: translateX(10px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes flyInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* About Section */
.about {
    background-color: var(--background);
    padding-top: 120px;
    padding-bottom: 100px;
}

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

.about-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-header h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
}

/* Geschichte Bereich */
.about-story {
    margin-bottom: 80px;
}

.about-timeline-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px var(--box-shadow);
    height: 500px;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(192, 96, 20, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.about-timeline {
    padding: 20px;
    position: relative;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.timeline-marker {
    width: 120px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-bottom: 8px;
    box-shadow: 0 0 0 5px rgba(138, 37, 37, 0.2);
}

.timeline-date {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--box-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    transform: rotate(45deg);
    box-shadow: -5px 5px 5px var(--box-shadow);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--box-shadow-hover);
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Musiker Bereich */
.about-musicians {
    margin-top: 80px;
}

.musicians-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.musician-card {
    width: 100%;
    max-width: 500px;
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.musician-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--box-shadow-hover);
}

.musician-image-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.musician-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.musician-content {
    padding: 25px;
}

.musician-content h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.musician-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.musician-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.musician-instruments {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.musician-instruments h5 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    opacity: 0.8;
}

.instrument-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.instrument-tag {
    background-color: rgba(192, 96, 20, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instrument-tag:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(192, 96, 20, 0.3);
}

/* Repertoire Section */
.repertoire {
    background-color: var(--section-alt-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* References Section */
.references {
    background-color: var(--background);
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-medium);
    box-shadow: 0 5px 15px var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--box-shadow-hover);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    font-family: Georgia, serif;
    position: absolute;
    top: 30px;
    left: 20px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-top: 20px;
}

.testimonial-position {
    color: var(--gray);
    font-style: italic;
}

/* Media Section */
.media {
    background-color: var(--section-alt-bg);
}

.media-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-medium);
}

.tab-btn.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.tab-btn:hover:not(.active) {
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--box-shadow);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 20px;
    background: var(--card-bg);
}

.video-info h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.audio-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-medium);
    box-shadow: 0 5px 15px var(--box-shadow);
}

.audio-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.audio-player {
    width: 100%;
    margin-top: 15px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-medium);
    box-shadow: 0 5px 15px var(--box-shadow);
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--section-alt-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.3rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-form {
    background: var(--form-bg);
    padding: 30px;
    border-radius: var(--radius-medium);
    box-shadow: 0 5px 15px var(--box-shadow);
    border: 1px solid var(--border-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    /* About section */
    .about-timeline-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-wrapper {
        height: 400px;
        margin: 0 auto;
        max-width: 600px;
    }
    
    /* Hero Section */
    .hero-gruppe {
        visibility: hidden;
        max-width: 70%;
        opacity: 0.9;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        justify-content: flex-end;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--card-bg);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px var(--box-shadow);
        z-index: 1000;
        justify-content: flex-start;
        gap: 5px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-item {
        padding: 12px 20px;
        width: 100%;
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active {
        background: var(--primary-dark);
    }
    
    .nav-button {
        display: none;
    }
    
    /* Timeline in mobile */
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-marker {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 15px;
        gap: 15px;
    }
    
    .timeline-dot {
        margin-bottom: 0;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Section spacing */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
        font-size: 1.8rem;
        word-wrap: break-word;
        padding: 0 15px;
    }
    
    /* Member cards */
    .musician-card {
        max-width: 100%;
    }
    
    /* Contact section */
    .form-row {
        flex-direction: column;
    }
    
    /* Hero section adjustments */
    .hero-gruppe {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    /* Header elements */
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
    }
    
    .hamburger {
        width: 38px;
        height: 38px;
    }
    
    /* About section */
    .about-header h3 {
        font-size: 1.7rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .musician-image-wrapper {
        height: 250px;
    }
    
    .musician-content {
        padding: 20px;
    }
    
    .musician-content h4 {
        font-size: 1.3rem;
    }
    
    /* Hero Mobile Adjustments */
    .hero {
        text-align: center;
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-top: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero p {
        font-size: 1rem;
        margin: 0 auto 30px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        margin: 10px 0;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px;
    }
}