/* ================================================
   PRIMAL BEAST - Rock Band Website Styles
   Modern, Dark, Aggressive Design
   ================================================ */

/* -------------------- CSS Variables -------------------- */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #2f6bff;
    --color-accent-dark: #1f4bd6;
    --color-accent-glow: rgba(47, 107, 255, 0.5);
    --color-border: #2a2a2a;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-rock: 'Metal Mania', 'Bebas Neue', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Section fade edges */
    --section-fade-height: clamp(70px, 12vw, 180px);
    --section-fade-tilt-top: -3deg;
    --section-fade-tilt-bottom: 3deg;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

ul {
    list-style: none;
}

/* -------------------- Navigation -------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-medium);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-medium);
}

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

/* -------------------- Hero Section -------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    left: -5%;
    width: 110%;
    height: var(--section-fade-height);
    bottom: -1px;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(
        0deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.6) 45%,
        rgba(10, 10, 10, 0) 100%
    );
    transform: skewY(var(--section-fade-tilt-bottom));
    transform-origin: bottom left;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Background Image Layer */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/249A0365.JPG') center center / cover no-repeat;
    animation: slowZoom 30s ease-in-out infinite alternate;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Dark Overlay for contrast */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
}

/* Red accent glow */
.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(47, 107, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(47, 107, 255, 0.1) 0%, transparent 40%);
}

/* Red glow animation disabled - was causing subtle red flashing */

/* Film grain texture - disabled for performance */
.grain-overlay {
    display: none;
}

/* Vignette effect */
.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 30px;
    will-change: transform, opacity;
}

/* Logo Image Styling */
.hero-logo {
    margin-bottom: 30px;
    animation: logoReveal 1.5s ease-out;
}

.logo-image {
    max-width: min(80vw, 700px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(47, 107, 255, 0.5))
            drop-shadow(0 0 60px rgba(47, 107, 255, 0.3))
            drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    will-change: filter;
    transform: translateZ(0);
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(47, 107, 255, 0.5))
                drop-shadow(0 0 60px rgba(47, 107, 255, 0.3))
                drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(47, 107, 255, 0.7))
                drop-shadow(0 0 80px rgba(47, 107, 255, 0.4))
                drop-shadow(0 10px 40px rgba(0, 0, 0, 0.8));
    }
}

/* Old title styles kept for fallback */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-shadow: 0 0 60px var(--color-accent-glow);
}

/* Glitch Effect (for text fallback) */
.glitch {
    position: relative;
    animation: glitchSkew 4s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--color-accent);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    animation: glitchTop 2.5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    animation: glitchBottom 3s infinite linear alternate-reverse;
}

@keyframes glitchSkew {
    0%, 100% { transform: skew(0deg); }
    20% { transform: skew(-0.5deg); }
    40% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    80% { transform: skew(-0.3deg); }
}

@keyframes glitchTop {
    0%, 100% { clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%); transform: translate(0); }
    50% { clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); transform: translate(-3px); }
}

@keyframes glitchBottom {
    0%, 100% { clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); transform: translate(0); }
    50% { clip-path: polygon(0 70%, 100% 70%, 100% 95%, 0 95%); transform: translate(3px); }
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 0.5em;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons - Rusty Metal Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), background var(--transition-medium), border-color var(--transition-medium), color var(--transition-medium);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    isolation: isolate;
}

