/* ============================================
   MIXSY CLUB - CONVERSION-OPTIMIZED STYLES
   Dark artsy theme | Designed for max bookings
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #161616;
    --bg-footer: #000000;
    --bg-section-alt: #111111;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --accent-red: #A40000;
    --accent-red-hover: #c20000;
    --accent-warm: #e84545;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover-bg: rgba(255, 255, 255, 0.06);
    --separator-color: rgba(255, 255, 255, 0.3);
    --font-heading: 'Cabin', arial, sans-serif;
    --font-body: 'Lato', arial, sans-serif;
    --max-width: 1300px;
    --section-padding: 80px 40px;
}

html {
    /* Removed scroll-behavior: smooth to prevent lag on mobile/slower devices */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Performance optimizations */
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    /* Performance optimization */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

video {
    max-width: 100%;
    display: block;
    /* Performance optimization */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Performance optimizations for sections */
section {
    contain: layout style;
}

/* Reduce motion for accessibility and performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- HEADER ---------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    /* Performance optimizations */
    will-change: transform, background;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo-img {
    height: 180px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
    /* Performance optimization */
    will-change: transform, height;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

#logo-link:hover #logo-img {
    transform: scale(1.04) translateZ(0);
}

/* Header CTA - hidden initially */
.header-cta {
    display: inline-block;
    padding: 10px 28px;
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
}

.header-cta:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

/* Sticky header */
#header.header-sticky {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 10px 28px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Fix glitching */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    isolation: isolate;
}

#header.header-sticky #logo-img {
    height: 56px;
}

#header.header-sticky .header-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ---------- HERO SECTION ---------- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px 100px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero-tagline {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

#hero-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* ---------- HERO CTA ---------- */
.hero-cta {
    display: inline-block;
    padding: 18px 52px;
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 30px rgba(164, 0, 0, 0.4);
}

.hero-cta:hover {
    background: var(--accent-red-hover);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 40px rgba(164, 0, 0, 0.55);
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(14px);
        opacity: 0.3;
    }
}

/* ---------- SOCIAL PROOF STRIP ---------- */
#social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 36px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.proof-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-warm);
    letter-spacing: 1px;
}

.proof-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- EVENT SECTIONS ---------- */
.event-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--section-padding);
}

.event-section:nth-child(odd) {
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 36px;
}

/* ---------- EVENT CARD ---------- */
.event-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: var(--card-bg);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    background: var(--card-hover-bg);
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #0e0e0e;
}

.event-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image-wrapper img {
    transform: scale(1.04);
}

/* ---------- URGENCY BADGE ---------- */
.urgency-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 2px 12px rgba(164, 0, 0, 0.5);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 2px 12px rgba(164, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 2px 20px rgba(164, 0, 0, 0.8);
    }
}

/* ---------- CARD CTA OVERLAY ---------- */
.card-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(164, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
    z-index: 2;
}

.card-cta-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.event-card:hover .card-cta-overlay {
    opacity: 1;
}

.event-card:hover .card-cta-overlay span {
    transform: scale(1.05);
}

/* ---------- EVENT INFO ---------- */
.event-info {
    padding: 16px 6px 10px;
}

.event-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 12px;
}

.event-title-row h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.event-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-warm);
    white-space: nowrap;
}

.event-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---------- INSTAGRAM REELS SECTION ---------- */
#videos {
    background: var(--bg-section-alt);
    padding: var(--section-padding);
}

#videos .section-header {
    position: relative;
    padding-bottom: 20px;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-top: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(188, 24, 136, 0.5);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 9 / 16;
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.workshop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.load-more-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: #fff;
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(156, 80, 255, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(156, 80, 255, 0.5);
}

.load-more-btn:active {
    transform: translateY(0);
}

/* ---------- GALLERY SECTION ---------- */
#gallery {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

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

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- VENUES SECTION ---------- */
#venues {
    background: var(--bg-section-alt);
    padding: var(--section-padding);
}

#venues .section-header {
    margin-bottom: 50px;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1000px;
    margin: 0 auto;
}

.venue-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.3s ease;
}

.venue-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.venue-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.venue-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.venue-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    white-space: nowrap;
}

.venue-tag-new {
    background: rgba(232, 69, 69, 0.15);
    color: var(--accent-warm);
}

.venue-address {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.venue-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-red);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.venue-directions-btn:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
}

.venue-map {
    border-radius: 8px;
    overflow: hidden;
}

.venue-map iframe {
    display: block;
}

/* ---------- CONTACT SECTION ---------- */
#contact {
    background: var(--bg-footer);
    padding: var(--section-padding);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto 30px;
}

#contact-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

#contact-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.contact-social {
    margin-top: 20px;
}

.contact-social p {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-social a {
    color: var(--accent-warm);
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-social a:hover {
    color: #fff;
}

/* ---------- FOOTER ---------- */
#footer {
    background: var(--bg-footer);
    padding: 40px 40px 36px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-separator {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px auto 0;
}

/* ---------- FLOATING SOCIAL BUTTONS ---------- */
.floating-whatsapp,
.floating-instagram {
    position: fixed;
    right: 28px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.floating-whatsapp {
    bottom: 28px;
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-instagram {
    bottom: 104px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.4);
    animation: floatPulseInsta 3s ease-in-out infinite 0.5s;
}

.floating-whatsapp:hover {
    transform: scale(1.12) translateZ(0);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.floating-instagram:hover {
    transform: scale(1.12) translateZ(0);
    box-shadow: 0 6px 28px rgba(188, 24, 136, 0.55);
}

@keyframes floatPulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65);
    }
}

@keyframes floatPulseInsta {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(188, 24, 136, 0.4);
    }
    50% {
        box-shadow: 0 4px 28px rgba(188, 24, 136, 0.65);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }

    .venues-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
    }

    #hero-tagline {
        font-size: 56px;
    }

    :root {
        --section-padding: 60px 30px;
    }
}

@media (max-width: 640px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px;
    }

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

    #header {
        padding: 12px 16px;
        /* Reduce blur on mobile for better performance */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    #header.header-sticky {
        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 8px 16px;
    }

    #logo-img {
        height: 110px;
    }

    #header.header-sticky #logo-img {
        height: 42px;
    }

    .header-cta {
        font-size: 12px;
        padding: 8px 18px;
    }

    #hero-tagline {
        font-size: 40px;
        letter-spacing: 2px;
    }

    #hero-subtitle {
        font-size: 16px;
    }

    .hero-content {
        padding: 0 16px 80px;
    }

    .hero-cta {
        font-size: 15px;
        padding: 15px 38px;
    }

    #social-proof {
        gap: 16px;
        padding: 24px 12px;
        flex-wrap: wrap;
    }

    .proof-number {
        font-size: 22px;
    }

    .proof-label {
        font-size: 10px;
    }

    .proof-divider {
        height: 28px;
    }

    :root {
        --section-padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 15px;
    }

    .event-title-row h3 {
        font-size: 17px;
    }

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

    .venue-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    #contact-heading {
        font-size: 26px;
    }

    .floating-whatsapp,
    .floating-instagram {
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp {
        bottom: 20px;
    }

    .floating-instagram {
        bottom: 88px;
    }

    .floating-whatsapp svg,
    .floating-instagram svg {
        width: 24px;
        height: 24px;
    }
}