@font-face {
    font-family: 'Bright Retro';
    src: url('../assets/bright-demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Machina';
    src: url('../assets/NeueMachina-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../assets/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../assets/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../assets/GlacialIndifference-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Color Palette - Original Wix Scheme */
    --bg-dark: #ffffff;
    --bg-darker: #f9f9f9;
    --primary: #02704B;
    /* Emerald Green */
    --secondary: #A8DEEA;
    /* Light Blue */
    --accent: #FE2106;
    /* Vibrant Red */
    --text-light: #000000;
    /* Main Text */
    --text-muted: #555555;
    /* Secondary Text */

    /* Subtle Glassmorphism for light theme */
    --glass-bg: rgba(255, 255, 255, 1);
    --glass-border: transparent;
    --glass-shadow: none;

    /* Typography */
    --font-heading: 'Bright Retro', serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-nav: 'Space Grotesk', sans-serif;
    --font-label: 'Raleway', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --font-paragraph: 'Neue Machina', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-paragraph);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography base */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Ensure all paragraph and body copy uses Neue Machina sitewide */
p,
li,
span:not(.kaleido-text span) {
    font-family: var(--font-paragraph);
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Kaleido Colorful Text Effect */
.kaleido-text {
    display: inline-block;
}

.kaleido-text span:nth-child(6n+1) {
    color: #E85D04;
}

/* Orange */
.kaleido-text span:nth-child(6n+2) {
    color: #A8DEEA;
}

/* Light Blue */
.kaleido-text span:nth-child(6n+3) {
    color: #02704B;
}

/* Dark Green */
.kaleido-text span:nth-child(6n+4) {
    color: #F87CA9;
}

/* Pink */
.kaleido-text span:nth-child(6n+5) {
    color: #FABC05;
}

/* Yellow */

.kaleido-text span:nth-child(6n+6) {
    color: #FE2106;
}

/* Red */

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: none;
}

.btn-primary::before {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 4, 25, 0.3);
    /* Vibrant Red shadow */
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Layout Core */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Screen reader only utility class for accessibility and SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-dark {
    background-color: var(--bg-darker);
}

/* Glassmorphism Classes */
.glass-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem;
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--bg-darker);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    color: #000000;
}

.nav-link {
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a.btn-primary:hover::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links a.btn-primary {
    color: #ffffff;
    /* Override nav-link black color */
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: var(--primary);
    box-shadow: none;
}

.nav-links a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 4, 25, 0.3);
    /* Vibrant Red shadow */
}

.nav-links a.btn-primary:hover::after {
    display: none;
}

/* Hero Section */
/* =========================================
   Hero Section Natively Written Reviews
   ========================================= */
.hero-native {
    position: relative;
    margin-top: 80px;
    /* Offset for fixed navbar height */
    background: url('../assets/hero.webp') center bottom / contain no-repeat;
    width: 100%;
    min-height: 70vh;
    /* Keep the 70vh height preference */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #000;
}

.hero-reviews {
    background-color: #000;
    padding: 1rem 0;
    /* Removed subtle border causing "white line" reported by user */
    margin-top: -1px;
    /* Eliminate any sub-pixel gap exposing white body background */
    width: 100%;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    padding-left: 4rem;
    /* To match gap and provide seamless loop */
    animation: scroll-marquee 60s linear infinite;
    align-items: center;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
    /* Pause on hover */
}

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

    100% {
        transform: translateX(-100%);
    }
}

.review-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: max-content;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: scale(1.05);
    /* subtle interaction */
}

.review-card .stars {
    color: #ff0000;
    /* Red stars to match reference */
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    line-height: 1;
}

.review-card .rev {
    font-family: 'Oswald', 'Outfit', sans-serif;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
}