.btn-primary {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 190, 120, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(120, 55, 25, 0.55) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(80, 35, 15, 0.6) 0%, transparent 55%),
        linear-gradient(
            135deg,
            #6b4326 0%,
            #9a5b2c 35%,
            #512f1a 65%,
            #2b1a12 100%
        );
    color: #f4efe6;
    border: 2px solid;
    border-color: #d79a5e #3a2316 #2b1a12 #e1a66a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -4px 10px rgba(0, 0, 0, 0.65),
        inset 3px 0 6px rgba(0, 0, 0, 0.35),
        inset -3px 0 6px rgba(0, 0, 0, 0.35),
        0 8px 18px rgba(0, 0, 0, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 35%, transparent 60%),
        radial-gradient(circle at 20% 85%, rgba(210, 120, 60, 0.5) 0%, transparent 26%),
        radial-gradient(circle at 78% 18%, rgba(170, 90, 40, 0.4) 0%, transparent 22%),
        radial-gradient(circle at 95% 92%, rgba(120, 60, 30, 0.5) 0%, transparent 22%),
        repeating-linear-gradient(
            100deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 4px
        ),
        repeating-linear-gradient(
            15deg,
            rgba(0, 0, 0, 0.12) 0px,
            rgba(0, 0, 0, 0.12) 2px,
            transparent 2px,
            transparent 6px
        );
    pointer-events: none;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='rust'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23rust)'/%3E%3C/svg%3E");
    opacity: 0.18;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.btn-primary:hover {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 200, 130, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(140, 70, 30, 0.55) 0%, transparent 50%),
        linear-gradient(
            135deg,
            #7a4c2b 0%,
            #b56a35 35%,
            #60361f 70%,
            #362016 100%
        );
    border-color: #e7b076 #4a2c1a #3a2316 #efb97d;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -4px 10px rgba(0, 0, 0, 0.6),
        inset 3px 0 6px rgba(0, 0, 0, 0.3),
        inset -3px 0 6px rgba(0, 0, 0, 0.3),
        0 10px 24px rgba(120, 60, 30, 0.55);
}

.btn-secondary {
    background:
        radial-gradient(circle at 12% 85%, rgba(160, 90, 45, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(120, 60, 30, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 95% 90%, rgba(90, 45, 20, 0.5) 0%, transparent 45%),
        linear-gradient(
            135deg,
            #575757 0%,
            #3f3f3f 40%,
            #2a2a2a 70%,
            #181818 100%
        );
    color: #f2eee8;
    border: 2px solid;
    border-color: #b18b5b #2a2a2a #222222 #c29a67;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -4px 10px rgba(0, 0, 0, 0.7),
        inset 3px 0 6px rgba(0, 0, 0, 0.35),
        inset -3px 0 6px rgba(0, 0, 0, 0.35),
        0 8px 18px rgba(0, 0, 0, 0.65);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 35%, transparent 60%),
        radial-gradient(circle at 18% 80%, rgba(175, 95, 45, 0.45) 0%, transparent 22%),
        radial-gradient(circle at 80% 22%, rgba(150, 75, 35, 0.4) 0%, transparent 20%),
        radial-gradient(circle at 92% 92%, rgba(110, 55, 25, 0.45) 0%, transparent 22%),
        repeating-linear-gradient(
            95deg,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 5px
        ),
        repeating-linear-gradient(
            8deg,
            rgba(0, 0, 0, 0.14) 0px,
            rgba(0, 0, 0, 0.14) 2px,
            transparent 2px,
            transparent 6px
        );
    pointer-events: none;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='rust'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23rust)'/%3E%3C/svg%3E");
    opacity: 0.16;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.btn-secondary:hover {
    background:
        radial-gradient(circle at 15% 85%, rgba(190, 110, 55, 0.42) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(140, 70, 35, 0.38) 0%, transparent 40%),
        linear-gradient(
            135deg,
            #666666 0%,
            #4b4b4b 40%,
            #323232 70%,
            #1f1f1f 100%
        );
    border-color: #c6a374 #353535 #2b2b2b #d3ad7c;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -4px 10px rgba(0, 0, 0, 0.65),
        inset 3px 0 6px rgba(0, 0, 0, 0.3),
        inset -3px 0 6px rgba(0, 0, 0, 0.3),
        0 10px 22px rgba(120, 60, 30, 0.35);
}

.btn:active {
    transform: translateY(1px);
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
}

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

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* -------------------- Sections -------------------- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section::before,
.section::after {
    content: '';
    position: absolute;
    left: -5%;
    width: 110%;
    height: var(--section-fade-height);
    pointer-events: none;
    z-index: 1;
}

.section::before {
    top: -1px;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.6) 45%,
        rgba(10, 10, 10, 0) 100%
    );
    transform: skewY(var(--section-fade-tilt-top));
    transform-origin: top left;
}

