/* ================================================
   BRASS-PROMOTION.DE – STYLE.CSS
   Blumenstädter Musikanten – Blaskapelle Thüringen
   Mobile-First | CSS Grid & Flexbox | Custom Properties
   ================================================ */
@font-face {
    font-family: 'TASA Explorer';
    src: url('../fonts/TASAExplorer-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
/* ------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ------------------------------------------------ */
:root {
    /* Farben – Blau/Rot aus dem Logo */
    --color-primary: #082b5c;
    --color-primary-dark: #051d3e;
    --color-primary-light: #0e4a9a;
    --color-secondary: #a22230;
    --color-accent: #c4303f;

    /* Neutrale Farben */
    --color-text: #1a1a2e;
    --color-text-light: #4a4a5a;
    --color-text-muted: #777;
    --color-bg: #ffffff;
    --color-bg-alt: #F5F7FA;
    --color-bg-warm: #EEF1F6;
    --color-bg-dark: #051d3e;
    --color-border: #D8DCE3;
    --color-white: #ffffff;

    /* Typografie */
--font-display: 'TASA Explorer', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --line-height-tight: 1.2;
    --line-height-normal: 1.7;

    /* Abstände */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;
    --section-padding: 4rem 0;
    --section-padding-lg: 6rem 0;

    /* Layout */
    --container-max: 1280px;
    --container-padding: 1.25rem;
    --border-radius: 0.75rem;
    --border-radius-lg: 1.25rem;

    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

/* ------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: var(--line-height-tight);
    color: var(--color-text);
    font-weight: 700;
}

h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
    text-align: center;
}

h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-size-lg);
}

/* ------------------------------------------------
   4. LAYOUT
   ------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* ------------------------------------------------
   5. COMPONENTS
   ------------------------------------------------ */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-lg);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo:hover {
    opacity: 0.85;
}

.nav-list {
    display: none;
}

.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition-fast);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-list.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: var(--space-md) var(--space-lg);
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 1px solid var(--color-border);
}

.nav-list.is-open li {
    border-bottom: 1px solid var(--color-border);
}

.nav-list.is-open li:last-child {
    border-bottom: none;
    padding-top: var(--space-sm);
}

.nav-list.is-open a {
    display: block;
    padding: 0.875rem 0;
    font-size: var(--font-size-base);
}

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    font-size: var(--font-size-lg);
    transition: color var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
}

