:root {
    --primary-color: #f5d142;
    --secondary-color: #ff8c00;
    --bg-color: #121212;
    --text-color: #ffffff;
    --card-bg: #1e1e1e;
    --accent-color: #ff0055;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Header & Nav */
header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(18,18,18,0.8)),
                url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    padding: 0 5%;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 4px 4px 0px var(--secondary-color);
}

.hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: scale(1.05) rotate(-1deg);
    background-color: var(--secondary-color);
}

.cta-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.cta-secondary:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

/* Sections */
section {
    padding: 100px 10%;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-subtitle a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.section-subtitle a:hover {
    text-decoration: underline;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Biography */
.bio-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.bio-image {
    flex: 1;
    min-width: 280px;
}

.bio-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 10px 10px 0 var(--primary-color);
}

.bio-text {
    flex: 1;
    min-width: 280px;
}

.bio-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.bio-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.video-featured {
    grid-row: 1 / 3;
}

.video-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid #333;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-featured .video-wrapper {
    aspect-ratio: 16 / 10;
    height: 100%;
}

.video-title {
    padding: 1rem 1.2rem 0.3rem;
    font-size: 1.1rem;
}

.video-desc {
    padding: 0 1.2rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.video-card:last-child .video-title,
.video-card:nth-child(2) .video-title {
    padding-bottom: 1rem;
}

/* Lite YouTube Embed (facade pattern) */
lite-youtube {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    position: relative;
}

lite-youtube::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
}

.lite-youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    cursor: pointer;
    width: 68px;
    height: 48px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

lite-youtube:hover .lite-youtube-play {
    opacity: 1;
}

lite-youtube.activated {
    cursor: default;
}

lite-youtube.activated::before,
lite-youtube.activated .lite-youtube-play {
    display: none;
}

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

.show-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.show-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.show-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.show-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.show-location {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.show-cta {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

.no-shows {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-shows i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.no-shows p {
    font-size: 1.2rem;
}

.no-shows-sub {
    font-size: 1rem !important;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Gallery (Instagram Style) */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 2rem;
    color: #fff;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact & Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 50px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.social-links a span {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(245, 209, 66, 0.2);
}

.social-links a:hover i {
    color: #000;
}

/* Footer */
footer {
    padding: 40px 10%;
    text-align: center;
    border-top: 1px solid #333;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 100px 2rem 2rem;
        transition: right 0.35s ease;
        border-left: 2px solid var(--primary-color);
    }

    #main-nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav a {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 5%;
    }

    .bio-container {
        flex-direction: column;
        gap: 2rem;
    }

    .bio-image,
    .bio-text {
        min-width: unset;
    }

    .bio-stats {
        justify-content: center;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-featured {
        grid-row: auto;
    }

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

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