.section::after {
    bottom: -1px;
    background: linear-gradient(
        0deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.6) 45%,
        rgba(10, 10, 10, 0) 100%
    );
    transform: skewY(var(--section-fade-tilt-bottom));
    transform-origin: bottom left;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.section-title--rock,
#tour .section-title {
    font-family: var(--font-rock);
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 14px rgba(0, 0, 0, 0.6);
}

.section-title--rock span,
#tour .section-title span,
#tour .section-title .accent {
    color: inherit;
}


/* -------------------- About Section -------------------- */
.about {
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/249A7854.JPG') center center / cover no-repeat;
    filter: grayscale(60%) brightness(0.4);
    z-index: 0;
}

.about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%);
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent);
    transform: translate(15px, 15px);
    z-index: -1;
}

.placeholder-image {
    background: var(--color-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-border);
}

.band-photo {
    aspect-ratio: 4/3;
}

.band-photo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) saturate(0.8) contrast(1.1);
    transition: filter var(--transition-medium);
}

/* Dark overlay with red tint for band photo */
.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(230, 57, 70, 0.15) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    transition: opacity var(--transition-medium);
}



.about-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.about-text p.lead {
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.7;
}

.about-text strong {
    color: var(--color-accent);
}

/* -------------------- Section Backgrounds -------------------- */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%);
}

.music-bg {
    background-image: url('../assets/images/249A5637.JPG');
    filter: grayscale(50%) brightness(0.45);
}

.band-bg {
    background:
        url('../assets/images/249A6365.JPG') center left / 50% 100% no-repeat,
        url('../assets/images/249A4866.JPG') center right / 50% 100% no-repeat;
    filter: grayscale(50%) brightness(0.35);
}

.tour-bg {
    background-image: url('../assets/images/249A5613.JPG');
    filter: grayscale(50%) brightness(0.45);
}

.contact-bg {
    background-image: url('../assets/images/249A4866.JPG');
    filter: grayscale(40%) brightness(0.35) contrast(1.1);
}

/* -------------------- Music Section -------------------- */
.music {
    position: relative;
    overflow: hidden;
}

.music .container {
    position: relative;
    z-index: 2;
}

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

.album-card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.album-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.album-cover {
    position: relative;
    overflow: hidden;
}

.album-art {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-bg-tertiary), var(--color-bg));
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.album-art-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all var(--transition-medium);
}

.play-btn:hover {
    transform: scale(1);
    box-shadow: 0 0 30px var(--color-accent-glow);
}

.play-btn svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

.album-info {
    padding: 25px;
}

.album-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.album-year {
    font-size: 0.85rem;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.track-list {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.track-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.track-list li:hover {
    color: var(--color-text);
}

.track-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-accent);
    min-width: 25px;
}

/* Featured Album Layout */
.albums-featured {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.album-featured {
    max-width: 500px;
    width: 100%;
}

.album-featured .album-art {
    font-size: 2rem;
}

.album-featured .album-title {
    font-size: 2rem;
}

.album-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 10px;
}

.album-featured .track-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

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

.streaming-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.streaming-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.streaming-link svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-muted);
    transition: fill var(--transition-medium);
}

.streaming-link:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.streaming-link:hover svg {
    fill: var(--color-text);
}

/* -------------------- Tour Section -------------------- */
.tour {
    position: relative;
    overflow: hidden;
}

.tour .container {
    position: relative;
    z-index: 2;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--color-bg);
    border-left: 3px solid transparent;
    transition: all var(--transition-medium);
}

.tour-item:hover {
    border-left-color: var(--color-accent);
    background: var(--color-bg-tertiary);
}

.tour-item.sold-out {
    opacity: 0.6;
}

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

.tour-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--color-accent);
}