.nav-cta {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.nav-cta:hover {
    background-color: var(--color-primary-dark) !important;
    color: var(--color-white) !important;
}

/* --- Hero --- */
.hero {
    padding-top: calc(70px + var(--space-xl));
    padding-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,1);
    color: var(--color-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    color: var(--color-text-light);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hero-image {
    position: relative;
    z-index: 1;
    max-height: 500px;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 30%;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

/* --- Trust Bar --- */
.trust-bar {
    padding: var(--space-lg) 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.trust-label {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.trust-item span.trust-icon {
    font-size: 1.5rem;
}

/* --- Features / Leistungen --- */
.features {
    background-color: var(--color-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: 1.75rem;
    color: var(--color-white);
}

.feature-card h3 {
    color: var(--color-secondary);
}

.feature-card p {
    color: var(--color-text-light);
}

/* --- About / Über uns --- */
.about {
    background-color: var(--color-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius-lg);
   /* aspect-ratio: 4 / 3;*/
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.about-content h2 {
    text-align: left;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.about-stats li {
    text-align: center;
}

.about-stats li strong {
    display: block;
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    font-family: var(--font-display);
}

/* --- Genres / Repertoire Section --- */
.genres {
    background: var(--color-secondary);
    color: var(--color-white);
}

.genres h2 {
    color: var(--color-white);
}

.genres .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.genre-tag {
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.genre-tag:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--color-primary-light);
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--color-bg-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: none;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--color-primary-light);
    opacity: 0.3;
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-stars {
    color: #f5a623;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-normal);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author cite {
    font-style: normal;
    font-weight: 600;
    display: block;
}

.testimonial-author span {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* --- Process / Steps --- */
.process {
    background: var(--color-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    counter-reset: step;
}

.step {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step h3 {
    color: var(--color-secondary);
}

.step p {
    color: var(--color-text-light);
}

/* --- FAQ --- */
.faq {
    background: var(--color-bg-alt);
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: var(--font-size-lg);
    padding-right: var(--space-lg);
    position: relative;
    list-style: none;
    color: var(--color-secondary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: var(--font-size-xl);
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-answer {
    padding-top: var(--space-sm);
    color: var(--color-text-light);
    line-height: var(--line-height-normal);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-lg);
}

.cta-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

.cta-trust {
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* --- Legal / Text Pages (Impressum, Datenschutz) --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-border);
    color: var(--color-primary);
}

.legal-content h3 {
    font-size: var(--font-size-lg);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.legal-content p {
    margin-bottom: var(--space-sm);
    line-height: var(--line-height-relaxed);
}

.legal-content ul {
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.25rem;
    line-height: var(--line-height-relaxed);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-secondary);
}

.legal-content address {
    font-style: normal;
    background: var(--color-bg-alt);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius);
    margin: var(--space-md) 0;
    border-left: 4px solid var(--color-primary);
}

.legal-content .partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-bg-alt);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.legal-content .partner-badge img {
    height: 28px;
    width: auto;
}

.legal-content .partner-badge a {
    font-weight: 600;
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: calc(70px + var(--space-sm)) 0 0;
    background: var(--color-bg-alt);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.breadcrumb-list a {
    color: var(--color-text-muted);
}

.breadcrumb-list a:hover {
    color: var(--color-primary);
}

.breadcrumb-list li:not(:last-child)::after {
    content: ' / ';
    margin-left: 0.25rem;
    color: var(--color-text-muted);
}

/* --- Subpage hero (smaller) --- */
.hero-sub {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
}

.hero-sub h1 {
    max-width: 700px;
}

.hero-sub .hero-subtitle {
    max-width: 600px;
}

/* --- Content Section for subpages --- */
.content-section {
    background: var(--color-bg);
}

.content-section h2 {
    text-align: left;
    margin-bottom: var(--space-md);
}

.content-section p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    max-width: 800px;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.content-two-col img {
    border-radius: var(--border-radius-lg);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-md);
}

/* --- Event type cards --- */
.event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.event-card {
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.event-card h3 {
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-card p {
    color: var(--color-text-light);
}

/* --- Internal links section --- */
.internal-links {
    background: var(--color-bg-warm);
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.link-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    color: var(--color-text);
}

.link-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-card h3 {
    margin-bottom: 0.25rem;
    font-size: var(--font-size-base);
}

.link-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding-top: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.site-footer h4 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-base);
    font-family: var(--font-display);
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--color-primary-light);
}

.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    margin-top: var(--space-sm);
    font-size: var(--font-size-sm);
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: var(--font-size-sm);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------
   6. UTILITIES
   ------------------------------------------------ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

/* ------------------------------------------------
   7. MEDIA QUERIES
   ------------------------------------------------ */

@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }

    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }

    .hero-cta-group {
        flex-direction: row;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-two-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    section {
        padding: var(--section-padding-lg);
    }

    .mobile-nav-toggle {
        display: none;
    }

    .nav-list {
        display: flex !important;
        align-items: center;
        gap: var(--space-lg);
        position: static;
        background: none;
        padding: 0;
    }

    .nav-list a {
        font-size: var(--font-size-base);
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
        align-items: center;
    }

    .hero-content {
        margin-bottom: 0;
    }

    h1 { font-size: var(--font-size-4xl); }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .genres-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .event-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    :root {
        --container-padding: 2.5rem;
    }
}

/* ------------------------------------------------
   7b. ENSEMBLES
   ------------------------------------------------ */
.ensembles {
    background: var(--color-bg-alt);
}

.ensembles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.ensemble-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.ensemble-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.ensemble-img {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.ensemble-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ensemble-card:hover .ensemble-img img {
    transform: scale(1.05);
}

.ensemble-body {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.ensemble-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.ensemble-body p {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: var(--line-height-normal);
}

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

@media (min-width: 768px) {
    .ensembles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ------------------------------------------------
   8. HERO SLIDER
   ------------------------------------------------ */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 10;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    flex-shrink: 0;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.slider-dot.active {
    background: var(--color-white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    z-index: 5;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.slider-btn-prev { left: 0.75rem; }
.slider-btn-next { right: 0.75rem; }

/* ------------------------------------------------
   9. PROFESSIONAL AUDIO PLAYER
   ------------------------------------------------ */
.audio-section {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-primary);
}

.audio-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.audio-section.is-playing .audio-bg-image {
    opacity: 1;
}

.audio-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.35);
    transform: scale(1.1);
}

.audio-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,43,92,0.8) 0%, rgba(5,29,62,0.85) 100%);
}

.audio-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.audio-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.audio-section .section-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
}

/* --- Player Card --- */
.pro-player {
    /*max-width: 700px;*/
    margin: 0 auto;
}

.pro-player-inner {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.35);
}

/* Cover */
.pro-player-cover {
    position: relative;
    flex-shrink: 0;
    width: 140px;
    overflow: hidden;
}

.pro-player-cover img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
@media (max-width: 767px) {
	.pro-player-cover img {
    height: auto;
	}
}
@media (min-width: 767px) {
	.pro-player-cover {
    width: 440px;
}
}

.audio-section.is-playing .pro-player-cover img {
    transform: scale(1.08);
}

/* Vinyl overlay – visible when playing */
.pro-player-vinyl {
    position: absolute;
    top: 50%;
    right: -24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 22%, #111 24%, #333 26%, #111 48%, #333 50%, #111 100%);
    border: 2px solid #444;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pro-player-vinyl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-secondary);
    transform: translate(-50%, -50%);
}

.audio-section.is-playing .pro-player-vinyl {
    opacity: 1;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Body */
.pro-player-body {
    flex: 1;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    text-align: left;
}

/* Info */
.pro-player-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pro-player-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-player-artist {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Timeline / Progress */
.pro-player-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pro-player-progress {
    position: relative;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    touch-action: none;
}

.pro-player-progress-bg {
    position: absolute;
    left: 0; right: 0;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
}

.pro-player-progress-buffered {
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    width: 0%;
    transition: width 0.3s ease;
}

.pro-player-progress-fill {
    position: absolute;
    left: 0;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-secondary), #e04050);
    width: 0%;
    transition: none;
}

.pro-player-progress-handle {
    position: absolute;
    left: 0%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
    pointer-events: none;
}

.pro-player-progress:hover .pro-player-progress-handle,
.pro-player-progress.is-dragging .pro-player-progress-handle {
    opacity: 1;
}

.pro-player-progress:hover .pro-player-progress-fill,
.pro-player-progress.is-dragging .pro-player-progress-fill {
    height: 7px;
}

.pro-player-progress:hover .pro-player-progress-bg,
.pro-player-progress.is-dragging .pro-player-progress-bg {
    height: 7px;
}

.pro-player-progress:hover .pro-player-progress-buffered,
.pro-player-progress.is-dragging .pro-player-progress-buffered {
    height: 7px;
}

.pro-player-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-variant-numeric: tabular-nums;
}

/* Controls */
.pro-player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pro-player-btn-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 16px rgba(162, 34, 48, 0.35);
    flex-shrink: 0;
}

.pro-player-btn-play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(162, 34, 48, 0.5);
}

