/* Modern Neon Design System - The Blues n'a Suitcase */
:root {
    --bg-dark: #050510;
    /* Darker black/blue background */
    --bg-card: #0d111c;
    --primary: #00f3ff;
    /* Neon Cyan */
    --secondary: #bd00ff;
    /* Neon Purple */
    --accent: #ff00ff;
    /* Neon Pink */
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --gradient-main: linear-gradient(135deg, #00f3ff, #bd00ff);
    --gradient-text: linear-gradient(to right, #00f3ff, #ff00ff, #bd00ff);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --neon-glow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.btn-primary:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
    transform: translateY(-3px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(93, 52, 240, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header & Nav */
header {
    background: rgba(10, 14, 23, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: block;
    /* Ensure it takes up space correctly */
    white-space: nowrap;
    /* Prevent wrapping */
}

.logo .accent {
    color: var(--primary);
    margin: 0 2px;
    /* Add breathing room around "n'a" */
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

nav a:not(.btn-nav):hover {
    color: var(--primary);
}

.btn-nav {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}



/* Hero Section Redesign */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 14, 23, 0.5), rgba(10, 14, 23, 0.8)), url('images/Hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    /* Important for floating orbs */
}

/* Moving Orbs Animation */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    animation-delay: 0s;
}

.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: var(--accent);
    opacity: 0.4;
    animation-delay: -10s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Content above visuals */
}

/* Hero Logo */
.hero-logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.4));
    mix-blend-mode: screen;
    /* Blends logo background */
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    from {
        filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.3));
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 25px rgba(189, 0, 255, 0.5));
        transform: scale(1.02);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    /* Reduced slightly to accommodate huge logo */
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    font-family: var(--font-body);
    /* Switch to modern font for this tagline */
    font-weight: 700;
    text-transform: uppercase;
}

.text-gradient {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-content p {
    font-size: 2.2rem;
    color: #f0f0f0;
    margin-bottom: 60px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

#about {
    background: radial-gradient(circle at 30% 50%, rgba(93, 52, 240, 0.25) 0%, rgba(10, 14, 17, 0) 70%);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--primary);
}

/* Media Section */
#media {
    background: linear-gradient(135deg, var(--bg-card) 0%, #0d111c 100%);
    position: relative;
    overflow: hidden;
}

#media::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(93, 52, 240, 0.15) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.media-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.hidden {
    display: none;
}

.gallery-content {
    animation: fadeIn 0.5s ease;
}

.video-grid,
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.audio-list {
    max-width: 800px;
    margin: 0 auto;
}

.audio-item {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Added for definition in dark mode */
}

.audio-item:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.track-info h4 {
    margin-bottom: 5px;
    color: white;
}

.track-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Events/Jam Section */
#jams {
    background: linear-gradient(rgba(93, 52, 240, 0.1), rgba(10, 14, 23, 0.95)), url('https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 150px 0;
}

.jam-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 14, 23, 0.85);
    /* Slightly darker for readability */
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jam-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.jam-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Event Cards - Dark Theme */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    /* Semi-transparent white */
    color: white;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.event-date {
    background: var(--bg-dark);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin-right: 20px;
    min-width: 80px;
    border: 1px solid var(--primary);
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.event-date .year {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.event-info h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.event-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info i {
    color: var(--primary);
    width: 20px;
}

.address-link {
    color: var(--primary);
    text-decoration: underline;
    font-size: 0.9rem;
    margin-top: 5px;
    display: inline-block;
}

.address-link:hover {
    color: white;
}


/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: white;
    font-family: var(--font-body);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-main);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: black;
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(93, 52, 240, 0.3);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.gallery-img {
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}


/* Animations Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

/* Tablet / Small Laptop Optimization */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        /* Use more screen width */
    }

    .hero-content h1 {
        font-size: 3.8rem;
        /* Scale down from 4.5rem */
    }

    .hero-logo {
        max-width: 400px;
        /* Scale down logo */
    }

    .about-grid,
    .contact-wrapper {
        gap: 30px;
        /* Reduce gap to prevent squishing */
    }
}

/* Mobile & Tablet Portrait */
@media (max-width: 900px) {
    .header-content {
        padding: 0 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(10, 14, 23, 0.98);
        width: 100%;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    nav ul.nav-active {
        display: flex;
    }

    /* Mobile Text & Spacing */
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    /* Reduce Orb size for performance & obscurement on mobile */
    .orb {
        filter: blur(60px);
        opacity: 0.4;
    }

    .orb-1 {
        width: 150px;
        height: 150px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
    }

    .orb-3 {
        width: 120px;
        height: 120px;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 60px 0;
        /* Tighten up spacing on mobile */
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .event-date {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        /* Full width date bar looks nice on mobile */
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 10px;
    }

    .event-date .day {
        font-size: 1.5rem;
    }

    .event-date .month,
    .event-date .year {
        font-size: 1rem;
    }

    .event-info p {
        justify-content: center;
        flex-wrap: wrap;
        /* Allow address to wrap */
    }
}