.tour-date .month {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.tour-info .venue {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.tour-info .location {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.sold-out-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding: 12px 24px;
    border: 1px solid var(--color-border);
}

/* Tour Announcement (No Shows Listed) */
.tour-announcement {
    text-align: center;
    padding: 80px 40px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
}

.announcement-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.announcement-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.announcement-cta {
    display: flex;
    justify-content: center;
}

/* Tour Show More Button */
.tour-show-more {
    text-align: center;
    padding: 40px 0 0 0;
}

.tour-show-more .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tour-show-more .btn svg {
    transition: transform 0.3s ease;
}

.tour-show-more .btn:hover svg {
    transform: translateY(3px);
}

/* -------------------- News Feed Section -------------------- */
.news-feed {
    background: var(--color-bg-secondary);
}

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

/* News Card */
.news-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform var(--transition-medium),
                border-color var(--transition-medium);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

/* Card Image */
.news-card-image {
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.post-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg) 100%);
}

/* Card Content */
.news-card-content {
    padding: 20px;
}

/* Card Header - Profile */
.news-card-header {
    margin-bottom: 15px;
}

.news-card-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--color-bg-tertiary);
    padding: 4px;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.post-time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Card Text */
.news-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Stats */
.news-card-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.stat-item svg {
    width: 16px;
    height: 16px;
    fill: var(--color-text-muted);
}

/* View on Instagram Link */
.news-card-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.news-card-link:hover {
    color: var(--color-text);
}

/* News CTA */
.news-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* News Card Loading State */
.news-card.loading {
    pointer-events: none;
}

.news-card.loading .news-card-image,
.news-card.loading .news-card-text,
.news-card.loading .news-card-stats,
.news-card.loading .post-time {
    background: linear-gradient(90deg, var(--color-bg-tertiary) 25%, var(--color-bg-secondary) 50%, var(--color-bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    color: transparent;
    border-radius: 4px;
}

.news-card.loading .news-card-image {
    min-height: 200px;
}

.news-card.loading .placeholder-image span {
    display: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* -------------------- Band Section -------------------- */
.band {
    position: relative;
    overflow: hidden;
}

.band .container {
    position: relative;
    z-index: 2;
}

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

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

.member-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.member-photo {
    aspect-ratio: 3/4;
    background: linear-gradient(180deg, var(--color-bg-tertiary) 0%, var(--color-bg) 100%);
}

.member-photo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.7) saturate(0.8) contrast(1.1);
    transition: filter var(--transition-medium);
}

/* Dark overlay with red tint */
.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(230, 57, 70, 0.15) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    transition: opacity var(--transition-medium);
}



.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.member-card:hover .member-overlay {
    transform: translateY(0);
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-text);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.member-socials a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.member-socials svg {
    width: 18px;
    height: 18px;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.member-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-founder {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 5px;
    opacity: 0.7;
}

/* -------------------- Contact Section -------------------- */
.contact {
    position: relative;
    overflow: hidden;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.contact-text a {
    color: var(--color-text);
}

.contact-text a:hover {
    color: var(--color-text);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--color-text-muted);
    transition: fill var(--transition-medium);
}

.social-link:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.social-link:hover svg {
    fill: var(--color-text);
}

.newsletter-form {
    background: var(--color-bg-secondary);
    padding: 50px;
    border: 1px solid var(--color-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
}

.form-note a {
    color: var(--color-accent);
}

.form-note a:hover {
    text-decoration: underline;
}

/* -------------------- Footer -------------------- */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 5px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.credits {
    font-style: italic;
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

    .tour-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .tour-action {
        grid-column: 1 / -1;
        margin-top: 15px;
    }

    .tour-action .btn {
        width: 100%;
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .newsletter-form {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        letter-spacing: 0.2em;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-card-content {
        padding: 15px;
    }

    .news-card-text {
        font-size: 0.85rem;
    }

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

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

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

/* -------------------- Custom Scrollbar -------------------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

/* -------------------- Selection -------------------- */
::selection {
    background: var(--color-accent);
    color: var(--color-text);
}
