@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --primary: #e31e24;
    --primary-light: #ff3b3f;
    --primary-dark: #b71c1c;
    --accent: #e31e24;
    --accent-dark: #b71c1c;
    --accent-light: #ff5252;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-dark: #1a1a1a;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
}

/* Hero Section - Premium Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.65;
    margin-bottom: 1.5rem;
    padding-top: 0;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .name-first {
    font-size: 0.6em;
    display: block;
    margin-bottom: -0.25em;
    padding-top: 0.1em;
}

.hero-title .name-last {
    font-size: 1em;
    display: block;
}

.hero-title .name-first,
.hero-title .name-last {
    display: none;
}

.hero-title-image {
    display: none;
}

.hero-title-image-desktop {
    display: block;
    max-width: 85%;
    height: auto;
}

.hero-title-image-mobile {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    z-index: 2001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-wrapper {
    display: block;
}

.hero-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.nav-link {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1rem;
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: var(--transition);
    letter-spacing: -0.01em;
    border-radius: 8px;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(227, 30, 36, 0.05);
    transform: translateX(8px);
}

.nav-link:hover::before,
.nav-link.active::before {
    height: 100%;
}

.hero-footer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

.hero-footer p {
    margin-bottom: 0.4rem;
}

.hero-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.hero-footer a:hover {
    border-bottom-color: var(--accent);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s backwards;
    position: relative;
}

.mobile-logo-overlay {
    display: none;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2rem;
    background: linear-gradient(135deg, #e31e24 0%, #1a1a1a 100%);
    border-radius: 32px;
    opacity: 1;
    transform: rotate(-3deg);
    z-index: 0;
}

.hero-image::after {
    display: none;
}

.comedian-photo {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comedian-photo:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

/* Tours Section - Premium Dark Mode */
.tours {
    background: #000000;
    padding: 5rem 2rem 4rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    z-index: 10;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.tours::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.tours-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #000000;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: var(--text-light);
    display: inline-block;
    padding: 0.6rem 1.5rem;
    text-align: center;
}

.tours-list {
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.event-item {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 2rem;
    padding: 2rem 0;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0;
    align-items: center;
    transition: var(--transition);
}

.event-item:hover {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.4);
    transform: none;
    box-shadow: none;
}

.event-city {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: var(--text-light);
    text-transform: uppercase;
}

.event-details {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: left;
}

