/*
 * Black Vinyl Website - Styles
 * Gewijzigd: 2026-04-14 - Fase 4: CSS custom properties voor kleuren
 */

/* Design Tokens */
:root {
    --color-primary: #c41e3a;
    --color-primary-light: #e63950;
    --color-primary-rgb: 196, 30, 58;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-black-rgb: 0, 0, 0;
    --color-text-muted: #cccccc;
    --color-bg-dark: #0a0a0a;
    --color-bg-mid: #1a1a1a;
    --color-bg-light: #2a2a2a;
    --color-error: #ff6b6b;
    --color-spotify: #1db954;

    /* Motion tokens — Material 3 style easing curves
       Use --ease-standard for hover / state changes,
       --ease-decelerate for entrances (off-screen → on-screen),
       --ease-accelerate for exits (on-screen → off-screen). */
    --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-decelerate: cubic-bezier(0, 0, 0.2, 1);
    --ease-accelerate: cubic-bezier(0.4, 0, 1, 1);

    /* Multi-property transition shorthands — drop-in replacements for the old
       "transition: all <time> ease" pattern. They list every property we
       commonly toggle on hover/focus, so unrelated properties (border-radius,
       width, etc.) don't get accidentally animated like they did with `all`.
       transform + opacity stay first because they're compositor-only. */
    --transition-200:
        transform 200ms var(--ease-standard),
        opacity 200ms var(--ease-standard),
        background-color 200ms var(--ease-standard),
        color 200ms var(--ease-standard),
        border-color 200ms var(--ease-standard),
        box-shadow 200ms var(--ease-standard),
        filter 200ms var(--ease-standard);
    --transition-300:
        transform 300ms var(--ease-standard),
        opacity 300ms var(--ease-standard),
        background-color 300ms var(--ease-standard),
        color 300ms var(--ease-standard),
        border-color 300ms var(--ease-standard),
        box-shadow 300ms var(--ease-standard),
        filter 300ms var(--ease-standard);
    --transition-400:
        transform 400ms var(--ease-standard),
        opacity 400ms var(--ease-standard),
        background-color 400ms var(--ease-standard),
        color 400ms var(--ease-standard),
        border-color 400ms var(--ease-standard),
        box-shadow 400ms var(--ease-standard),
        filter 400ms var(--ease-standard);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Long Dutch compounds (bedrijfsfeestlocatie, …) shouldn't overflow narrow phones */
p, li, h1, h2, h3, h4, h5, h6, blockquote, figcaption, dt, dd {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-mid) 50%, var(--color-bg-light) 100%);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* Respect iOS notch / Android cutout */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(var(--color-black-rgb), 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-300);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
    /* Honour the iOS Dynamic Island / notch */
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Enhanced header on scroll */
.header.scrolled {
    background: rgba(var(--color-black-rgb), 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(var(--color-black-rgb), 0.8);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: clamp(48px, 4vw + 36px, 60px);
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(var(--color-primary-rgb), 0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Enhanced navigation links with active states */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition-300);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
}

.nav-links a:hover {
    color: var(--color-primary);
    background: transparent;
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--color-primary);
    background: transparent;
}

/* Remove ugly focus outline and add subtle focus state */
.nav-links a:focus {
    outline: none;
    color: var(--color-primary);
    background: transparent;
}

.nav-links a:focus-visible {
    outline: none;
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 20px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active::after {
    animation: activePulse 2s ease-in-out infinite alternate;
}

@keyframes activePulse {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

/* MOBILE MENU FIX - Desktop: Hide menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    transition: var(--transition-300);
    z-index: 1001;
    background: transparent;
    border: none;
    /* BELANGRIJK: Verberg de aria-label tekst */
    font-size: 0 !important;
    line-height: 0;
    color: transparent;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(var(--color-primary-rgb), 0.1);
}

.menu-toggle:focus {
    outline: none;
    background: rgba(var(--color-primary-rgb), 0.1);
}

.menu-toggle:focus-visible {
    outline: none;
    background: rgba(var(--color-primary-rgb), 0.2);
    border-radius: 8px;
}

/* Hamburger lines */
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Hamburger animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile-navigatie regels zijn samengevoegd in het @media-blok rond regel 3580+
   (eerder bestond hier een conflicterend dubbel blok met tegenovergestelde
   slide-richting; dat is verwijderd om cascade-verrassingen te voorkomen). */

/* Hero Section */
.hero {
    height: 100vh; /* fallback for older browsers */
    height: 100dvh; /* dynamic viewport: collapses with iOS Safari address bar */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    z-index: -2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-video:hover {
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85));
    z-index: -1;
}

.video-control-hint {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(var(--color-white-rgb), 0.7);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    /* button reset */
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    font-family: inherit;
    cursor: pointer;
}

.hero:hover .video-control-hint,
.video-control-hint:focus-visible {
    opacity: 1;
}

.video-control-hint:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.video-control-hint:hover {
    color: var(--color-white);
}

.video-control-hint i {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23c41e3a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 8s infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    30% { transform: translate(3%, -3%); }
    50% { transform: translate(-2%, 4%); }
    70% { transform: translate(4%, -2%); }
    90% { transform: translate(-3%, 3%); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo-img {
    /* Fluid scaling: ~150px on a 360px phone, ~280px on a 1440px desktop */
    height: clamp(150px, 18vw + 50px, 280px);
    width: auto;
    filter: drop-shadow(3px 3px 6px rgba(var(--color-black-rgb), 0.8)) drop-shadow(0 0 20px rgba(var(--color-primary-rgb), 0.5));
    transition: var(--transition-300);
    animation: heroGlow 2s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { 
        filter: drop-shadow(3px 3px 6px rgba(var(--color-black-rgb), 0.8)) drop-shadow(0 0 20px rgba(var(--color-primary-rgb), 0.5));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(3px 3px 6px rgba(var(--color-black-rgb), 0.8)) drop-shadow(0 0 30px rgba(var(--color-primary-rgb), 0.8));
        transform: scale(1.02);
    }
}

/* Typography - Bebas Neue for Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.1rem, 1.5vw + 0.7rem, 1.75rem);
    margin-bottom: 1rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
}

.hero-text {
    font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
    margin-bottom: 2rem;
    color: var(--color-white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    min-height: 44px;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-300);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-height: 44px;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--color-primary);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* News Banner */
.news-banner {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-text {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.news-text a {
    color: var(--color-white);
    text-decoration: underline;
}

/* Repertoire / Featured Section */
.album-showcase {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.album-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="towers" patternUnits="userSpaceOnUse" width="20" height="20"><rect width="20" height="20" fill="%23000"/><polygon points="10,2 14,8 6,8" fill="%23c41e3a" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23towers)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.album-header {
    text-align: center;
    margin-bottom: 4rem;
}

.album-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.5vw, 4px);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.55), 0 0 8px #c41e3a;
    position: relative;
}

.album-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
}

.album-subtitle {
    font-size: 1.2rem;
    color: var(--color-white);
    font-style: italic;
}

.album-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.album-visual {
    text-align: center;
}

.album-cover-real {
    width: min(300px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 2rem;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--color-black-rgb), 0.5);
    transition: var(--transition-300);
}

