:root {
    --color-bg: #050505;
    --color-text: #EAEAEA;
    --color-accent: #FF3C00; /* More aggressive orange */
    --color-accent-2: #D4FF00; /* Acid Green */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Cursor Placeholder - User asked for "fresh", we'll stick to system cursor for usability unless asked, 
   but let's make interactions aggressive */
   
/* Root & Transition settings */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    cursor: none; /* Hide default cursor on desktop */
}

/* Menu Button */
.menu-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: var(--color-text);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.menu-btn-burger {
    width: 25px;
    height: 3px;
    background: var(--color-bg);
    position: relative;
    transition: all 0.3s ease;
}

.menu-btn-burger::before,
.menu-btn-burger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--color-bg);
    transition: all 0.3s ease;
}

.menu-btn-burger::before { transform: translateY(-8px); }
.menu-btn-burger::after { transform: translateY(8px); }

/* Menu Open State */
.menu-btn.open .menu-btn-burger { background: transparent; }
.menu-btn.open .menu-btn-burger::before { transform: rotate(45deg); background: var(--color-bg); }
.menu-btn.open .menu-btn-burger::after { transform: rotate(-45deg); background: var(--color-bg); }

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    z-index: 900;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.fullscreen-menu.active {
    clip-path: circle(150% at 100% 0%);
}

.menu-items {
    list-style: none;
    text-align: center;
}

.menu-items li {
    margin: 1rem 0;
    overflow: hidden;
}

.menu-items a {
    display: block;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-bg);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    position: relative;
}

.fullscreen-menu.active .menu-items a {
    transform: translateY(0);
    transition-delay: 0.2s;
}

.menu-items a:hover {
    color: var(--color-text);
    -webkit-text-stroke: 2px var(--color-bg);
}

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

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2) brightness(0.7);
    transform: scale(1.1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 15vw;
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--color-text);
    mix-blend-mode: exclusion;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centering for flex items */
}

.line-2 {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
    /* margin-left: 20vw; - Removed for centering */
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
}

.scroll-indicator .arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(10px);}
    60% {transform: translateY(5px);}
}

/* Marquee */
.marquee-container {
    background: var(--color-accent);
    padding: 1rem 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.1);
    z-index: 10;
    position: relative;
    margin: 0 0 2rem 0;
    border-top: 2px solid var(--color-bg);
    border-bottom: 2px solid var(--color-bg);
}

.marquee-content {
    display: flex;
    width: max-content;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bg);
    animation: marquee 30s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}