.logo-card {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

/* Typography styles — white for image background */
.rev.text-dark {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.rev.text-light {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rev.size-xl {
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    /* Reduced from 1.5rem/3vw/2.5rem */
}

.rev.size-l {
    font-size: clamp(1rem, 1.8vw, 1.6rem);
    /* Reduced from 1.2rem/2vw/1.8rem */
}

.rev.size-m {
    font-size: clamp(0.8rem, 1.3vw, 1.1rem);
    /* Reduced from 0.9rem/1.5vw/1.3rem */
}

.rev.size-s {
    font-size: clamp(0.65rem, 0.9vw, 0.9rem);
    /* Reduced from 0.7rem/1vw/1rem */
}

.rev.size-xs {
    font-size: clamp(0.6rem, 0.8vw, 0.8rem);
}

.hero-logo-wrapper {
    flex: 0 1 450px;
    text-align: center;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-image-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

/* Vertical text styles for extra artistic flair */
.vertical-l {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.vertical-r {
    writing-mode: vertical-rl;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-paragraph);
    line-height: 1.8;
}

.about-text .lead {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 400;
    font-family: var(--font-paragraph);
}

.about-visual h3 {
    font-style: italic;
    color: var(--secondary);
    font-size: 1.8rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--text-light);
    color: #ffffff;
    border-color: var(--text-light);
}

#social-instagram:hover  { background: #e1306c; border-color: #e1306c; color: #fff; }
#social-facebook:hover   { background: #1877f2; border-color: #1877f2; color: #fff; }
#social-youtube:hover    { background: #ff0000; border-color: #ff0000; color: #fff; }
#social-tiktok:hover     { background: #010101; border-color: #010101; color: #fff; }
#social-newsletter:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Footer social buttons — inverted for dark background */
.footer-social .social-btn {
    color: #cccccc;
    border-color: #cccccc;
}

#footer-social-instagram:hover  { background: #e1306c; border-color: #e1306c; color: #fff; }
#footer-social-facebook:hover   { background: #1877f2; border-color: #1877f2; color: #fff; }
#footer-social-youtube:hover    { background: #ff0000; border-color: #ff0000; color: #fff; }
#footer-social-tiktok:hover     { background: #cccccc; border-color: #cccccc; color: #111; }
#footer-social-newsletter:hover { background: var(--primary); border-color: var(--primary); color: #fff; }


/* Shows Grid */
.shows-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.show-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--bg-darker);
    border-left: 4px solid var(--primary);
}

.show-card:hover {
    border-left-color: var(--secondary);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.show-date .month {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Neue Machina', sans-serif;
}

.show-date .day {
    font-size: 2.5rem;
    font-weight: 300;
    font-family: 'Neue Machina', sans-serif;
    line-height: 1;
}

.show-details {
    flex-grow: 1;
    margin: 0 2rem;
}

.show-details h3 {
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 400;
}

.show-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    gap: 1rem;
}

.show-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Cast Section */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.cast-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cast-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* Restoring perfect circles to hide original raw image cuts/lines */
    object-fit: cover;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.about-img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

/* Quotes Banner Separator */
.quotes-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #000;
}

.quotes-banner img {
    width: 100%;
    display: block;
    object-fit: contain;
}

.cast-info h3 {
    font-size: 1.4rem;
    font-family: var(--font-label);
    margin-bottom: 0.2rem;
    color: var(--text-light);
}

.cast-info h3 span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
    font-family: var(--font-label);
}

.cast-info .role {
    display: block;
    color: var(--secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-label);
}

.cast-info p {
    text-align: justify;
    color: var(--text-muted);
    font-size: 0.80rem;
}

/* Footer */
.footer {
    padding: 4rem 5%;
    background: #111;
    color: #cccccc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-newsletter h4,
.footer-links h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-newsletter p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Loaders and Helpers */
.loader-container {
    padding: 3rem;
    text-align: center;
    color: var(--text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        /* Show hamburger on mobile */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--bg-darker);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #000000 !important;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-actions {
        flex-direction: column;
    }

    .show-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .show-details {
        margin: 0;
    }

    .cast-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cast-img {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    /* Adjust hero for mobile */
    .hero-native {
        min-height: auto;
        height: auto;
        aspect-ratio: 3 / 2;
        /* Natural aspect ratio of the photo */
        background-size: cover;
        padding: 0;
    }

    .hero-reviews {
        padding: 0.5rem 10px 1.5rem 10px;
        /* Minimized spacing */
    }

    .reviews-wrapper {
        gap: 6px 12px;
        /* Tightened "word cloud" on mobile */
    }

    .rev.size-xl {
        font-size: 1rem;
        /* Reduced from 1.1rem */
    }

    .rev.size-l {
        font-size: 0.85rem;
        /* Reduced from 0.95rem */
    }

    .rev.size-m {
        font-size: 0.7rem;
        /* Reduced from 0.8rem */
    }

    .rev.size-s {
        font-size: 0.58rem;
        /* Reduced from 0.65rem */
    }

    .rev.size-xs {
        font-size: 0.48rem;
        /* Reduced from 0.55rem */
    }

    .hero-logo-wrapper {
        flex-basis: 150px;
        margin: 5px 0;
    }

    .hero-image-logo {
        max-width: 120px;
    }

    .vertical-l,
    .vertical-r {
        display: none;
    }

    /* Disable animation on mobile to prevent elements failing to intersect and appearing as white space */
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}