.event-details > div:first-child {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.event-time {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
}

.ticket-btn {
    background: var(--accent);
    color: var(--text-light);
    padding: 0.9rem 2rem;
    border: 3px solid #000000;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    box-shadow: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ticket-btn:hover {
    transform: scale(1.05);
    box-shadow: none;
    background: var(--accent-dark);
}

.newsletter {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-left: none;
    border-right: none;
    position: relative;
    z-index: 1;
}

.newsletter h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.subscribe-btn {
    background: var(--text-light);
    color: #000000;
    padding: 0.9rem 2.5rem;
    border: 3px solid #000000;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    transform: scale(1.05);
    box-shadow: none;
    background: #e0e0e0;
}

/* YouTube Section - Clean & Modern */
.youtube {
    background: #000000;
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.youtube-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title-youtube {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #000000;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: var(--text-light);
    display: inline-block;
    padding: 0.6rem 1.5rem;
    text-align: center;
}

.section-title-dark {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 6rem;
}

.videos-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.video-item {
    background: #1a1a1a;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex: 0 1 calc(33.333% - 1.67rem);
    min-width: 380px;
}

.video-item:hover {
    transform: scale(1.02);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-thumbnail:hover img {
    transform: scale(1.08);
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

.video-thumbnail:hover::after {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 32px rgba(227, 30, 36, 0.5);
}

.video-title {
    padding: 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.channel-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 250px;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    border-radius: 0;
}

.channel-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.channel-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--text-light);
    padding: 0.9rem 2rem;
    border-radius: 0;
    border: 3px solid #000000;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.youtube-channel-btn::before {
    content: '▶';
    font-size: 1rem;
}

.youtube-channel-btn:hover {
    transform: scale(1.05);
    box-shadow: none;
    background: var(--accent-dark);
}

/* Contact Section */
.contact {
    background: #000000;
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.contact-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.contact-header .section-title {
    cursor: pointer;
    transition: var(--transition);
}

.contact-header .section-title:hover {
    transform: scale(1.05);
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.social-section {
    position: relative;
    z-index: 1;
}

.social-title {
    color: var(--text-light);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    width: 80px;
    height: 80px;
    background: var(--text-light);
    color: #000000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 3px solid #000000;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
    background: var(--accent);
    border-color: #000000;
    color: var(--text-light);
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

/* Contact Modal Form Styles */
.modal .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.modal .form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal .form-group input,
.modal .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.contact-method-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method input[type="radio"] {
    display: none;
}

.contact-method span {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.contact-method:hover {
    border-color: var(--accent);
    background: rgba(227, 30, 36, 0.1);
}

.contact-method input[type="radio"]:checked + span {
    color: var(--accent);
}

.contact-method:has(input[type="radio"]:checked) {
    border-color: var(--accent);
    background: rgba(227, 30, 36, 0.15);
}

/* Responsive Design - Premium Mobile Experience */

@media (max-width: 1024px) {
    .hero-content {
        gap: 5rem;
    }

    .comedian-photo {
        max-width: 450px;
    }
}

@media (max-width: 1200px) {
    .burger-menu {
        display: flex !important;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 2000;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-wrapper .hero-nav {
        margin-bottom: 2rem;
    }

    .nav-wrapper .nav-link {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 0 0.75rem 1rem;
        border-left: 3px solid transparent;
        border-radius: 0;
    }

    .nav-wrapper .nav-link::before {
        display: none;
    }

    .nav-wrapper .nav-link:hover,
    .nav-wrapper .nav-link.active {
        color: var(--accent);
        background: rgba(227, 30, 36, 0.1);
        border-left-color: var(--accent);
        transform: translateX(0);
    }

    .nav-wrapper .hero-footer {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
        text-align: left;
    }

    .nav-wrapper .hero-footer a {
        color: rgba(255, 255, 255, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.3);
    }

    .nav-wrapper .hero-footer a:hover {
        border-bottom-color: var(--accent);
        color: var(--accent);
    }
}

@media (max-width: 968px) {
    .hero {
        padding: 0;
        min-height: 100vh;
        background: #e31e24;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        min-height: 120vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero-text {
        order: 2;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        /* z-index: 1; */
        padding: 0 1rem;
        padding-top: 0;
        padding-bottom: 5rem;
        background: transparent;
        animation: none;
        flex-shrink: 0;
    }

    .hero-image {
        order: 1;
        flex: 0 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        animation: none;
        z-index: 10;
        padding-top: 3rem;
        position: relative;
    }

    .mobile-logo-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 70%;
        width: auto;
        height: auto;
        z-index: 5;
    }

    .comedian-photo {
        transform: scale(1.1);
        max-width: 500px;
    }

    .hero-title {
        margin-bottom: 0;
        color: white;
        background: none;
        -webkit-text-fill-color: white;
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-title .name-first,
    .hero-title .name-last {
        display: none;
    }

    .hero-title-image-desktop {
        display: none;
    }

    .hero-title-image-mobile {
        display: block;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        position: absolute;
        top: 10vh;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100;
    }


    .hero-nav {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
    }

    .nav-link:hover,
    .nav-link.active {
        transform: translateX(0);
    }

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

    .tours {
        padding: 5rem 1.5rem;
        border-radius: 30px 30px 0 0;
    }

    .youtube {
        padding: 5rem 1.5rem;
    }

    .contact {
        padding: 2.5rem 1.5rem 2rem;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
        text-align: center;
    }

    .ticket-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .newsletter {
        padding: 3rem 2rem;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-title {
        margin-bottom: 1.5rem;
    }

    .hero-nav {
        gap: 0.25rem;
        margin-bottom: 1rem;
    }

    .nav-link {
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .nav-link::before {
        left: -1.5rem;
    }

    .hero-image {
        overflow: visible;
        border-radius: 0;
        margin: 0;
        width: 100%;
        position: relative;
    }

    .hero-image::before {
        display: none;
    }

    .hero-image::after {
        display: block;
        content: '';
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 60%;
        background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        border-radius: 0;
        z-index: 50;
        pointer-events: none;
    }

    .mobile-logo-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 70%;
        width: auto;
        height: auto;
        z-index: 5;
    }

    .comedian-photo {
        max-width: 100%;
        width: auto;
        height: 85vh;
        max-height: none;
        transform: scale(1);
        transform-origin: center bottom;
        border-radius: 0;
        object-fit: cover;
        object-position: center bottom;
        border: none;
        box-shadow: none;
        position: relative;
        z-index: 30;
    }

    .comedian-photo:hover {
        transform: none;
    }

    .tours {
        padding: 4rem 1rem;
        border-radius: 24px 24px 0 0;
    }

    .youtube {
        padding: 4rem 1rem;
    }

    .contact {
        padding: 2rem 1rem 1.5rem;
    }

    .section-title,
    .section-title-dark {
        margin-bottom: 3rem;
    }

    .event-item {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .ticket-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .newsletter {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .newsletter h3 {
        margin-bottom: 2rem;
    }

    .subscribe-btn {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 320px;
    }

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

    .video-item {
        border-radius: 20px;
    }

    .video-title {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .youtube-channel-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }

    .social-links {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .social-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0.75rem;
    }

    .tours {
        padding: 3rem 0.75rem;
        border-radius: 20px 20px 0 0;
    }

    .youtube {
        padding: 3rem 0.75rem;
    }

    .contact {
        padding: 1.5rem 0.75rem 1.5rem;
    }

    .event-item {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .newsletter {
        padding: 2rem 1rem;
        border-radius: 20px;
    }

    .social-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 968px) {
    .burger-menu {
        position: fixed !important;
        z-index: 9999 !important;
        top: 1rem !important;
        right: 1.5rem !important;
    }

    .nav-wrapper {
        position: fixed !important;
        z-index: 9998 !important;
    }
}

/* Invite Modal (Call/WhatsApp) */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    padding: 2rem 1rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border: 3px solid var(--accent);
    padding: 3rem 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    text-align: center;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.invite-simple {
    background: var(--text-light);
    border: none;
    max-width: 600px;
    padding: 4rem 3rem;
}

.invite-simple .modal-close {
    color: var(--accent) !important;
}

.invite-title {
    color: var(--accent) !important;
    margin-bottom: 2rem;
}

.invite-phone-simple {
    color: var(--text-primary);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    margin: 0 0 2.5rem 0;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.invite-phone-simple:hover {
    color: var(--accent);
}

.wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--text-light);
    padding: 1rem 2rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
}

.wa-button svg {
    width: 24px;
    height: 24px;
}

.wa-button:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

.modal-close-dark {
    color: var(--accent);
    background: transparent;
}

.modal-close-dark:hover {
    color: var(--accent-dark);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h2 {
    color: var(--text-light);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.submit-btn {
    width: 100%;
    background: var(--accent);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: 3px solid #000000;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: scale(1.02);
    background: var(--accent-dark);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.error-message {
    color: #ff5252;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
    text-align: center;
}

.error-message.show {
    display: block;
}

.success-message {
    color: #4caf50;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
    text-align: center;
}

.success-message.show {
    display: block;
}

@media (max-width: 640px) {
    .modal {
        padding: 1rem 0.5rem;
        align-items: flex-start;
    }

    .modal-content {
        padding: 3rem 1.25rem 2rem;
        width: 95%;
        max-height: 85vh;
        margin: 1rem auto;
    }

    .modal-close {
        font-size: 2.5rem;
        width: 44px;
        height: 44px;
        top: 0.5rem;
        right: 0.5rem;
        z-index: 10;
    }

    .modal-close-dark {
        background: transparent;
    }

    .contact-method-options {
        flex-direction: column;
    }

    .invite-phone-simple {
        font-size: 1.5rem;
    }

    .invite-simple {
        padding: 3.5rem 1.5rem 3rem;
    }
}
