/* ============================================
   ANIMA TEMPO - Cinematic Post-Apocalyptic Theme
   Matte Painting Aesthetic
   ============================================ */

/* CSS Variables */
:root {
    /* Cinematic Dark Colors - Post-Apocalyptic */
    --bg-primary: #080808;
    --bg-secondary: #0c0c0c;
    --bg-tertiary: #121212;
    --bg-card: #0f0f0f;

    /* Gray Diagram Colors */
    --gray-100: #e8e8e8;
    --gray-200: #c4c4c4;
    --gray-300: #8b8b8b;
    --gray-400: #5a5a5a;
    --gray-500: #3a3a3a;
    --gray-600: #252525;

    /* Accent Colors - Post-Apocalyptic Warm */
    --accent-gold: #c9a45c;
    --accent-orange: #e85a2c;
    --accent-ember: #ff4d1a;
    --accent-amber: #b8860b;
    --accent-rust: #8b3a13;
    --accent-blood: #6b1818;

    /* Text */
    --text-primary: #e0e0e0;
    --text-secondary: rgba(224, 224, 224, 0.7);
    --text-muted: rgba(224, 224, 224, 0.4);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   FILM GRAIN OVERLAY - REDUCED FLICKER
   ============================================ */
.film-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    /* REMOVED ANIMATION - no more flickering */
}

/* ============================================
   EMBER/ASH PARTICLES - ENHANCED POST-APOCALYPTIC
   ============================================ */
.dust-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.dust {
    position: absolute;
    border-radius: 50%;
    animation: emberFloat linear infinite;
    box-shadow: 0 0 6px 2px rgba(255, 77, 26, 0.4);
}

.dust.ember {
    background: radial-gradient(circle, var(--accent-ember) 0%, var(--accent-orange) 50%, transparent 100%);
}

.dust.ash {
    background: rgba(180, 180, 180, 0.6);
    box-shadow: none;
}

@keyframes emberFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-20vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.98), transparent);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-600);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.logo-text {
    color: var(--text-primary);
}

.logo-divider {
    color: var(--accent-ember);
    font-weight: 400;
}

.logo-accent {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-ember), var(--accent-gold));
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-gold);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION - ENHANCED PARALLAX VISIBILITY
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-parallax {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.layer-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    filter: grayscale(15%) contrast(1.15) brightness(0.85);
    transition: transform 0.1s ease-out;
}

.layer-overlay {
    background: linear-gradient(to bottom,
            rgba(8, 8, 8, 0.25) 0%,
            rgba(8, 8, 8, 0.4) 40%,
            rgba(8, 8, 8, 0.8) 80%,
            rgba(8, 8, 8, 1) 100%),
        linear-gradient(to right,
            rgba(8, 8, 8, 0.5) 0%,
            transparent 30%,
            transparent 70%,
            rgba(8, 8, 8, 0.5) 100%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 250px 80px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

/* Cinematic letterbox effect */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8vh;
    background: var(--bg-primary);
    z-index: 15;
}

.hero::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
}

.hero::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 24px;
}

.hero-subtitle-top {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--accent-ember);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 77, 26, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.title-line:first-child {
    animation-delay: 0.8s;
}

.title-line.accent {
    color: var(--accent-gold);
    text-shadow:
        0 0 60px rgba(201, 164, 92, 0.4),
        0 0 120px rgba(255, 77, 26, 0.2);
    animation-delay: 1s;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
}

.hero-divider .line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-rust), transparent);
}

.hero-divider .diamond {
    width: 10px;
    height: 10px;
    background: var(--accent-ember);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(255, 77, 26, 0.6);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.6s;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--text-primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 77, 26, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gray-500), transparent);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons - Enhanced */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-ember), var(--accent-gold));
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(255, 77, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 77, 26, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--gray-500);
}

.btn-ghost:hover {
    border-color: var(--accent-ember);
    color: var(--accent-ember);
    box-shadow: 0 0 20px rgba(255, 77, 26, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 3px;
    z-index: 20;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-ember), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image:
        linear-gradient(90deg, var(--gray-400) 1px, transparent 1px),
        linear-gradient(var(--gray-400) 1px, transparent 1px);
    background-size: 80px 80px;
}