.album-cover-real:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(var(--color-primary-rgb), 0.4);
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-cover-real:hover .album-cover-img {
    transform: scale(1.05);
}

.album-cover-real .album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-black-rgb), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover-real:hover .album-overlay {
    opacity: 1;
}

.album-play-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-play-btn:hover {
    background: #e63950;
    transform: scale(1.1);
}

.album-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(var(--color-white-rgb), 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.detail-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
    width: 20px;
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.countdown-section h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
    background: rgba(var(--color-white-rgb), 0.05);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    border: 2px solid rgba(var(--color-primary-rgb), 0.3);
    transition: var(--transition-300);
}

.countdown-item:hover {
    border-color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.1);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.release-party-info {
    background: rgba(var(--color-white-rgb), 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.release-party-info h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.date {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.description {
    color: var(--color-white);
    line-height: 1.6;
}

.album-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.album-preview {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.04), rgba(var(--color-primary-rgb), 0.06));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(var(--color-primary-rgb), 0.15);
    position: relative;
    overflow: hidden;
}

.album-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.album-preview h3 {
    color: var(--color-primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.tracklist-wrapper {
    background: rgba(var(--color-black-rgb), 0.4);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(var(--color-white-rgb), 0.08);
    box-shadow: inset 0 2px 10px rgba(var(--color-black-rgb), 0.3);
}

.tracklist {
    margin: 0;
    padding: 0;
}

.tracklist-intro {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.tracklist-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(var(--color-primary-rgb), 0.08);
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.tracklist-footer strong {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .album-preview {
        padding: 1.8rem;
        border-radius: 16px;
    }

    .tracklist-wrapper {
        border-radius: 12px;
    }

    .tracklist-intro {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }

    .album-preview h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .tracklist-footer {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .album-preview {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .tracklist-wrapper {
        border-radius: 10px;
    }

    .tracklist-intro {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        padding: 0 0.8rem;
    }

    .album-preview h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 360px) {
    .tracklist-wrapper {
        border-radius: 8px;
    }
    
    .tracklist-intro {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        padding: 0 0.6rem;
    }
    
    .album-preview h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

.track-item {
    padding: 0;
    border-bottom: 1px solid rgba(var(--color-white-rgb), 0.06);
    transition: var(--transition-300);
    list-style: none;
}

.track-item:nth-child(even) {
    background: rgba(var(--color-white-rgb), 0.02);
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: rgba(var(--color-primary-rgb), 0.08);
}

.track-number {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.track-title {
    color: var(--color-white);
    font-weight: 500;
    /* Sta grid-cel toe om te krimpen voor lange titels op smalle schermen */
    min-width: 0;
}

.track-duration {
    color: var(--color-white);
    text-align: right;
}

.track-spotify-icon {
    color: #1DB954;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: var(--transition-300);
}

.track-link:hover .track-spotify-icon {
    opacity: 1;
    transform: scale(1.1);
}

.track-link:focus .track-spotify-icon {
    opacity: 1;
    color: #1DB954;
}

.track-item .play-btn {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-300);
    margin-left: auto;
}

.track-item .play-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.track-item .play-btn i {
    pointer-events: none;
}

/* Track Link Styling */
.track-link {
    display: grid;
    grid-template-columns: 60px 1fr 80px 50px;
    gap: 1rem;
    align-items: center;
    width: 100%;
    min-height: 44px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-300);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.track-link:hover {
    background: rgba(var(--color-primary-rgb), 0.15);
    transform: translateX(5px);
    text-decoration: none;
    color: inherit;
}

.track-link:focus {
    outline: 2px solid #c41e3a;
    outline-offset: 2px;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 5;
    background: inherit;
}

section.band-section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.4vw, 3px);
    color: var(--color-primary);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.55), 0 0 8px #c41e3a;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
}

/* Band Section */
.band-section {
    background: rgba(var(--color-white-rgb), 0.05);
}

.band-photo-hero {
    position: relative;
    margin-bottom: 4rem;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--color-black-rgb), 0.5);
    transition: transform 0.3s ease;
}

.band-photo-hero:hover {
    transform: translateY(-5px);
}

.band-main-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.band-photo-hero:hover .band-main-photo {
    transform: scale(1.05);
}

.band-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(var(--color-black-rgb), 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.band-photo-hero:hover .band-photo-overlay {
    transform: translateY(0);
}

.band-photo-caption {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.band-content {
    display: block;
    gap: 4rem;
    margin-bottom: 2rem;
}

.band-story {
    padding-right: 0;
    margin-bottom: 4rem;
}

.band-members {
    padding-left: 0;
}

.band-story h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.band-story p {
    margin-bottom: 1rem;
    color: var(--color-white);
    line-height: 1.8;
}

.band-members h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.members-hint {
    text-align: center;
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.members-hint:hover {
    opacity: 1;
    color: var(--color-primary);
}

.members-hint i {
    color: var(--color-primary);
}

/* Interactive Band Members Section - ENHANCED WITH REAL PHOTOS */
.members-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    perspective: 1200px;
    padding: 1rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* 3D Flip Card Structure - FIXED HEIGHT */
.member-card-3d {
    background: transparent;
    width: 100%;
    height: 520px; /* INCREASED: Was 420px */
    position: relative;
    cursor: pointer;
    /* easeOutBack — slight bounce on lift-up; only animates transform/box-shadow */
    transition:
        transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 20px;
    outline: none;
    opacity: 1; /* FIXED: Was 0 */
    transform: translateY(0); /* FIXED: Was translateY(30px) */
    min-width: 200px;
}

.member-card-3d:hover,
.member-card-3d:focus {
    transform: translateY(-8px) scale(1.02);
}

.member-card-3d:focus {
    outline: 3px solid var(--member-theme-color, #c41e3a);
    outline-offset: 3px;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.member-card-3d.flipped .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid rgba(var(--color-primary-rgb), 0.2);
    box-shadow: 0 12px 35px rgba(var(--color-black-rgb), 0.4);
    overflow: hidden;
}

/* Front of Card */
.card-3d-front {
    background: linear-gradient(135deg, 
        rgba(var(--color-white-rgb), 0.08) 0%, 
        rgba(var(--color-primary-rgb), 0.03) 50%, 
        rgba(var(--color-black-rgb), 0.1) 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(var(--color-primary-rgb), 0.3);
}

.card-3d-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--color-primary-rgb), 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Back of Card */
.card-3d-back {
    background: linear-gradient(135deg, 
        rgba(var(--color-primary-rgb), 0.08) 0%, 
        rgba(var(--color-white-rgb), 0.03) 50%, 
        rgba(var(--color-black-rgb), 0.2) 100%);
    border: 2px solid rgba(var(--color-primary-rgb), 0.5);
    transform: rotateY(180deg);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

/* Real Photo Styling */
.member-photo-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.member-photo-real {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(var(--color-primary-rgb), 0.4);
    transition: var(--transition-400);
    background: linear-gradient(45deg, #333, #555);
}

.member-card-3d:hover .member-photo-real {
    border-color: var(--member-theme-color, #c41e3a);
    box-shadow: 0 0 30px var(--member-theme-color, #c41e3a)60;
    transform: scale(1.05);
}

.member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-400);
    border-radius: 50%;
}

.member-card-3d:hover .member-photo-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.photo-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 50%;
}

.photo-fallback i {
    font-size: 3rem;
    color: var(--color-primary);
}

.member-role-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: linear-gradient(45deg, var(--member-theme-color, #c41e3a), #e63950);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.4);
    border: 2px solid rgba(var(--color-white-rgb), 0.2);
    transition: var(--transition-300);
}

.member-card-3d:hover .member-role-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--member-theme-color, #c41e3a)60;
}

/* Member Info Front */
.member-info-front {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info-front h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(var(--color-black-rgb), 0.7);
    line-height: 1.2;
}

.member-role {
    color: var(--member-theme-color, #c41e3a);
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(var(--color-black-rgb), 0.5);
}

.member-since {
    color: #bbbbbb;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.member-quote {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    padding: 1rem;
    background: rgba(var(--color-black-rgb), 0.4);
    border-radius: 12px;
    border-left: 4px solid var(--member-theme-color, #c41e3a);
    position: relative;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.member-quote::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 2.5rem;
    color: var(--member-theme-color, #c41e3a);
    opacity: 0.6;
    font-family: 'Times New Roman', serif;
}

/* Flip Hint */
.flip-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(var(--color-primary-rgb), 0.8);
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0;
    transition: var(--transition-300);
    font-weight: 500;
}

.member-card-3d:hover .flip-hint {
    opacity: 1;
    transform: translateY(-2px);
}

.flip-hint i {
    transition: transform 0.3s ease;
}

.member-card-3d:hover .flip-hint i {
    transform: scale(1.1);
}

/* Back of Card Styling */
.back-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.3);
}

.back-photo-small {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--member-theme-color, #c41e3a);
    background: linear-gradient(45deg, #333, #555);
}

.back-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.back-photo-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--member-theme-color, #c41e3a), #e63950);
    border-radius: 50%;
}

.back-photo-fallback i {
    color: white;
    font-size: 1.8rem;
}

.back-header h4 {
    color: var(--member-theme-color, #c41e3a);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.back-subtitle {
    color: var(--color-white);
    font-size: 0.9rem;
    font-style: italic;
}

.back-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.back-content::-webkit-scrollbar {
    width: 3px;
}

.back-content::-webkit-scrollbar-thumb {
    background: var(--member-theme-color, #c41e3a);
    border-radius: 3px;
}

.back-section {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(var(--color-black-rgb), 0.25);
    border-radius: 10px;
    border-left: 3px solid rgba(var(--color-primary-rgb), 0.6);
    transition: var(--transition-300);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.back-section:hover {
    background: rgba(var(--color-black-rgb), 0.35);
    border-left-color: var(--member-theme-color, #c41e3a);
    transform: translateX(3px);
}

.back-section.fun-fact {
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1), rgba(255, 170, 82, 0.05));
    border-left-color: #e63950;
}

.back-section h5 {
    color: var(--member-theme-color, #c41e3a);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.back-section h5 i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.back-section p {
    color: #e0e0e0;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 400;
}

.back-flip-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(var(--color-primary-rgb), 0.8);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.back-flip-hint i {
    transition: transform 0.3s ease;
}

.back-flip-hint:hover i {
    transform: scale(1.1);
}

/* Discography Section */
.discography {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-content: center;
}

.album {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition-300);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.album:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.3);
}

.album.featured {
    border: 2px solid var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.1);
}

.album-cover {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #333333, #555555);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.album-cover i {
    font-size: 4rem;
    color: var(--color-primary);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-black-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.album-year {
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.album-label {
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.album-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.streaming-link {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.streaming-link:hover {
    color: var(--color-primary);
}

/* Tour Section */
.tour-section {
    background: rgba(var(--color-white-rgb), 0.03);
}

.tour-dates {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-bottom: 1rem;
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-300);
}

.tour-item:hover {
    transform: translateX(10px);
    background: rgba(var(--color-primary-rgb), 0.1);
}

.tour-item.upcoming {
    border-left-color: var(--color-primary);
}

.tour-date {
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

.tour-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
}

.tour-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.tour-date .year {
    display: block;
    font-size: 0.8rem;
    color: var(--color-white);
}

.tour-info {
    flex: 1;
}

.tour-info h3 {
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.venue {
    color: var(--color-primary);
    font-weight: bold;
}

.location {
    color: var(--color-white);
    font-size: 0.9rem;
}

/* Media Section */
.media-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.media-item {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-item.featured {
    border: 2px solid var(--color-primary);
}

.media-preview {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.media-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-item:hover .media-preview-img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color-black-rgb), 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.media-overlay h3 {
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.media-overlay p {
    color: var(--color-white);
}

.media-placeholder {
    padding: 3rem;
    text-align: center;
}

.media-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.media-placeholder h3 {
    margin-bottom: 1rem;
    color: var(--color-white);
}

.media-placeholder p {
    color: var(--color-white);
}

/* Shop Section - TEMPORARILY DISABLED */
.shop-section {
    display: none !important;
}

/* Hide all shop-related elements */
.shop-section,
.shop-grid,
.product,
.product-card,
.shop-filters,
.shop-header,
.shop-info {
    display: none !important;
}

.size-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(var(--color-white-rgb), 0.15);
}

/* Pricing */
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1rem;
    color: var(--color-white);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.savings {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: var(--color-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.shipping-info {
    color: var(--color-white);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.coming-soon-text {
    color: var(--color-white);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Enhanced Loading States */
.btn-buy {
    margin-top: auto;
    transition: var(--transition-300);
    position: relative;
    overflow: hidden;
}

.btn-buy:hover {
    background: linear-gradient(45deg, #e63950, #ff8e53);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4);
}

.btn-buy.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    color: transparent;
}

.btn-buy.loading::before {
    content: 'Laden...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 0.9rem;
}

.btn-buy.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 0;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

/* Global Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(var(--color-white-rgb), 0.1) 25%, 
        rgba(var(--color-white-rgb), 0.2) 50%, 
        rgba(var(--color-white-rgb), 0.1) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 2s infinite;
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Image Loading States */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-loaded {
    opacity: 1;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(var(--color-primary-rgb), 0.1) 25%, 
        rgba(var(--color-primary-rgb), 0.2) 50%, 
        rgba(var(--color-primary-rgb), 0.1) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 2s infinite;
    z-index: 1;
}

.image-container.loaded::before {
    display: none;
}

/* Enhanced Accessibility Styles */
.hidden {
    display: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus Management */
*:focus {
    outline: 2px solid #c41e3a;
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #c41e3a;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.2);
}

/* High contrast focus for better visibility */
@media (prefers-contrast: high) {
    *:focus {
        outline: 3px solid #c41e3a;
        outline-offset: 3px;
    }
}

/* Skip-link styling moved to a single block lower in this file (search "Skip Links") */

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Enhanced form error states */
.form-field.error {
    position: relative;
}

.form-field.error::after {
    content: '⚠️';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b6b;
    font-size: 1.2rem;
}

@keyframes buttonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Advanced Micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(var(--color-white-rgb), 0.2);
    /* Compositor-only ripple: scale from 0 → 1 instead of growing width/height */
    transform: translate(-50%, -50%) scale(0);
    transition: transform 400ms var(--ease-decelerate);
    z-index: 0;
    pointer-events: none;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

/* Elegant loading animations */
@keyframes elegantPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

.loading-elegant {
    animation: elegantPulse 2s ease-in-out infinite;
}

/* Advanced navigation interactions */
.nav-links a:hover {
    animation: navigationGlow 0.3s ease-out;
}

@keyframes navigationGlow {
    0% { text-shadow: none; }
    50% { text-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.5); }
    100% { text-shadow: none; }
}

/* Interactive button press effect */
.btn:active {
    transform: translateY(1px) scale(0.98);
}

/* Loading spinner for better UX */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(var(--color-primary-rgb), 0.2);
    border-top: 4px solid #c41e3a;
    border-radius: 50%;
    animation: spinnerRotate 1s linear infinite;
    margin: 20px auto;
}

@keyframes spinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Payment Info */
.payment-info {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    margin-top: 3rem;
}

.payment-info h3 {
    color: var(--color-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info p {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2rem;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--color-primary);
}

.ideal-text {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--color-primary);
    width: 20px;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    color: var(--color-white);
    font-size: 1.5rem;
    border-radius: 8px;
    transition: color 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    color: var(--color-primary);
}

.contact-form {
    background: rgba(var(--color-white-rgb), 0.05);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(var(--color-white-rgb), 0.1);
    border: 1px solid rgba(var(--color-primary-rgb), 0.3);
    border-radius: 5px;
    color: var(--color-white);
    font-family: inherit;
    /* 16px prevents iOS Safari from auto-zooming on focus */
    font-size: 16px;
    line-height: 1.5;
    min-height: 48px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(var(--color-white-rgb), 0.15);
    box-shadow: 0 0 10px rgba(var(--color-primary-rgb), 0.3);
}

/* Enhanced form validation styling */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #ff6b6b;
    background: rgba(220, 53, 69, 0.1);
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
}

.contact-form input.error::placeholder,
.contact-form textarea.error::placeholder {
    color: #ff6b6b;
}

/* Form feedback animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-feedback {
    animation: slideDown 0.3s ease;
}

/* Mobile menu body lock */
body.menu-open {
    overflow: hidden;
}



/* Instagram Feed Section */
.instagram-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="instagram-pattern" patternUnits="userSpaceOnUse" width="30" height="30"><rect width="30" height="30" fill="%23000"/><circle cx="15" cy="15" r="8" fill="none" stroke="%23c41e3a" stroke-width="1" opacity="0.05"/><rect x="7" y="7" width="16" height="16" rx="4" fill="none" stroke="%23c41e3a" stroke-width="1" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23instagram-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    font-style: italic;
}

.instagram-feed {
    margin-bottom: 3rem;
}

.instagram-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-item {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    transition: var(--transition-300);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    cursor: pointer;
}

.instagram-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--color-primary-rgb), 0.3);
    border-color: var(--color-primary);
}

.instagram-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333333, #555555);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Real Instagram Images */
.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-image {
    transform: scale(1.08);
}

.instagram-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--color-primary-rgb), 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.instagram-image-placeholder i {
    font-size: 3rem;
    color: var(--color-primary);
    z-index: 2;
    position: relative;
    transition: var(--transition-300);
}

.instagram-item:hover .instagram-image-placeholder i {
    transform: scale(1.2);
    color: #e63950;
}

.instagram-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(var(--color-black-rgb), 0.9));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.instagram-item:hover .instagram-overlay {
    transform: translateY(0);
}

.instagram-overlay p {
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.instagram-date {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 400;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #E4405F, #c41e3a);
    border: none;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.instagram-cta .btn:hover {
    background: linear-gradient(45deg, #c41e3a, #E4405F);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 64, 95, 0.5);
}

/* Real Instagram Posts Styling */
.instagram-embed-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.instagram-embed-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--color-white-rgb), 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
    pointer-events: none;
}

.instagram-embed-placeholder i {
    font-size: 3rem;
    color: var(--color-white);
    z-index: 2;
    position: relative;
    transition: var(--transition-300);
}

.instagram-item.real:hover .instagram-embed-placeholder i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(var(--color-white-rgb), 0.8);
}

.instagram-item.real {
    cursor: pointer;
    transition: var(--transition-300);
    border: 1px solid rgba(131, 58, 180, 0.3);
}

.instagram-item.real:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(131, 58, 180, 0.3);
    border-color: #833ab4;
}

.video-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--color-black-rgb), 0.8);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    z-index: 4;
    border: 2px solid rgba(var(--color-white-rgb), 0.8);
    transition: var(--transition-300);
}

.instagram-item:hover .video-indicator {
    background: rgba(var(--color-primary-rgb), 0.9);
    border-color: var(--color-white);
    transform: scale(1.1);
}

.instagram-real-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Instagram Grid Simple - Alternative Implementation */
.instagram-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.instagram-post {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    transition: var(--transition-300);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.instagram-post:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--color-primary-rgb), 0.3);
    border-color: var(--color-primary);
}

.post-content {
    flex: 1;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-content i {
    font-size: 3rem;
    color: var(--color-white);
    z-index: 2;
    position: relative;
    transition: var(--transition-300);
}

.instagram-post:hover .post-content i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(var(--color-white-rgb), 0.8);
}

.play-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--color-black-rgb), 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    z-index: 3;
}