.marquee-item {
    color: var(--color-bg) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.marquee-item svg {
    width: 2.5rem;
    height: 2.5rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Layout Core */
.content-section {
    padding: 4rem 5%;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.giant-heading {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.9;
    color: var(--color-text);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.giant-heading.text-right {
    text-align: right;
}

.giant-heading.outline-text {
    -webkit-text-stroke: 2px var(--color-text);
    color: transparent;
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Manifesto Section */
.manifesto-section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

.manifesto-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 18vw;
    font-family: var(--font-display);
    font-weight: 900;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.manifesto-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.manifesto-line {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.manifesto-line.right-aligned {
    justify-content: flex-end;
    text-align: right;
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) skewY(5deg);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.active .reveal-word {
    opacity: 1;
    transform: translateY(0) skewY(0);
}

.manifesto-section .accent-text {
    color: var(--color-accent);
}

/* Live / List Redesign */
.gig-list {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
}

.gig-row {
    position: relative;
    padding: 4rem 0;
    padding-left: 3rem; /* Always padded */
    border-bottom: 1px solid var(--color-accent); /* Always accent color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.gig-row-date {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--color-accent);
    z-index: 2;
    transition: transform 0.3s ease;
    line-height: 1;
    transform: scale(1.1) skew(-5deg); /* Always skewed */
}

.gig-row-info {
    text-align: right;
    z-index: 2;
}

.gig-row-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.gig-row-info p {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 600;
}

.gig-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: var(--font-display);
    font-size: 18vw; /* Slightly bigger */
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Enhanced Visibility */
    color: rgba(255, 60, 0, 0.2); /* More opaque */
    -webkit-text-stroke: 2px rgba(255, 60, 0, 0.3); /* Thicker stroke */
    transform: translate(-48%, -52%) skew(-10deg) scale(1.05);
    opacity: 1;
}

/* Vibe / Masonryish */
.vibe-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 1.5rem;
}

.vibe-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.vibe-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* Grayscale removed - always in color */
}

.vibe-item:hover img,
.vibe-item.focus-active img {
    transform: scale(1.1) rotate(1deg) !important;
    /* Contrast/Brightness can stay if you want a slight pop on hover */
    filter: contrast(1.1) brightness(1.05) !important;
}

/* Dynamic Aspect Ratio Spans */
.vibe-item.is-portrait { 
    grid-row: span 2; 
}
.vibe-item.is-landscape { 
    grid-column: span 2; 
}

/* Fallback for the first item to keep it impactful */
.vibe-item:first-child:not(.is-portrait):not(.is-landscape) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Mobile fallback - ensuring one column but respecting aspect ratio spans */
@media screen and (max-width: 768px) {
    .vibe-item:nth-child(n) { 
        grid-column: span 1 !important; 
        /* Removed fixed height to let grid spans handle it */
    }
    .vibe-item.is-portrait {
        grid-row: span 2 !important;
    }
}

/* Booking Form */
.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.interaction-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.input-group {
    position: relative;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    color: var(--color-text);
    font-size: 1.5rem;
    font-family: var(--font-body);
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
}

.input-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: #666;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.5rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -1.5rem;
    font-size: 1rem;
    color: var(--color-accent);
}

.input-group .bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

.input-group input:focus ~ .bar,
.input-group textarea:focus ~ .bar {
    width: 100%;
}

.submit-btn {
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    padding: 1.5rem 3rem;
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.submit-btn::before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.submit-btn:hover::before {
    transform: translateY(0);
}

/* Booking Direct Links */
.booking-direct-links {
    margin-bottom: 4rem;
    text-align: left;
}

.direct-contact-label {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.direct-email-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.5vw, 3.5rem); /* Responsive size that scales with screen width */
    color: var(--color-accent);
    text-decoration: none;
    margin-bottom: 1rem;
    text-transform: uppercase;
    word-break: break-all;
    line-height: 1.1;
}

.press-kit-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-bg);
    background: var(--color-text);
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.press-kit-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* Footer Marquee */
.footer-marquee {
    border-top: 1px solid #333;
    padding: 2rem 0;
    overflow: hidden;
}

.scrolling-text {
    font-family: var(--font-display);
    font-size: 10vw;
    color: #222;
    white-space: nowrap;
    animation: marquee-reverse 30s linear infinite;
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .giant-heading { font-size: 4rem; }
    .hero-title { font-size: 24vw; }
    .line-2 { margin-left: 0; }

    .manifesto-line {
        font-size: clamp(2.5rem, 9.5vw, 5rem);
        gap: 0.8rem;
    }

    .manifesto-line.accent-text {
        white-space: nowrap;
    }
    
    .hero-section {
        height: 85vh; /* Reverted to a taller height for the new bandmobile.jpg */
        min-height: 500px;
    }

    .hero-img {
        object-position: center center; /* Reset to center since the image is already optimized */
    }

    .manifesto-section {
        padding: 4rem 5%;
    }

    .gig-row {
        padding-left: 1.5rem; /* Less padding on mobile to save space and prevent overflow */
    }

    .gig-bg-text {
        font-size: 20vw; /* Further reduced to improve fit on mobile Screens */
        -webkit-text-stroke: 2px rgba(255, 60, 0, 0.3);
        color: rgba(255, 60, 0, 0.2);
    }

    .vibe-gallery {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .vibe-item {
        height: auto;
        max-height: none;
    }

    .vibe-item img {
        height: auto;
        object-fit: initial;
    }
    
    .item-large, .item-tall, .item-wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .fullscreen-menu .menu-items a {
        font-size: 3rem;
    }
}

/* Custom Cursor Styles */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent);
    transition: all 0.1s ease-out; /* Super snappy */
}

/* Cursor Interaction States */
.cursor-outline.hover {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 60, 0, 0.1);
    border-color: var(--color-accent);
}

/* Hide on Mobile */
@media screen and (max-width: 768px) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
    body {
        cursor: auto !important;
    }
    a, button, .menu-btn {
        cursor: auto !important;
    }
}

/* Ensure links also have no cursor on desktop */
@media screen and (min-width: 769px) {
    a, button, .menu-btn, .gig-row, .vibe-item {
        cursor: none !important;
    }
}