.section-bg-pattern.reverse {
    background-size: 60px 60px;
    transform: rotate(45deg) scale(1.5);
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-ember);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 77, 26, 0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    letter-spacing: 2px;
}

/* Reveal Animation */
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CHRONICLES SECTION - IMPROVED GRID
   ============================================ */
.chronicles-section {
    background: var(--bg-secondary);
}

.chronicles-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.chronicle-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(201, 164, 92, 0.1);
    transition: var(--transition-normal);
}

.chronicle-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-ember);
    opacity: 0;
    z-index: 3;
    transition: var(--transition-normal);
}

.chronicle-item:hover::before {
    opacity: 1;
}

.chronicle-item.large {
    grid-column: span 6;
    grid-row: span 2;
}

.chronicle-item.wide {
    grid-column: span 6;
}

.chronicle-item.regular {
    grid-column: span 3;
}

.chronicle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
    transition: var(--transition-slow);
}

.chronicle-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.15) brightness(1);
}

.chronicle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 8, 8, 0.95) 0%,
            rgba(8, 8, 8, 0.3) 40%,
            transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: var(--transition-normal);
}

.chronicle-item:hover .chronicle-overlay {
    background: linear-gradient(to top,
            rgba(255, 77, 26, 0.3) 0%,
            transparent 50%);
}

.chronicle-tag {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--accent-gold);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hidden Chronicle Items */
.chronicle-hidden {
    display: none !important;
    opacity: 0;
}

.chronicle-hidden.show {
    display: block !important;
    opacity: 1;
    animation: fadeInUp 0.6s ease forwards;
}

/* Gallery images are portrait - center on the subject */
.chronicle-hidden img {
    object-position: center 30%;
}

/* Chronicles CTA */
.chronicles-cta {
    text-align: center;
    margin-top: 50px;
}

.chronicles-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chronicles-cta .btn i {
    transition: transform 0.3s ease;
}

.chronicles-cta .btn:hover i {
    transform: translateY(5px);
}

.chronicles-cta .btn.hidden {
    display: none;
}

/* ============================================
   ALBUMS SECTION - SPECIAL INTERACTIVE DESIGN
   ============================================ */
.albums-section {
    background: var(--bg-primary);
    position: relative;
}

.albums-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 77, 26, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.albums-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-bottom: 100px;
}

.album-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.album-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 77, 26, 0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.album-card:hover::before {
    opacity: 1;
}

.album-visual {
    position: relative;
    margin-bottom: 35px;
}

.album-frame {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid var(--gray-600);
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition-normal);
}

.album-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 164, 92, 0.2);
    z-index: 2;
    pointer-events: none;
}

.album-card:hover .album-frame {
    border-color: var(--accent-ember);
    box-shadow: 0 30px 80px rgba(255, 77, 26, 0.3);
}

.album-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.album-glow {
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle, rgba(255, 77, 26, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.album-card:hover .album-glow {
    opacity: 1;
}

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

.album-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-ember);
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(255, 77, 26, 0.5);
}

.album-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.album-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.album-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid var(--gray-600);
    border-bottom: 1px solid var(--gray-600);
}

.album-meta-item {
    text-align: center;
}

.album-meta-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.album-meta-item strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.album-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-normal);
    padding: 12px 24px;
    border: 1px solid var(--gray-600);
    background: var(--bg-card);
}

.album-cta:hover {
    color: var(--accent-ember);
    border-color: var(--accent-ember);
    box-shadow: 0 0 30px rgba(255, 77, 26, 0.2);
    gap: 18px;
}

/* Tracklist */
.album-tracklist {
    display: none;
    margin-top: 20px;
    text-align: left;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
}

.album-tracklist.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.tracklist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-600);
}

.tracklist-header h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.tracklist-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tracklist-close:hover {
    color: var(--accent-ember);
}

.tracklist-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-600);
    font-size: 0.9rem;
}

.tracklist-item:last-child {
    border-bottom: none;
}

.track-number {
    color: var(--accent-ember);
    font-family: var(--font-heading);
    width: 30px;
}