.post-info {
    padding: 1.5rem;
    background: rgba(var(--color-black-rgb), 0.8);
}

.post-info p {
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.post-info span {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 400;
}

.instagram-follow {
    text-align: center;
}

/* Ensure Instagram posts are always visible */
.instagram-item.real {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
}

.instagram-item.real[data-scroll-animation] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.instagram-real-posts {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.instagram-embed-placeholder {
    opacity: 1 !important;
    visibility: visible !important;
}

.instagram-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Scroll Animations */
[data-scroll-animation] {
    opacity: 0;
    transition: transform 500ms var(--ease-standard), opacity 500ms var(--ease-standard), background-color 500ms var(--ease-standard), box-shadow 500ms var(--ease-standard);
}

[data-scroll-animation].animate {
    opacity: 1;
}

/* Fade Up Animation */
[data-scroll-animation="fade-up"] {
    transform: translateY(50px);
}

[data-scroll-animation="fade-up"].animate {
    transform: translateY(0);
}

/* Slide Left Animation */
[data-scroll-animation="slide-left"] {
    transform: translateX(-50px);
}

[data-scroll-animation="slide-left"].animate {
    transform: translateX(0);
}

/* Slide Right Animation */
[data-scroll-animation="slide-right"] {
    transform: translateX(50px);
}

[data-scroll-animation="slide-right"].animate {
    transform: translateX(0);
}

/* Slide Up Animation */
[data-scroll-animation="slide-up"] {
    transform: translateY(30px);
}

[data-scroll-animation="slide-up"].animate {
    transform: translateY(0);
}

/* Zoom In Animation */
[data-scroll-animation="zoom-in"] {
    transform: scale(0.9);
}

[data-scroll-animation="zoom-in"].animate {
    transform: scale(1);
}

/* Stagger Animation (for grid items) */
[data-scroll-animation="stagger-up"] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-400);
}

