:root {
    --bg-color: #121212;
    --bg-secondary: #1e1e1e;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-color: #f39c12; /* Orange/Gold */
    --accent-hover: #d35400;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-width: 1200px;
    --spacing-unit: 2rem;
}

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; font-weight: 700; text-transform: uppercase; border-bottom: 3px solid var(--accent-color); display: inline-block; padding-bottom: 0.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; color: var(--accent-color); }

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

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

/* Header */
.site-header {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Needed for absolute positioning of lang switcher */
}

.logo {
    display: flex;
    justify-content: center;
}

.language-switcher {
    position: absolute;
    right: var(--spacing-unit);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: var(--accent-color);
}

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

.logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    border: 3px solid var(--accent-color);
    padding: 0.5rem 2rem;
    letter-spacing: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.2);
}

.logo-placeholder:hover {
    background-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 25px rgba(243, 156, 18, 0.6);
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(-45deg, #0f0f0f, #1a1a1a, #2c2c2c, #141414);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dynamic background overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    animation: pulseGlow 5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.2); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Glitch Effect for H1 */
.glitch {
    position: relative;
    display: inline-block;
    color: #fff;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(30px, 9999px, 10px, 0); }
    5% { clip: rect(80px, 9999px, 90px, 0); }
    10% { clip: rect(10px, 9999px, 40px, 0); }
    15% { clip: rect(50px, 9999px, 20px, 0); }
    20% { clip: rect(10px, 9999px, 80px, 0); }
    25% { clip: rect(90px, 9999px, 10px, 0); }
    30% { clip: rect(20px, 9999px, 60px, 0); }
    35% { clip: rect(70px, 9999px, 30px, 0); }
    40% { clip: rect(40px, 9999px, 90px, 0); }
    45% { clip: rect(60px, 9999px, 10px, 0); }
    50% { clip: rect(10px, 9999px, 50px, 0); }
    55% { clip: rect(80px, 9999px, 20px, 0); }
    60% { clip: rect(30px, 9999px, 70px, 0); }
    65% { clip: rect(50px, 9999px, 40px, 0); }
    70% { clip: rect(90px, 9999px, 10px, 0); }
    75% { clip: rect(20px, 9999px, 80px, 0); }
    80% { clip: rect(60px, 9999px, 30px, 0); }
    85% { clip: rect(40px, 9999px, 90px, 0); }
    90% { clip: rect(70px, 9999px, 20px, 0); }
    95% { clip: rect(10px, 9999px, 60px, 0); }
    100% { clip: rect(50px, 9999px, 40px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(60px, 9999px, 10px, 0); }
    5% { clip: rect(20px, 9999px, 80px, 0); }
    10% { clip: rect(90px, 9999px, 30px, 0); }
    15% { clip: rect(10px, 9999px, 60px, 0); }
    20% { clip: rect(50px, 9999px, 20px, 0); }
    25% { clip: rect(30px, 9999px, 90px, 0); }
    30% { clip: rect(80px, 9999px, 40px, 0); }
    35% { clip: rect(40px, 9999px, 70px, 0); }
    40% { clip: rect(70px, 9999px, 10px, 0); }
    45% { clip: rect(20px, 9999px, 50px, 0); }
    50% { clip: rect(60px, 9999px, 30px, 0); }
    55% { clip: rect(10px, 9999px, 80px, 0); }
    60% { clip: rect(50px, 9999px, 20px, 0); }
    65% { clip: rect(90px, 9999px, 60px, 0); }
    70% { clip: rect(30px, 9999px, 10px, 0); }
    75% { clip: rect(70px, 9999px, 40px, 0); }
    80% { clip: rect(20px, 9999px, 90px, 0); }
    85% { clip: rect(80px, 9999px, 30px, 0); }
    90% { clip: rect(40px, 9999px, 70px, 0); }
    95% { clip: rect(60px, 9999px, 20px, 0); }
    100% { clip: rect(10px, 9999px, 50px, 0); }
}

.hero-text .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(243, 156, 18, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 25px 25px 0 rgba(243, 156, 18, 0.2);
}

.image-placeholder {
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
    border: 2px dashed #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.image-placeholder.portrait {
    width: 100%;
    height: 550px;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(243, 156, 18, 0.1);
}

.image-placeholder.landscape {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Show Section */
.show-section {
    background: linear-gradient(to bottom, #1e1e1e, #121212);
    position: relative;
    padding: 6rem 0;
}

.show-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.show-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.show-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.show-text strong {
    color: #fff;
    font-size: 1.3rem;
    display: block;
    margin-top: 1rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.equipment-list {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.equipment-list h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.equipment-list ul {
    list-style: none;
}

.equipment-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #eee;
}

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

.equipment-list li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 15px;
    font-weight: 900;
    font-size: 1.2rem;
}

.show-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.show-images .image-placeholder {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: none;
    transition: transform 0.4s ease;
}

.show-images .image-placeholder:hover {
    transform: scale(1.02);
}

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

/* Concept Section */
.concept-section {
    background-color: var(--bg-color);
    position: relative;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.concept-text {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 1.5rem;
    display: block;
    font-size: 1.1rem;
    border-top: 1px solid rgba(243, 156, 18, 0.3);
    padding-top: 1rem;
}

/* Previous Shows */
.previous-shows-section {
    background-color: var(--bg-secondary);
    text-align: center;
    padding-bottom: 6rem;
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.2rem;
}

.shows-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.shows-list li {
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.shows-list li:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    border-color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-color);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.contact-container {
    max-width: 1000px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-item strong {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

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

/* Footer */
.site-footer {
    background-color: #000;
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .language-switcher {
        position: static; /* Stack normally on mobile */
        margin-top: 0.5rem;
    }

    .nav-left, .nav-right {
        text-align: center;
        padding: 0;
        width: 100%;
    }

    /* Reorder for mobile: Logo first, then links */
    .logo { order: 1; }
    .nav-left { order: 2; }
    .nav-right { order: 3; }

    .hero-grid, .show-content, .concept-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-section {
        text-align: center;
        padding-top: 6rem; /* Space for fixed header */
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-img {
        height: auto;
        max-height: 500px;
        box-shadow: 10px 10px 0 rgba(243, 156, 18, 0.1);
    }

    .hero-text, .hero-image {
        display: contents;
    }

    .hero-text h1 { order: 1; }
    .hero-text .lead { order: 2; }
    .hero-image .image-placeholder { order: 3; margin: 2rem 0; }
    .hero-text p:not(.lead) { order: 4; }
    .hero-text .btn { order: 5; }

    .image-placeholder.portrait {
        height: 400px;
    }

    h1 { font-size: 2rem; }
    
    .main-nav ul {
        gap: 1rem;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}



/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #fff;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
}

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

/* Media Section */
.media-section {
    background-color: var(--bg-secondary);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 250px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: var(--accent-color);
    z-index: 10;
}

/* Video Section */
.video-section {
    background-color: var(--bg-color);
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (matches 1920x1080) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 2rem auto 0;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid #333;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