.track-name {
    flex: 1;
    color: var(--text-primary);
}

.track-duration {
    color: var(--text-muted);
}

.view-tracklist-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--gray-600);
    cursor: pointer;
    transition: var(--transition-normal);
}

.view-tracklist-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.spotify-player {
    max-width: 900px;
    margin: 0 auto;
}

.player-frame {
    border: 2px solid var(--gray-600);
    padding: 25px;
    background: var(--bg-secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================
   FESTIVALS SECTION
   ============================================ */
.festivals-section {
    background: var(--bg-tertiary);
    position: relative;
}

.festivals-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 77, 26, 0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(201, 164, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.festivals-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.festivals-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.festival-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.festival-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-ember), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.festival-card:hover::before {
    transform: scaleX(1);
}

.festival-card:hover {
    border-color: var(--accent-ember);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 77, 26, 0.2);
}

.festival-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-600);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent-ember);
    transition: var(--transition-normal);
}

.festival-card:hover .festival-icon {
    border-color: var(--accent-ember);
    box-shadow: 0 0 30px rgba(255, 77, 26, 0.3);
}

.festival-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.festival-location {
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.festival-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.festival-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tour-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
}

.tour-stat {
    text-align: center;
    padding: 30px;
    border-right: 1px solid var(--gray-600);
}

.tour-stat:last-child {
    border-right: none;
}

.tour-stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-ember);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 77, 26, 0.4);
}

.tour-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   SOULS SECTION
   ============================================ */
.souls-section {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.about-text {
    margin-bottom: 60px;
}

.about-text .lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.achievements-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border: 1px solid var(--gray-600);
    background: var(--bg-card);
    transition: var(--transition-normal);
}

.achievement:hover {
    border-color: var(--accent-ember);
    box-shadow: 0 10px 30px rgba(255, 77, 26, 0.15);
}

.achievement i {
    color: var(--accent-ember);
    font-size: 1.5rem;
}

.achievement span {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.member-card {
    text-align: center;
    position: relative;
}

.member-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 25px;
    border: 2px solid var(--gray-600);
    transition: var(--transition-normal);
}

.member-card:hover .member-photo {
    border-color: var(--accent-ember);
}

.member-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.8), transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-normal);
}

.member-card:hover .member-photo::before {
    opacity: 1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: var(--transition-slow);
}

.member-card:hover .member-photo img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.member-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.member-info span {
    font-size: 0.85rem;
    color: var(--accent-ember);
    letter-spacing: 1px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--bg-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-600);
    background: var(--bg-card);
    font-size: 2.2rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-link:hover .social-icon {
    transform: translateY(-8px);
}

.social-link.spotify:hover .social-icon {
    color: #1DB954;
    border-color: #1DB954;
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.3);
}

.social-link.youtube:hover .social-icon {
    color: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.3);
}

.social-link.facebook:hover .social-icon {
    color: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 15px 40px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover .social-icon {
    color: #E4405F;
    border-color: #E4405F;
    box-shadow: 0 15px 40px rgba(228, 64, 95, 0.3);
}

.social-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 70px;
    border: 2px solid var(--gray-600);
    background: var(--bg-secondary);
    position: relative;
}

.booking-cta::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--gray-600);
    pointer-events: none;
}