[data-scroll-animation="stagger-up"].animate > * {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-animation="stagger-up"].animate > *:nth-child(1) { transition-delay: 0.05s; }
[data-scroll-animation="stagger-up"].animate > *:nth-child(2) { transition-delay: 0.1s; }
[data-scroll-animation="stagger-up"].animate > *:nth-child(3) { transition-delay: 0.15s; }
[data-scroll-animation="stagger-up"].animate > *:nth-child(4) { transition-delay: 0.2s; }
[data-scroll-animation="stagger-up"].animate > *:nth-child(5) { transition-delay: 0.25s; }
[data-scroll-animation="stagger-up"].animate > *:nth-child(6) { transition-delay: 0.3s; }

/* (Removed: orphan "Enhanced Hero Parallax" override.
    `transform: translateZ(0)` was a pre-2018 GPU hint that modern browsers
    apply automatically; `will-change: transform` was a premature optimisation
    that creates a permanent composite layer for an element that never
    actually transforms.) */

/* Smooth scrolling improvements */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    [data-scroll-animation] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Live Gallery Section */
.live-gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.live-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="livegrid" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="1" fill="%23c41e3a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23livegrid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.live-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.live-photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(var(--color-primary-rgb), 0.1), rgba(255, 167, 38, 0.1));
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    transition: var(--transition-400);
    cursor: pointer;
    margin: 0;
}

