:root {
    --primary-color: #f6c945;
    --secondary-color: #f16f2a;
    --bg-color: #0d0b08;
    --text-color: #ffffff;
    --muted-text: rgba(255, 255, 255, 0.72);
    --card-bg: rgba(26, 22, 17, 0.86);
    --card-border: rgba(246, 201, 69, 0.18);
    --accent-color: #d7332f;
    --surface-color: #17130f;
    --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.45);
    --section-max: 1180px;
}

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

body {
    background:
        radial-gradient(circle at 8% 8%, rgba(246, 201, 69, 0.14), transparent 28rem),
        radial-gradient(circle at 92% 18%, rgba(215, 51, 47, 0.12), transparent 30rem),
        linear-gradient(180deg, #0d0b08 0%, #14100c 48%, #0d0b08 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

/* Header & Nav */
header {
    background: rgba(13, 11, 8, 0.78);
    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: 1px solid rgba(246, 201, 69, 0.22);
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

header.scrolled {
    background: rgba(13, 11, 8, 0.94);
    padding: 0.6rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* 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-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s, opacity 0.3s;
}

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

nav a.active {
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: var(--bg-color);
    padding: 120px 10% 72px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -5%;
    z-index: 0;
    background: url('images/leo-25.jpeg') center/cover no-repeat;
    transform: scale(1.04);
    animation: hero-background-drift 18s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
                radial-gradient(circle at 78% 72%, rgba(246, 201, 69, 0.12) 0 16rem, transparent 17rem),
                linear-gradient(90deg, rgba(13, 11, 8, 0.98) 0%, rgba(13, 11, 8, 0.72) 43%, rgba(13, 11, 8, 0.4) 100%),
                linear-gradient(0deg, rgba(13, 11, 8, 1) 0%, rgba(13, 11, 8, 0) 30%);
    pointer-events: none;
}

.hero-content {
    width: min(760px, 100%);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(4.2rem, 10vw, 9rem);
    font-weight: 400;
    line-height: 0.88;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    text-shadow: 0.06em 0.06em 0 var(--accent-color);
}

.hero p {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    max-width: 680px;
    margin-bottom: 2.5rem;
    color: var(--muted-text);
}

.eyebrow {
    color: var(--secondary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero .eyebrow {
    margin-bottom: 1rem;
}

.section-eyebrow {
    text-align: center;
    margin-bottom: 0.4rem;
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), #ffe884);
    color: #000;
    padding: 1rem 2.5rem;
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 232, 132, 0.45);
    box-shadow: 0 16px 30px rgba(246, 201, 69, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 20px 42px rgba(241, 111, 42, 0.26);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero-proof span {
    padding: 0.55rem 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.86rem;
}

.hero-proof strong {
    color: var(--primary-color);
}

@keyframes hero-background-drift {
    0% {
        transform: scale(1.04) translate3d(-1.5%, -1%, 0);
        background-position: 48% 50%;
    }

    50% {
        transform: scale(1.08) translate3d(1.5%, 0.5%, 0);
        background-position: 54% 48%;
    }

    100% {
        transform: scale(1.06) translate3d(0, 1.5%, 0);
        background-position: 50% 53%;
    }
}

/* Sections */
section {
    padding: 110px max(5%, calc((100% - var(--section-max)) / 2));
    position: relative;
}

h2 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(3rem, 7vw, 5.6rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--muted-text);
    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;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--card-border);
    border-radius: 32px;
    box-shadow: var(--shadow-strong);
}

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

.bio-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: 14px 14px 0 rgba(246, 201, 69, 0.88);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

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

.bio-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--muted-text);
}

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 110px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
}

.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: 22px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    border: 1px solid var(--card-border);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.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: auto;
    height: 100%;
    min-height: 300px;
}

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

.video-desc {
    padding: 0 1.2rem 1rem;
    color: var(--muted-text);
    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;
}

/* Featured Show */
.featured-show {
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-strong);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.featured-show:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.featured-show a {
    display: block;
    position: relative;
}

.featured-show img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.featured-show-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-show-badge {
    background: var(--primary-color);
    color: #130f09;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.featured-show-badge i {
    margin-right: 0.3rem;
}

.featured-show-cta {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.featured-show:hover .featured-show-cta {
    color: var(--primary-color);
}

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

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

.show-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(40, 32, 22, 0.92);
}

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

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

.show-location {
    color: var(--muted-text);
    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 (Masonry-style) */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 0.9rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item[data-size="tall"] {
    grid-row: span 2;
}

.gallery-item[data-size="wide"] {
    grid-column: span 2;
}

.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;
}

.gallery-load-more {
    font-size: 1rem;
    padding: 0.8rem 2rem;
}

/* 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 var(--card-border);
    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 rgba(246, 201, 69, 0.16);
    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: 4.2rem;
    }

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

    h2 {
        font-size: 3.2rem;
    }

    section {
        padding: 72px 5%;
    }

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

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

    .bio-stats {
        justify-content: stretch;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .stat {
        flex: 1 1 30%;
    }

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

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

    .featured-show {
        max-width: 100%;
    }

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

    .gallery-item[data-size="wide"] {
        grid-column: span 2;
    }

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

    .hero {
        min-height: 92vh;
        padding: 112px 5% 56px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(13, 11, 8, 0.72), rgba(13, 11, 8, 0.96));
    }

    .cta-button {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-item[data-size="wide"] {
        grid-column: auto;
    }

    .gallery-item[data-size="tall"] {
        grid-row: auto;
    }

    .featured-show-overlay {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none;
        transform: scale(1.04);
    }
}

/* 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;
}

/* Scroll Fade-in Animations */
section.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

section.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