.booking-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.booking-content p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    border-top: 2px solid var(--gray-600);
    padding: 80px 0 40px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-600);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    border-color: var(--accent-ember);
    color: var(--accent-ember);
    box-shadow: 0 0 20px rgba(255, 77, 26, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-600);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .tour-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-stat {
        border-right: none;
        border-bottom: 1px solid var(--gray-600);
    }

    .tour-stat:nth-child(odd) {
        border-right: 1px solid var(--gray-600);
    }

    .tour-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .chronicles-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .chronicle-item.large {
        grid-column: span 6;
        grid-row: span 1;
    }

    .chronicle-item.wide {
        grid-column: span 6;
    }

    .chronicle-item.regular {
        grid-column: span 3;
    }

    .albums-showcase {
        grid-template-columns: 1fr;
        gap: 80px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 8, 8, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transform: translateX(100%);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .chronicles-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .chronicle-item.large,
    .chronicle-item.wide,
    .chronicle-item.regular {
        grid-column: span 1;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .members-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .achievements-grid {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        gap: 25px;
    }

    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .tour-stats {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .tour-stat {
        border-right: none;
        border-bottom: 1px solid var(--gray-600);
    }

    .tour-stat:last-child {
        border-bottom: none;
    }

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

    .booking-cta {
        padding: 50px 30px;
    }
}

/* ============================================
   SPOTIFY GALLERY SECTION
   ============================================ */
.listen-section {
    background: var(--bg-tertiary);
    position: relative;
}

.listen-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(29, 185, 84, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 77, 26, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.spotify-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.spotify-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.spotify-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1DB954, var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.spotify-card:hover::before {
    transform: scaleX(1);
}

.spotify-card:hover {
    border-color: #1DB954;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(29, 185, 84, 0.15);
}

.spotify-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(29, 185, 84, 0.1);
    border-bottom: 1px solid var(--gray-600);
}

.spotify-card-header i {
    color: #1DB954;
    font-size: 1.3rem;
}

.spotify-card-header span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.spotify-embed {
    padding: 20px;
    background: var(--bg-secondary);
}

.spotify-card-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--gray-600);
}

.spotify-card-footer .album-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.spotify-card-footer .album-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Artist Profile Widget */
.spotify-artist-profile {
    background: var(--bg-card);
    border: 2px solid var(--gray-600);
    overflow: hidden;
    position: relative;
}

.spotify-artist-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1DB954, var(--accent-ember), var(--accent-gold));
}

.artist-profile-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(to bottom, rgba(29, 185, 84, 0.08), transparent);
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(29, 185, 84, 0.15);
    border: 1px solid rgba(29, 185, 84, 0.3);
    margin-bottom: 20px;
}

.profile-badge i {
    color: #1DB954;
    font-size: 1.2rem;
}

.profile-badge span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #1DB954;
}

.artist-profile-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.artist-profile-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.artist-embed {
    padding: 30px;
    background: var(--bg-secondary);
}

/* ============================================
   WORLD TOUR SECTION - TIMELINE
   ============================================ */
.world-tour-section {
    background: var(--bg-secondary);
    position: relative;
}

.world-tour-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 77, 26, 0.03) 0%, transparent 50%),
        linear-gradient(225deg, rgba(201, 164, 92, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.tour-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.tour-intro p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Timeline */
.tour-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding-left: 150px;
}

.tour-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-ember), var(--accent-gold), var(--accent-ember));
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    padding-bottom: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--accent-ember);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 77, 26, 0.5);
}

.timeline-year {
    position: absolute;
    left: -135px;
    top: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(201, 164, 92, 0.5);
    width: 80px;
    text-align: right;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
    padding: 30px;
    position: relative;
    transition: var(--transition-normal);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--gray-600);
}

.timeline-item:hover .timeline-content {
    border-color: var(--accent-ember);
    box-shadow: 0 10px 40px rgba(255, 77, 26, 0.15);
}

.timeline-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-ember);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-ember);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    padding-right: 50px;
}

.timeline-location {
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.timeline-location i {
    margin-right: 8px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-list {
    list-style: none;
    margin-bottom: 15px;
}

.timeline-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-600);
}

.timeline-list li:last-child {
    border-bottom: none;
}

.timeline-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-ember);
}

.timeline-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 77, 26, 0.15);
    border: 1px solid var(--accent-ember);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-ember);
}

/* Countries Visited */
.countries-visited {
    background: var(--bg-card);
    border: 1px solid var(--gray-600);
    padding: 50px;
    text-align: center;
    margin-top: 60px;
}

.countries-visited h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.countries-visited h3 i {
    margin-right: 15px;
    color: var(--accent-ember);
}

.country-flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--bg-secondary);
    border: 1px solid var(--gray-600);
    transition: var(--transition-normal);
}

.country-item:hover {
    border-color: var(--accent-ember);
    transform: translateY(-3px);
}

.country-flag {
    font-size: 2rem;
}

.country-name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* 5 Members Grid */
.members-grid.members-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* ============================================
   LIVE GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--bg-secondary);
}