.pro-player-btn-play svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.pro-player-btn-play .icon-play {
    margin-left: 3px;
}

.pro-player-btn-play .icon-pause {
    display: none;
}

.audio-section.is-playing .pro-player-btn-play .icon-play {
    display: none;
}

.audio-section.is-playing .pro-player-btn-play .icon-pause {
    display: block;
}

.pro-player-btn-secondary {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.pro-player-btn-secondary:hover {
    background: rgba(255,255,255,0.16);
    color: var(--color-white);
}

/* Volume */
.pro-player-volume {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-left: auto;
}

.pro-player-volume .icon-muted {
    display: none;
}

.pro-player-volume.is-muted .icon-vol {
    display: none;
}

.pro-player-volume.is-muted .icon-muted {
    display: block;
}

.pro-player-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.pro-player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-white);
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.pro-player-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-white);
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Mobile */
@media (max-width: 599px) {
    .pro-player-inner {
        flex-direction: column;
    }
    .pro-player-cover {
        width: 100%;
        height: 160px;
    }
    .pro-player-vinyl {
        display: none;
    }
    .pro-player-body {
        padding: 1rem;
    }
    .pro-player-volume-slider {
        display: none;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .pro-player-cover {
        width: 120px;
    }
}

/* ------------------------------------------------
   10. CONTACT FORM / KONTAKT
   ------------------------------------------------ */
.contact-section {
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contact-info h2 {
    text-align: left;
    margin-bottom: var(--space-md);
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.contact-details {
    margin-top: var(--space-lg);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-detail-item strong {
    display: block;
    margin-bottom: 0.125rem;
}

.contact-detail-item a {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-form {
    background: var(--color-bg-alt);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
}

.contact-form h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.form-group label .required {
    color: var(--color-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(8, 43, 92, 0.12);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
}

.form-message {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    display: block;
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

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

/* ------------------------------------------------
   11. LOGO IMAGE STYLES
   ------------------------------------------------ */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo img {
    height: 42px;
    width: auto;
}

.site-footer .logo img {
    height: 36px;
    filter: brightness(0) invert(1);
}

/* ------------------------------------------------
   12. COVERFLOW GALLERY
   ------------------------------------------------ */
.gallery-section {
    background: var(--color-bg-dark);
    color: var(--color-white);
    overflow: hidden;
}

.gallery-section h2 {
    color: var(--color-white);
}

.gallery-section .section-subtitle {
    color: rgba(255,255,255,0.75);
}

.coverflow {
    position: relative;
    height: 420px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    margin: 0 auto;
    max-width: 1100px;
    user-select: none;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.coverflow-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    backface-visibility: hidden;
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(60%) brightness(0.55);
}

.coverflow-item.active img {
    filter: grayscale(0%) brightness(1);
}

.coverflow-item:hover img {
    transform: scale(1.05);
}

.coverflow-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coverflow-item.active::after {
    opacity: 1;
}

.coverflow-item .coverflow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    z-index: 2;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease 0.1s;
}

.coverflow-item.active .coverflow-caption {
    opacity: 1;
    transform: translateY(0);
}

.coverflow-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.coverflow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--color-white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.coverflow-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.coverflow-dots {
    display: flex;
    gap: 0.5rem;
}

.coverflow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition-fast);
}

.coverflow-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* --- Lightbox --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
    transition: opacity 0.25s ease;
}

.lightbox-caption {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.85);
    font-size: var(--font-size-base);
    font-weight: 500;
    white-space: nowrap;
    font-family: var(--font-display);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: -0.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10000;
}

.lightbox-arrow:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.lightbox-arrow-prev {
    left: 1.5rem;
}

.lightbox-arrow-next {
    right: 1.5rem;
}

.lightbox-counter {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: var(--font-size-sm);
    z-index: 10000;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 767px) {
    .coverflow {
        height: 280px;
        perspective: none;
    }
    .coverflow-track {
        transform-style: flat;
    }
    .coverflow-item {
        width: 80vw;
        max-width: 320px;
        height: 220px;
    }
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .lightbox-arrow-prev { left: 0.75rem; }
    .lightbox-arrow-next { right: 0.75rem; }
    .lightbox-close { top: -2.5rem; right: 0; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .coverflow {
        height: 360px;
    }
    .coverflow-item {
        width: 300px;
        height: 210px;
    }
}

/* Large */
@media (min-width: 1280px) {
    .coverflow-item {
        width: 400px;
        height: 280px;
    }
    .coverflow {
        height: 480px;
    }
}
