:root {
    /* Brand Colors */
    --color-bg-dark: #2A0402; /* Deepest wine/brown for background */
    --color-bg-light: #400603; /* Lighter wine for cards/elements */
    --color-primary: #C84F06; /* Burnt orange */
    --color-secondary: #F4B04E; /* Amber */
    --color-accent-1: #8C432A; /* Copper */
    --color-accent-2: #8C4A24; /* Warm brown */
    
    /* Typography Colors */
    --color-text-main: #F5F0E6; /* Off-white / cream for readability */
    --color-text-muted: rgba(245, 240, 230, 0.7);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-nav: 'Montserrat', sans-serif;
    
    /* Layout */
    --nav-height: 60px;
    --container-max: 1200px;
}

/* Base Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor for custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Subtle noise texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img, video {
    max-width: 100%;
    display: block;
}

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

.section-padding {
    padding: 8rem 0;
}

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

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Custom Cursor (Circle) */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s;
    will-change: transform;
}

.custom-cursor.hover {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
}

/* Custom Cursor (Glow Layer) */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 80%);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), height 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s;
    will-change: transform;
}

.cursor-glow.hover {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 80%);
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(64, 6, 3, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 176, 78, 0.1);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: fadeInNav 3s 3s ease forwards;
}

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

.nav-logo {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 24px;
    width: auto;
}

.floating-nav.scrolled .nav-logo {
    width: 24px;
    opacity: 1;
    margin-right: 1.5rem;
}

.floating-nav.scrolled {
    background: rgba(42, 4, 2, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(244, 176, 78, 0.2);
}

.floating-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.floating-nav li a {
    font-family: var(--font-nav);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.floating-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.floating-nav li a:hover::after,
.floating-nav li a.active::after {
    width: 100%;
}

.floating-nav li a.active {
    color: var(--color-secondary);
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* Slight scale to hide edges during parallax if added */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(42, 4, 2, 0.3) 0%,
        rgba(42, 4, 2, 0.7) 60%,
        var(--color-bg-dark) 100%
    );
    z-index: 2;
    opacity: 0;
    animation: fadeInOverlay 3s 5s ease forwards;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    mix-blend-mode: screen;
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(244, 176, 78, 0.3));
    animation: breathingGlow 6s ease-in-out infinite;
}

@keyframes breathingGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(244, 176, 78, 0.2)); transform: scale(1); opacity: 0.95; }
    50% { filter: drop-shadow(0 0 50px rgba(244, 176, 78, 0.5)); transform: scale(1.02); opacity: 1; }
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(244, 176, 78, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.6;
    animation: mistFloat 12s ease-in-out infinite;
}

@keyframes mistFloat {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -52%) scale(1.1); }
}

/* Lang Divider */
.lang-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 4rem auto;
    opacity: 0.3;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-main), transparent);
    animation: scrollLine 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Listen Section */
.listen-section {
    position: relative;
    z-index: 10;
}

.player-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-light);
    border: 1px solid rgba(255,255,255,0.05);
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(200, 79, 6, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-bg-dark);
    box-shadow: 0 6px 20px rgba(244, 176, 78, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(245, 240, 230, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 6rem;
    align-items: start;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 8rem;
}

.bio-content {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(244, 176, 78, 0.2);
    font-family: inherit;
    font-style: normal;
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
    border-color: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(244, 176, 78, 0.2);
}

.about-image-placeholder .image-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-bg-light), var(--color-accent-1));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bio-tabs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    position: relative;
    cursor: none; /* Keep custom cursor */
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--color-secondary);
}

.tab-btn.active::after {
    width: 100%;
}

.bio-panel {
    display: none;
}

.bio-panel.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-placeholder .image-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.placeholder-text {
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

/* Watch Section */
.watch-section {
    background-color: #1a0302; /* Slightly darker to make video pop */
}

.video-embed-wrapper {
    aspect-ratio: 16/9;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.video-embed-wrapper.vertical {
    aspect-ratio: 9/16;
    max-width: 400px;
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.press-card {
    background: var(--color-bg-light);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(244, 176, 78, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    background: rgba(140, 67, 42, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.press-date {
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.press-headline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    font-weight: 500;
}

.press-card:hover .read-more {
    color: var(--color-secondary);
}

/* Upcoming Section */
.upcoming-section {
    position: relative;
}

.upcoming-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 176, 78, 0.2), transparent);
}

.bandsintown-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(to top, #110201, var(--color-bg-dark));
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(244, 176, 78, 0.2);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-secondary);
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #110201;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-load {
    opacity: 0;
    animation: fadeUp 1.5s 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Responsive Design */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-right {
        position: static;
        order: -1;
    }
    
    .artist-name {
        font-size: 5rem;
    }
    
    .floating-nav {
        width: 90%;
        max-width: 400px;
        padding: 0.75rem 1rem;
    }
    
    .floating-nav ul {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .floating-nav li a {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .custom-cursor {
        display: none; /* Disable custom cursor on mobile */
    }
    
    * {
        cursor: auto; /* Restore cursor on mobile */
    }
}