.live-photo-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(var(--color-primary-rgb), 0.6);
    box-shadow: 
        0 20px 40px rgba(var(--color-primary-rgb), 0.3),
        0 0 30px rgba(var(--color-primary-rgb), 0.2);
}

.live-photo-item.featured {
    grid-column: span 2;
}

.live-photo-item.tall {
    grid-row: span 2;
}

.live-photo-item.wide {
    grid-column: span 2;
}

.live-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    min-height: 250px;
}

.live-photo-item:hover .live-photo-img {
    transform: scale(1.1);
}

.live-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(var(--color-black-rgb), 0.7) 80%,
        rgba(var(--color-black-rgb), 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.live-photo-item:hover .live-photo-overlay {
    opacity: 1;
}

.photo-info h3 {
    color: var(--color-white);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-info p {
    color: var(--color-white);
    font-size: 0.9rem;
    margin: 0;
}

.live-gallery-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.live-gallery-cta .btn {
    min-width: 200px;
}

/* Responsive Design for Live Gallery */
@media (max-width: 768px) {
    .live-gallery-section {
        padding: 4rem 0;
    }
    
    .live-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .live-photo-item.featured,
    .live-photo-item.wide {
        grid-column: span 2;
    }
    
    .live-photo-item.tall {
        grid-row: span 1;
    }
    
    .live-photo-img {
        min-height: 200px;
    }
    
    .live-gallery-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .live-gallery-cta .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .live-photos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .live-photo-item.featured,
    .live-photo-item.wide,
    .live-photo-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .live-photo-img {
        min-height: 250px;
    }
    
    .photo-info h3 {
        font-size: 1rem;
    }
    
    .photo-info p {
        font-size: 0.8rem;
    }
}

/* Advanced Grid Layout for Larger Screens */
@media (min-width: 1200px) {
    .live-photos-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 250px);
        gap: 1.5rem;
    }
    
    .live-photo-item.featured {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
    
    .live-photo-item.tall {
        grid-row: span 2;
    }
    
    .live-photo-item.wide {
        grid-column: span 2;
    }
}

/* Photo Modal Enhancement (Future feature) */
.live-photo-item {
    position: relative;
}

.live-photo-item::after {
    content: '\f065'; /* FontAwesome expand icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(var(--color-white-rgb), 0.8);
    background: rgba(var(--color-black-rgb), 0.5);
    padding: 0.5rem;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.live-photo-item:hover::after {
    opacity: 1;
}

/* Photo Modal Styles */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-300);
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--color-black-rgb), 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(var(--color-primary-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(var(--color-black-rgb), 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition-300);
}

.modal-close:hover {
    background: rgba(var(--color-primary-rgb), 0.2);
    transform: scale(1.1);
}

.modal-counter {
    color: var(--color-white);
    font-size: 0.9rem;
}

.modal-body {
    position: relative;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-caption {
    padding: 1.5rem;
    background: linear-gradient(to bottom, transparent, rgba(var(--color-black-rgb), 0.8));
}

.modal-caption h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.modal-caption p {
    color: var(--color-white);
    margin: 0;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2.4fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo-img {
    height: clamp(56px, 5vw + 40px, 72px);
    width: auto;
    filter: drop-shadow(1px 1px 2px rgba(var(--color-primary-rgb), 0.3));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-brand .footer-tagline {
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted, #ccc);
    font-weight: 600;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-cta h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 1rem;
}

.footer-cta-btn {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-contact {
    font-style: normal;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted, #ccc);
}

.footer-copyright {
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--color-text-muted, #ccc);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-credit {
    margin: 0;
}

/* YouTube Videos Section */
.youtube-section {
    margin-bottom: 4rem;
    position: relative;
}

.media-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.youtube-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-video {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-300);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.youtube-video:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(var(--color-primary-rgb), 0.3);
    border-color: var(--color-primary);
}

.youtube-video.featured {
    border: 2px solid var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.08);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Real Video Thumbnail Images */
.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.youtube-video:hover .video-thumbnail-img {
    transform: scale(1.05);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(var(--color-white-rgb), 0.1) 50%, transparent 70%);
    animation: shimmer 2.5s infinite;
    pointer-events: none;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--color-white);
    z-index: 2;
    position: relative;
    transition: var(--transition-300);
}

.youtube-video:hover .video-placeholder i {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(var(--color-white-rgb), 0.8);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(var(--color-black-rgb), 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-300);
    z-index: 3;
}

.youtube-video:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-left: 3px; /* Small adjustment for play icon centering */
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(var(--color-black-rgb), 0.8);
    color: var(--color-white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 3;
}

.video-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-info h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.video-description {
    color: var(--color-white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    flex: 1;
}

.video-date {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-action {
    padding: 0 1.5rem 1.5rem;
}

.btn-youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: var(--color-white);
    border: none;
    border-radius: 25px;
    padding: 0.7rem 1.5rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-300);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    background: linear-gradient(45deg, #cc0000, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.youtube-cta {
    text-align: center;
    background: rgba(var(--color-white-rgb), 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.youtube-cta .btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #ff0000, #c41e3a);
    margin-bottom: 1rem;
}

.youtube-cta .btn:hover {
    background: linear-gradient(45deg, #c41e3a, #ff0000);
}

.youtube-subscribe {
    color: var(--color-white);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    /* .logo-img sizing handled by clamp() in the base rule */
    
    /* MOBILE MENU FIX - Show hamburger menu */
    .menu-toggle {
        display: flex !important;
        z-index: 1002;
    }
    
    /* Hide navigation links by default */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px); /* fallback */
        height: calc(100dvh - 70px); /* shrinks with iOS toolbar */
        background: rgba(var(--color-black-rgb), 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        /* Slide-in via transform — compositor only */
        transform: translateX(-100%);
        transition: transform 300ms var(--ease-standard);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Show navigation when active */
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: 0;
    }

    /* Style mobile nav links */
    .nav-links a {
        color: var(--color-white);
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.2);
        width: 100%;
        text-align: center;
        transition: var(--transition-300);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a:hover {
        background: rgba(var(--color-primary-rgb), 0.1);
        color: var(--color-primary);
    }
    
    .nav-links a.active {
        color: var(--color-primary);
        background: rgba(var(--color-primary-rgb), 0.1);
    }
    
    /* Only show orange underline for active page in mobile menu */
    .nav-links a::after {
        display: block !important;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--color-primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .nav-links a.active::after {
        transform: scaleX(1);
    }
    
    .nav-links a:hover::after {
        transform: scaleX(0);
    }
    
    .nav-links a:focus {
        outline: 2px solid #666666;
        outline-offset: 2px;
        box-shadow: none;
    }
    
    /* Hamburger animation when active */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Lock body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Language switcher on mobile */
    .language-switcher {
        position: static;
        margin-left: 1rem;
        order: 3;
    }
    
    /* .hero-logo-img sizing now handled by clamp() in the base rule */

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .album-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .album-cover-real {
        width: min(250px, 90vw);
        height: auto;
    }

    /* .album-title now uses clamp(); explicit override no longer needed */
    
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .track-item {
        grid-template-columns: 40px 1fr 60px 40px;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }
    
    .track-item .play-btn {
        width: 30px;
        height: 30px;
    }
    
    .band-photo-hero {
        margin-bottom: 3rem;
        margin-top: 1.5rem;
    }
    
    .band-main-photo {
        height: 300px;
    }
    
    .band-photo-overlay {
        padding: 1.5rem;
    }
    
    .band-photo-caption {
        font-size: 1rem;
    }
    
    .band-content {
        display: block;
    }
    
    .band-story {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .band-members {
        padding-left: 0;
    }
    

    
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        max-width: 900px;
        padding: 0 1.5rem;
    }
    
    .album-cover {
        width: 160px;
        height: 160px;
    }
    
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tour-date {
        margin-right: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
    
    /* GLOBAL WHITE + ORANGE ACCENT COLOR SCHEME */
    /* Primary text - White for maximum readability */
    .hero-text,
    .album-subtitle,
    .description,
    .video-description,
    .post-info p,
    .instagram-overlay p,
    .product-description,
    .shipping-info,
    .footer-col a,
    .contact-form input::placeholder,
    .members-hint,
    .album-year,
    .location,
    .video-date,
    .youtube-subscribe,
    .member-role,
    .member-since,
    .track-duration,
    .countdown-label,
    .band-photo-caption,
    .instagram-date,
    .band-story p,
    .back-section p,
    .tour-info,
    .contact-item,
    .video-info p,
    .track-title,
    .venue,
    .member-quote {
        color: #ffffff !important;
    }
    
    /* Headers and important elements - White */
    .section-title,
    .video-info h4,
    .product-info h3,
    .member-card h4,
    .album-info h3,
    .contact-info h3,
    .album-title,
    .hero-subtitle,
    .band-story h3,
    .band-members h3,
    .back-section h5,
    .tour-info h3 {
        color: #ffffff !important;
    }
    
    /* Orange accents for special elements */
    .section-title::after,
    .album-title::after,
    .nav-links a.active,
    .nav-links a:hover,
    .member-name-back,
    .power-name,
    .special-power .power-name {
        color: #c41e3a !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* .hero-logo-img sizing now handled by clamp() in the base rule */

    .album-title {
        font-size: 2rem;
    }
    
    .album-cover-real {
        width: 200px;
        height: 200px;
    }
    
    .countdown {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.8rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .track-item {
        grid-template-columns: 30px 1fr 50px 35px;
        gap: 0.3rem;
        padding: 0.7rem 0.8rem;
    }
    
    .track-title {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .band-main-photo {
        height: 250px;
    }
    
    .band-photo-hero {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .band-photo-overlay {
        padding: 1rem;
    }
    

    
    .member-card {
        padding: 1.5rem 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .member-photo-placeholder {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .member-photo-placeholder i {
        font-size: 2rem;
    }
    
    .member-card h4 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .member-role {
        font-size: 0.8rem;
    }
    
    .member-since {
        font-size: 0.7rem;
    }
    
    .member-quote {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 600px;
        padding: 0 1rem;
    }
    
    .album-cover {
        width: 140px;
        height: 140px;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-real-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .instagram-embed-placeholder i {
        font-size: 2.5rem;
    }
    
    .video-indicator {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .instagram-placeholder {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .instagram-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 0 auto 2rem auto;
    }
    
    .post-content i {
        font-size: 2.5rem;
    }
    
    .post-info {
        padding: 1.2rem;
    }
    
    .post-info p {
        font-size: 0.85rem;
    }
    
    .instagram-item {
        border-radius: 10px;
    }
    
    .instagram-overlay {
        padding: 1rem;
    }
    
    .instagram-overlay p {
        font-size: 0.85rem;
    }
    
    .instagram-cta .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-info {
        padding: 1.2rem;
    }
    
    .video-info h4 {
        font-size: 1.2rem;
    }
    
    .video-description {
        font-size: 0.85rem;
    }
    
    .video-action {
        padding: 0 1.2rem 1.2rem;
    }
    
    .btn-youtube {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .youtube-cta {
        padding: 1.5rem;
    }
    
    .youtube-cta .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    /* .hero-logo-img sizing now handled by clamp() in the base rule */

    .album-title {
        font-size: 2rem;
    }
    
    .album-cover-real {
        width: 200px;
        height: 200px;
    }
    
    .countdown {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.8rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .track-item {
        grid-template-columns: 30px 1fr 50px;
        gap: 0.3rem;
        padding: 0.7rem 0.8rem;
    }
    
    .track-title {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .band-main-photo {
        height: 250px;
    }
    
    .band-photo-hero {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .band-photo-overlay {
        padding: 1rem;
    }
    
    .back-section p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .flip-hint, .back-flip-hint {
        font-size: 0.75rem;
    }
    
    /* Additional mobile contrast improvements for 480px screens */
    .hero-text,
    .album-subtitle,
    .description,
    .video-description,
    .product-description,
    .shipping-info,
    .member-role,
    .member-since,
    .track-duration,
    .youtube-subscribe {
        color: #e0e0e0 !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* Ensure buttons remain visible */
    .btn {
        font-size: 1rem !important;
        padding: 1rem 1.5rem !important;
    }
    
    /* Navigation text size on very small screens */
    .nav-links a {
        font-size: 1.3rem !important;
        padding: 1.2rem 2rem !important;
    }
}

/* Tour section styling - Enhanced with authentic data */
.tour-item.featured {
    background: linear-gradient(135deg, 
        rgba(var(--color-primary-rgb), 0.15) 0%, 
        rgba(var(--color-white-rgb), 0.05) 50%, 
        rgba(var(--color-black-rgb), 0.1) 100%);
    border: 2px solid rgba(var(--color-primary-rgb), 0.6);
    box-shadow: 0 15px 35px rgba(var(--color-primary-rgb), 0.3);
    transform: scale(1.02);
}

.tour-item.featured .tour-date {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: white;
}

.tour-item.featured h3::after {
    content: " 🎸";
    font-size: 0.8em;
    opacity: 0.8;
}

.tour-item.past {
    opacity: 0.7;
    background: rgba(var(--color-white-rgb), 0.02);
    border: 1px solid rgba(var(--color-white-rgb), 0.1);
}

.tour-item.past .tour-date {
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    color: #333333;
}

.tour-item.past h3 {
    color: var(--color-white);
    opacity: 0.7;
}

.btn-disabled {
    background: #333333;
    color: var(--color-white);
    cursor: not-allowed;
    border: 1px solid #ffffff;
    opacity: 0.6;
}

/* Ticket info styling */
.ticket-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 10px;
    border-left: 3px solid #c41e3a;
}

.ticket-price {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-white);
}

.ticket-price strong {
    color: var(--color-primary);
}

/* Album highlights styling */
.album-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: 20px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.3);
    font-size: 0.9rem;
    color: var(--color-white);
}

.highlight-item i {
    color: var(--color-primary);
    font-size: 1rem;
}

.album-release-info {
    margin-bottom: 2rem;
}

.album-release-info h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.album-release-info .description {
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Band quote styling for authentic content */
.band-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(var(--color-primary-rgb), 0.1) 0%, 
        rgba(var(--color-black-rgb), 0.3) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 10px;
    position: relative;
    font-style: italic;
}

.band-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

.band-quote p {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.band-quote em {
    color: var(--color-primary);
    font-weight: 500;
}

/* ORIGINELE SIMPELE MEMBER CARDS */

/* Base Grid Layout - Simpel en Stabiel */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

/* Originele Member Card - Simpel en Stabiel */
.member-card {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-300);
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 300px;
    width: 100%;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.3);
    border-color: var(--color-primary);
}

.member-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 3px solid rgba(var(--color-primary-rgb), 0.5);
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3);
}

.member-photo-placeholder i {
    font-size: 3rem;
    color: var(--color-white);
}

.member-card h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.member-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-since {
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.member-quote {
    color: #e0e0e0;
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.4;
    padding: 0.8rem;
    background: rgba(var(--color-black-rgb), 0.3);
    border-radius: 8px;
    border-left: 3px solid #c41e3a;
    text-align: left;
    width: 100%;
}

/* Simpele Responsive Design voor Member Cards */
@media (max-width: 768px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .member-card {
        max-width: 250px;
        padding: 1.5rem 1rem;
    }
    
    .member-photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .member-photo-placeholder i {
        font-size: 2.5rem;
    }
    
    .member-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
    }
    
    .member-card {
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .member-photo-placeholder {
        width: 90px;
        height: 90px;
    }
    
    .member-photo-placeholder i {
        font-size: 2rem;
    }
    
    .member-card h4 {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-since {
        font-size: 0.8rem;
    }
    
    .member-quote {
        font-size: 0.75rem;
        padding: 0.6rem;
    }
}

.album-bg-overlay {
    opacity: 0.25;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}

a:hover, a:focus {
    color: var(--color-primary);
    text-decoration: underline;
    outline: none;
}

a:visited {
    color: var(--color-white);
}

/* Uitzonderingen: nav, footer, social-links zijn al gestyled */

/* Hero-video responsive: vertrouwen op object-fit: cover uit base-rule (r. 295)
   i.p.v. een -600px left-hack die horizontale overflow veroorzaakte. */
@media (max-width: 600px) and (orientation: portrait) {
  .hero-video {
    /* object-fit: cover doet het werk; geen herpositionering nodig */
    left: 0;
    width: 100%;
    transform: none;
    max-width: 100%;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100dvh;
    overflow: hidden;
  }
  .hero-video {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    max-width: 100%;
    object-fit: cover;
  }
}

/* Shop Section - TEMPORARILY DISABLED */
.shop-section {
    display: none !important;
}

/* Hide all shop-related elements */
.shop-section,
.shop-grid,
.product,
.product-card,
.shop-filters,
.shop-header,
.shop-info {
    display: none !important;
}

/* Track-item responsive blokken (eerder duplicated met conflicterende waarden;
   nu samengevoegd — de versie hieronder bevat word-break voor lange titels). */
@media (max-width: 768px) {
    .track-item {
        grid-template-columns: 45px 1fr 60px 40px;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
    }
    
    .track-link {
        grid-template-columns: 45px 1fr 60px 40px;
        gap: 0.8rem;
        padding: 0.8rem 1rem;
        margin: -0.8rem -1rem;
    }
    
    .track-number {
        font-size: 1rem;
        min-width: 45px;
    }
    
    .track-title {
        font-size: 0.9rem;
        line-height: 1.2;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .track-duration {
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .track-spotify-icon {
        font-size: 1rem;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .track-item {
        grid-template-columns: 35px 1fr 50px 30px;
        gap: 0.5rem;
        padding: 0.7rem 0.8rem;
    }
    
    .track-link {
        grid-template-columns: 35px 1fr 50px 30px;
        gap: 0.5rem;
        padding: 0.7rem 0.8rem;
        margin: -0.7rem -0.8rem;
    }
    
    .track-number {
        font-size: 0.9rem;
        min-width: 35px;
    }
    
    .track-title {
        font-size: 0.8rem;
        line-height: 1.1;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .track-duration {
        font-size: 0.7rem;
        min-width: 50px;
    }
    
    .track-spotify-icon {
        font-size: 0.9rem;
        min-width: 30px;
    }
}

@media (max-width: 360px) {
    .track-item {
        grid-template-columns: 30px 1fr 45px 25px;
        gap: 0.4rem;
        padding: 0.6rem 0.6rem;
    }
    
    .track-link {
        grid-template-columns: 30px 1fr 45px 25px;
        gap: 0.4rem;
        padding: 0.6rem 0.6rem;
        margin: -0.6rem -0.6rem;
    }
    
    .track-number {
        font-size: 0.8rem;
        min-width: 30px;
    }
    
    .track-title {
        font-size: 0.75rem;
        line-height: 1.1;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .track-duration {
        font-size: 0.65rem;
        min-width: 45px;
    }
    
    .track-spotify-icon {
        font-size: 0.8rem;
        min-width: 25px;
    }
}

/* =========================================
 * Fase 6: Verplaatst vanuit inline <style> blokken in index.html
 * ========================================= */

/* Skip Links — fixed off-screen until keyboard-focused, with a subtle slide-in.
   Transform + opacity are the only properties we animate (compositor-only,
   no layout/paint cost). prefers-reduced-motion is respected globally
   higher up in this file. */
.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10000;
    background: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.4;
    border-radius: 4px;
    /* Reset any inherited clip / size hacks from older versions of this file */
    width: auto;
    height: auto;
    clip: auto;
    overflow: visible;
    white-space: nowrap;
    /* Hidden state: pushed above the viewport, fully transparent, non-clickable */
    transform: translateY(calc(-100% - 2rem));
    opacity: 0;
    pointer-events: none;
    transition:
        transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 180ms ease-out;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Stagger the second skip-link below the first so they don't overlap if both
   somehow gain focus styling at the same time (e.g. dev tools) */
.skip-link + .skip-link:focus,
.skip-link + .skip-link:focus-visible {
    top: calc(1rem + 3.5rem);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(var(--color-white-rgb), 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}
.breadcrumb-item {
    color: var(--color-text-muted);
}
.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--color-primary);
}
.breadcrumb-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-link:hover {
    color: var(--color-primary-light);
}
.breadcrumb-current {
    color: var(--color-white);
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 3rem;
}
.faq-title {
    color: var(--color-primary);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}
.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 10px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
    overflow: hidden;
    transition: var(--transition-300);
}
.faq-item:hover {
    background: rgba(var(--color-white-rgb), 0.08);
    border-color: rgba(var(--color-primary-rgb), 0.4);
}
.faq-question {
    padding: 1.5rem;
    min-height: 44px;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-300);
    list-style: none;
}
.faq-question:hover {
    color: var(--color-primary);
}
.faq-question i {
    color: var(--color-primary);
    font-size: 1.2rem;
}
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.faq-item[open] .faq-question {
    color: var(--color-primary);
}

/* Desktop Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.lang-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    /* 44px minimum tap target voor touch devices */
    min-height: 44px;
    min-width: 44px;
}
.lang-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}
.lang-btn:focus {
    outline: none;
    background: rgba(var(--color-primary-rgb), 0.1);
}
.lang-btn:focus-visible {
    outline: none;
    background: rgba(var(--color-primary-rgb), 0.2);
}
.lang-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}
@media (max-width: 768px) {
    .language-switcher {
        display: none !important;
    }
}

/* Mobile-only items: verborgen op desktop, zichtbaar in mobiel menu */
.mobile-only {
    display: none !important;
}
@media (max-width: 768px) {
    .mobile-only {
        display: list-item !important;
    }
}

/* Mobile Language Switcher */
.mobile-lang-separator {
    width: 80%;
    margin: 1rem 0 0.5rem 0;
}
.mobile-lang-separator hr {
    border: none;
    height: 1px;
    background: rgba(var(--color-primary-rgb), 0.3);
    margin: 0;
}
.mobile-lang-item {
    margin: 0;
    width: 100%;
}
.mobile-lang-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.lang-label {
    color: var(--color-white);
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lang-label i {
    color: var(--color-primary);
}
.lang-buttons-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lang-separator {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: bold;
}
.mobile-lang-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 52px;
    min-height: 44px;
}
.mobile-lang-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}
.mobile-lang-btn:focus {
    outline: none;
    background: rgba(var(--color-primary-rgb), 0.1);
}
.mobile-lang-btn:focus-visible {
    outline: none;
    background: rgba(var(--color-primary-rgb), 0.2);
}
.mobile-lang-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

/* Component styles (verplaatst vanuit inline blok 3) */
.section-intro {
    text-align: center;
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.new-badge {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-light));
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.album-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.event-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.tour-booking-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(var(--color-white-rgb), 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}
.tour-booking-info h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.tour-booking-info address {
    font-style: normal;
    line-height: 1.6;
}
.tour-booking-info address a {
    color: var(--color-primary);
    text-decoration: none;
}
.tour-booking-info address a:hover {
    text-decoration: underline;
}

/* Shop section - verborgen tot activatie */
.shop-section,
.shop-grid,
.product,
.product-card,
.shop-filters,
.shop-header,
.shop-info {
    display: none !important;
}

/* ===========================================
 * Quick Facts (TL;DR) - citeerbaar blok voor AI Overviews
 * Citeerbare feiten, hoog op de pagina, plain text voor crawlers
 * =========================================== */
.quick-facts {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(20, 20, 20, 0.95));
    border-bottom: 1px solid rgba(var(--color-primary-rgb, 196, 30, 58), 0.2);
}
.quick-facts-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}
.quick-facts-lead strong {
    color: var(--color-primary, #c41e3a);
    font-weight: 600;
}
.quick-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
}
.quick-facts-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text-muted, #ccc);
    font-size: 0.95rem;
}
.quick-facts-list i {
    color: var(--color-primary, #c41e3a);
    font-size: 1rem;
}
.quick-facts-list a {
    color: var(--color-text-muted, #ccc);
    text-decoration: none;
    border-bottom: 1px dashed rgba(var(--color-primary-rgb, 196, 30, 58), 0.4);
    transition: color 0.3s ease;
}
.quick-facts-list a:hover {
    color: var(--color-primary, #c41e3a);
}
@media (max-width: 768px) {
    .quick-facts {
        padding: 2rem 0;
    }
    .quick-facts-lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    .quick-facts-list {
        gap: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================================
 * FAQ section - overschrijft inline display:none uit oude HTML
 * (voor het geval er nog ergens cached HTML rondzwerft)
 * =========================================== */
.faq-section {
    display: block;
}
.faq-section[aria-hidden="true"] {
    /* Defensief: als ergens nog aria-hidden=true voorkomt, niet verbergen - laat schema werken */
    display: block;
}

/* ===========================================
 * Services / Landingspagina cross-link section
 * =========================================== */
.services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(15, 15, 15, 0.95));
    border-top: 1px solid rgba(var(--color-primary-rgb, 196, 30, 58), 0.2);
}
.services-subhead {
    color: var(--color-text-muted, #ccc);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-align: center;
    margin: 3rem 0 1rem;
    text-transform: uppercase;
}
.services-subhead:first-of-type {
    margin-top: 2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.service-card {
    background: rgba(var(--color-white-rgb, 255, 255, 255), 0.04);
    border: 1px solid rgba(var(--color-primary-rgb, 196, 30, 58), 0.15);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-white, #fff);
    transition: var(--transition-300);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.service-card:hover,
.service-card:focus-visible {
    background: rgba(var(--color-primary-rgb, 196, 30, 58), 0.1);
    border-color: rgba(var(--color-primary-rgb, 196, 30, 58), 0.5);
    transform: translateY(-4px);
    color: var(--color-white, #fff);
    text-decoration: none;
}
.service-card i {
    font-size: 2rem;
    color: var(--color-primary, #c41e3a);
    margin-bottom: 0.5rem;
}
.service-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: 1px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted, #ccc);
    margin: 0;
}


/* =========================================
   TOUCH-DEVICE OVERRIDES
   On devices without true hover (phones/tablets), reveal hover-only overlays
   so captions, info, and play buttons remain reachable.
   ========================================= */
@media (hover: none) {
    .album-cover-real .album-overlay,
    .album-cover .album-overlay,
    .media-overlay,
    .live-photo-overlay,
    .photo-info {
        opacity: 1;
    }

    /* Tone the always-visible overlay down so the underlying image stays readable */
    .album-cover-real .album-overlay,
    .album-cover .album-overlay,
    .media-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
        align-items: flex-end;
        justify-content: center;
        padding: 1rem;
    }

    .live-photo-overlay {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.75) 80%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }

    /* Disable hover-only transforms that get "stuck" on touch */
    .album-cover-real:hover,
    .live-photo-item:hover,
    .media-item:hover,
    .service-card:hover {
        transform: none;
    }
}