.live-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--gray-600);
}

/* Create some variety in grid */
.gallery-item.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.item-4 {
    grid-column: span 2;
}

.gallery-item.item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--accent-gold);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .live-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.item-1,
    .gallery-item.item-4 {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .live-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.item-1,
    .gallery-item.item-4 {
        grid-column: span 1;
    }
}

@media (max-width: 1200px) {
    .spotify-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .spotify-card:nth-child(3) {
        grid-column: span 2;
    }

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

    .timeline-year {
        position: relative;
        left: 0;
        margin-bottom: 10px;
    }

    .tour-timeline {
        padding-left: 30px;
    }

    .tour-timeline::before {
        left: 0;
    }

    .timeline-item::before {
        left: -30px;
    }
}

@media (max-width: 992px) {
    .members-grid.members-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotify-gallery {
        grid-template-columns: 1fr;
    }

    .spotify-card:nth-child(3) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .members-grid.members-5 {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .countries-visited .country-flags {
        gap: 15px;
    }

    .country-item {
        padding: 12px 15px;
    }

    .timeline-content {
        padding: 20px;
    }

    .lang-switch {
        margin-right: 50px;
    }

    .section-title {
        position: relative;
        z-index: 10;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    }

    .section-header {
        position: relative;
        z-index: 10;
        margin-bottom: 50px;
        /* Reduced from 100px */
    }

    .section {
        padding: 60px 0;
        /* Reduced from 140px */
    }

    .hero-title {
        font-size: 3.5rem;
        /* Fallback/Specific for mobile */
        line-height: 0.9;
    }

    .hero-subtitle-top {
        margin-bottom: 10px;
        font-size: 0.7rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
        margin-bottom: 30px;
    }

    .navbar {
        padding: 15px 0;
        background: rgba(8, 8, 8, 0.95);
        /* Better visibility */
    }
}

/* ============================================
   LANGUAGE SWITCH
   ============================================ */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gray-500);
    color: var(--text-secondary);
    padding: 5px 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.lang-btn.active {
    background: var(--accent-ember);
    border-color: var(--accent-ember);
    color: var(--bg-primary);
}

.lang-divider {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ============================================
   PARTNERS/SPONSORS SECTION
   ============================================ */
.partners-section {
    background: var(--bg-tertiary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg-tertiary) 0%, transparent 10%, transparent 90%, var(--bg-tertiary) 100%);
    z-index: 2;
    pointer-events: none;
}

.partners-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.partners-track {
    display: flex;
    gap: 80px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Uniform silver/gray overlay */
    filter: grayscale(100%) brightness(1.2) contrast(0.8) opacity(0.8);
    transition: var(--transition-normal);
    mix-blend-mode: luminosity;
    /* Helps enforce monochrome */
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1) contrast(1) opacity(1);
    mix-blend-mode: normal;
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 90px;
    max-width: 200px;
    object-fit: contain;
}

/* Specific adjustment for Guitar Pro logo to appear larger */
.partner-logo img[src*="guitar pro"] {
    max-height: 120px;
    transform: scale(1.3);
}

/* Reset scale on hover for GP logo to avoid becoming too huge or keeping it proportional */
.partner-logo:hover img[src*="guitar pro"] {
    transform: scale(1.35);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   IMAGE CROPPING - PAVEL (HORIZONTAL)
   ============================================ */
.pavel-crop img,
.pavel-member-crop img {
    object-fit: cover;
    object-position: center 20%;
}

.chronicle-item.pavel-crop {
    overflow: hidden;
}

.chronicle-item.pavel-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.member-photo.pavel-member-crop {
    overflow: hidden;
}

.member-photo.pavel-member-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* ============================================
   CAGED ALBUM - ALIGN RIGHT (HORIZONTAL IMAGE)
   ============================================ */
.album-frame.caged-align-right {
    overflow: hidden;
}

.album-frame.caged-align-right img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    margin-left: -100%;
}

/* ============================================
   HERO ENHANCED QUALITY
   ============================================ */
.hero .parallax-layer.layer-bg {
    background-size: cover;
    background-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}