/* ================================
   Custom Fonts
   ================================ */
@font-face {
    font-family: 'Malvides';
    src: url('public/Malvides.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Impact';
    src: url('public/Impact.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AvenirCondensedHand';
    src: url('public/AvenirCondensedHand.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Brigends-style: nav, buttons, events, cards (Bebas Neue = expanded caps) */
.font-brigends {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* ================================
   Reset & Base Styles
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================
   AJAY Brand - Color System
   Black • Red • Stone • Dark mode always
   ================================ */
:root {
    --color-black: #000000;
    --color-red: #ed1f24;
    --color-stone: #d0c5c5;
    --color-white: #ffffff;
    --primary-color: #000000;
    --secondary-color: #d0c5c5;
    --dark-bg: #000000;
    --dark-bg-alt: #0a0a0e;
    --dark-bg-gradient: radial-gradient(circle at top, #1b1b1f 0%, #0e0e11 45%, #000000 100%);
    --light-bg: #000000;
    --text-light: #ffffff;
    --text-body: #d0c5c5;
    --text-gray: #d0c5c5;
    --accent: #ed1f24;
    --accent-gold: #ed1f24;
    --accent-purple: #ed1f24;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', 'Avenir', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
    color: var(--text-body);
    background: var(--color-black);
    overflow-x: hidden;
    min-height: 100svh;
    position: relative;
    padding-top: 0;
}

/* Red glow overlay - brand */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 520px at 15% 20%, rgba(237, 31, 36, 0.18), transparent 60%),
        radial-gradient(700px 480px at 85% 80%, rgba(237, 31, 36, 0.08), transparent 65%),
        linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.92));
    pointer-events: none;
}

/* Subtle grain texture overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.10;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='60' height='60' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

/* Add padding-top on non-home pages to push content below navbar */
/* Pages with hero sections should have no padding-top so hero extends behind navbar */
body:not(.home-page):not(.wedding-page):not(.culture-page):not(.mixes-page):not(.playlists-page) {
    padding-top: 80px;
}

/* Pages with hero sections: no padding-top so hero can extend behind navbar */
body.home-page,
body.wedding-page,
body.culture-page,
body.mixes-page,
body.playlists-page {
    padding-top: 0;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbar from shifting fixed elements */
}

/* Ensure playlists hero section is visible below navbar */
body.playlists-page .playlists-hero-section {
    padding-top: 120px !important;
    scroll-margin-top: 100px;
}

body.playlists-page .playlists-hero-section .container {
    padding-top: 0;
    margin-top: 0;
}

/* Reduce scroll indicator visibility in playlists hero */
body.playlists-page .playlists-hero-section .scroll-indicator {
    opacity: 0.6;
    transform: scale(0.85);
    margin-top: 10px;
}

body.culture-page .epk-hero-section {
    margin-top: 0;
    padding-top: 0;
    top: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* All headings and titles should be center-aligned */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
}

.section-title {
    font-family: 'Malvides', serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-light);
    position: relative;
    letter-spacing: 0.06em;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 0;
}


/* ================================
   Navigation - Top Center
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: transform 0.3s ease-in-out, padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

/* Transparent navbar on all pages with hero sections */
body.home-page .navbar,
body.wedding-page .navbar,
body.culture-page .navbar,
body.playlists-page .navbar {
    background: transparent !important;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: absolute; /* sit on top of hero */
    width: 100%;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    position: fixed;
    background: rgba(10, 10, 14, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: inherit;
}

.logo:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: var(--transition);
}

/* Make logo visible on dark navbar: square container, centered logo */
.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
}
.navbar .logo img {
    max-height: 70px;
    max-width: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}
/* Optional: use white logo on dark bar (uncomment if logo is pure black and still hard to see)
.navbar .logo img { filter: brightness(0) invert(1); }
*/

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    height: auto;
    width: auto;
    padding: 0;
    overflow: visible;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    padding: 0.8rem 1rem;
    display: block;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    color: var(--text-body);
}

.navbar.scrolled .nav-menu li a:not(.active),
.navbar .nav-menu li a:not(.active) {
    color: var(--text-body) !important;
}

.nav-menu li a:hover {
    color: var(--accent) !important;
    background: rgba(237, 31, 36, 0.08);
}

.nav-menu li a.active {
    color: var(--text-light);
    border-bottom: 2px solid var(--accent);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--accent-gold) !important;
    background: none;
    border: none;
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.dropbtn:hover {
    color: var(--text-light);
    background: rgba(253, 208, 35, 0.1);
}

.dropbtn:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.navbar.scrolled .dropbtn:not(.active),
.navbar .dropbtn:not(.active) {
    color: var(--text-body) !important;
}
.navbar .dropbtn:hover,
.navbar.scrolled .dropbtn:hover {
    color: var(--accent) !important;
}

/* Active nav highlight (child + dropdown parent) */
.nav-menu li a.active,
.dropbtn.active {
    opacity: 1;
    color: #ffffff !important;
}

.dropdown-content a.active {
    color: #ffffff !important;
    font-weight: 700;
}

.dropbtn.active {
    position: relative;
}

.dropbtn.active::after{
    content:"";
    display:block;
    height:2px;
    width:100%;
    margin-top:8px;
    background: rgba(255,255,255,0.8);
    border-radius: 999px;
}

.arrow {
    display: none;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-bg);
    min-width: 160px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Desktop: Show dropdown on hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    display: block;
    padding: 0.8rem 1.2rem;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--text-light) !important;
}

.dropdown-content a:hover {
    background: rgba(253, 208, 35, 0.2);
    color: var(--accent-gold) !important;
}

.dropdown-content a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 8px 8px;
}

/* Nav Right Section (Social + Cart) */
.nav-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.navbar .social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar .social-links a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.navbar .social-links a svg {
    width: 20px;
    height: 20px;
    fill: #d0c5c5;
    transition: var(--transition);
}

.navbar .social-links a:hover {
    transform: scale(1.2);
}

/* Individual icon brand colors on hover */
.navbar .social-links a[aria-label="Instagram"]:hover svg {
    fill: url(#instagram-gradient);
}

/* Instagram gradient definition */
.navbar .social-links svg defs {
    display: none;
}

.navbar .social-links a[aria-label="Instagram"]:hover svg {
    fill: #E4405F;
    filter: drop-shadow(0 0 4px rgba(228, 64, 95, 0.5));
}

.navbar .social-links a[aria-label="Email"]:hover svg {
    fill: #4285F4;
    filter: drop-shadow(0 0 4px rgba(66, 133, 244, 0.5));
}

.cart-icon {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    padding: 0.5rem;
    border-radius: 8px;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    color: var(--accent-gold);
}

.cart-icon:hover {
    background: rgba(208, 197, 197, 0.1);
    transform: scale(1.05);
}

.cart-icon:hover svg {
    color: var(--text-light);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--text-light);
    color: var(--primary-color);
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.cart-count:empty {
    display: none;
}

.cart-icon:hover .cart-count {
    background: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}


/* ===== Mobile Drawer Menu (Premium) ===== */
:root {
    --menu-bg: rgba(10, 10, 12, 0.92);
    --menu-border: rgba(255, 255, 255, 0.10);
    --menu-text: rgba(255, 255, 255, 0.88);
    --menu-muted: rgba(255, 255, 255, 0.55);
    --menu-accent: #ff3b30;
    --menu-radius: 18px;
}

.menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--menu-border);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-btn:active {
    transform: scale(0.96);
}

.menu-btn:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.45);
}

.menu-btn__icon {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn__icon span {
    height: 2px;
    width: 100%;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.9);
    transform-origin: center;
    transition: transform 220ms ease, opacity 220ms ease;
}

/* ===== Mobile Nav Overlay (rebuild) ===== */
.mnav {
    position: fixed;
    inset: 0;
    z-index: 9999;               /* must beat every page layer */
    pointer-events: none;
    opacity: 0;
    transition: opacity .22s ease;
}

.mnav.is-open {
    pointer-events: auto;
    opacity: 1;
}

/* Backdrop (the "background") */
.mnav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55); /* ALWAYS visible, even if blur fails */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Panel */
.mnav__panel {
    position: absolute;
    top: 14px;
    right: 14px;
    left: 14px;
    bottom: 14px;
    border-radius: 22px;
    background: rgba(12,12,14,.78);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 20px 60px rgba(0,0,0,.55);
    transform: translateY(10px) scale(.98);
    opacity: 0;
    transition: transform .26s ease, opacity .26s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 14px;
}

.mnav.is-open .mnav__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Header */
.mnav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 12px;
}

.mnav__label {
    letter-spacing: .35em;
    font-size: 12px;
    opacity: .65;
    color: rgba(255,255,255,.65);
}

/* Close button (better than a plain X) */
.mnav__close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    display: grid;
    place-items: center;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    cursor: pointer;
}

.mnav__close:active {
    transform: scale(.96);
}

.mnav__x {
    position: relative;
    width: 18px;
    height: 18px;
}

.mnav__x::before,
.mnav__x::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,.85);
    transform-origin: center;
}

.mnav__x::before { transform: translateY(-50%) rotate(45deg); }
.mnav__x::after  { transform: translateY(-50%) rotate(-45deg); }

/* Links */
.mnav__links {
    padding: 6px 0 10px;
    display: grid;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
}

.mnav__link,
.mnav__dropdown {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    letter-spacing: .28em;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.mnav__link:active,
.mnav__dropdown:active {
    transform: scale(.98);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
}

/* Dropdown chevron */
.mnav__chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,.55);
    border-bottom: 2px solid rgba(255,255,255,.55);
    transform: rotate(-45deg);
    transition: transform .2s ease;
}

.mnav__dropdown[aria-expanded="true"] .mnav__chev {
    transform: rotate(45deg);
}

/* Submenu */
.mnav__sub {
    display: grid;
    gap: 8px;
    padding: 0 6px 4px 6px;
    margin-top: -6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .26s ease;
}

.mnav__sub.is-open { max-height: 240px; }

.mnav__sublink {
    margin-left: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    display: block;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.mnav__sublink:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}

.mnav__sublink:active {
    transform: scale(.98);
}

/* Footer */
.mnav__footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    gap: 10px;
}

.mnav__icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.mnav__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    position: relative;
}

.mnav__icons a svg {
    width: 26px;
    height: 26px;
    fill: rgba(255,255,255,.82);
    transition: fill .15s ease, filter .15s ease;
}

/* Hover effects with brand colors */
.mnav__icons a:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(70, 29, 124, 0.2);
}

.mnav__icons a:hover svg {
    fill: rgba(255,255,255,.95);
}

/* Brand color on hover for specific platforms */
.mnav__icons a[aria-label="Instagram"]:hover svg {
    fill: #E4405F;
    filter: drop-shadow(0 0 6px rgba(228, 64, 95, 0.4));
}

.mnav__icons a[aria-label="Spotify"]:hover svg {
    fill: #1DB954;
    filter: drop-shadow(0 0 6px rgba(29, 185, 84, 0.4));
}

.mnav__icons a[aria-label="YouTube"]:hover svg {
    fill: #FF0000;
    filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.4));
}

.mnav__icons a[aria-label="SoundCloud"]:hover svg {
    fill: #FF5500;
    filter: drop-shadow(0 0 6px rgba(255, 85, 0, 0.4));
}

.mnav__icons a[aria-label="Email"]:hover svg {
    fill: #4285F4;
    filter: drop-shadow(0 0 6px rgba(66, 133, 244, 0.4));
}

.mnav__icons a[aria-label="Phone"]:hover svg {
    fill: var(--accent-purple);
    filter: drop-shadow(0 0 6px rgba(70, 29, 124, 0.4));
}

.mnav__icons a:active {
    transform: translateY(0) scale(0.96);
}

.mnav__listen {
    display: grid;
    gap: 8px;
    text-align: center;
}

.mnav__listen span {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,.45);
}

.mnav__footer small {
    display: block;
    text-align: center;
    color: rgba(255,255,255,.45);
    font-size: 0.72rem;
}

@media (prefers-reduced-motion: reduce) {
    .mnav, .mnav__panel, .mnav__sub { transition: none !important; }
}

/* Icon buttons */
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}

.icon-btn:active {
    transform: scale(0.96);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* Optional: morph hamburger into X when open */
.mnav.is-open ~ nav .menu-btn__icon span:nth-child(1),
body:has(.mnav.is-open) .menu-btn__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mnav.is-open ~ nav .menu-btn__icon span:nth-child(2),
body:has(.mnav.is-open) .menu-btn__icon span:nth-child(2) {
    opacity: 0;
}

.mnav.is-open ~ nav .menu-btn__icon span:nth-child(3),
body:has(.mnav.is-open) .menu-btn__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Lock scroll */
.no-scroll {
    overflow: hidden;
}

/* Only show hamburger on mobile */
@media (max-width: 900px) {
    .menu-btn {
        display: flex;
    }
    
    /* Hide navbar menu links when hamburger is visible */
    .nav-menu {
        display: none !important;
    }
    
    /* Adjust nav-container to accommodate hamburger button */
    .nav-container {
        grid-template-columns: auto 1fr auto;
        justify-items: end;
    }
    
    /* Position hamburger button in nav-right area */
    .menu-btn {
        order: 3;
    }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    .mnav,
    .mnav__panel,
    .mnav__sub,
    .menu-btn__icon span,
    .mnav__link,
    .mnav__dropdown,
    .mnav__sublink,
    .mnav__close {
        transition: none !important;
    }
}

/* Main content - no offset needed */
body {
    margin-left: 0;
}

.hero {
    margin-top: 0;
}

.page-header {
    margin-top: 70px;
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0; /* Behind navbar (navbar is z-index: 1000) */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    background: var(--dark-bg);
    min-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    /* Prevent blurry rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Ensure proper scaling */
    transform: scale(1);
    will-change: transform;
    /* Mobile video optimizations */
    -webkit-playsinline: true;
    playsinline: true;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    display: none;
    background: var(--dark-bg);
}

/* Show fallback if video fails to load */
.hero-video:not([src]) ~ .hero-fallback,
.hero:has(.hero-video[error]) .hero-fallback {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%),
                radial-gradient(ellipse 80% 50% at 50% 40%, rgba(237, 31, 36, 0.25), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-title {
    font-family: 'Malvides', serif;
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-light);
    text-shadow: 0 0 40px rgba(237, 31, 36, 0.4);
    animation: fadeInUp 0.8s ease;
}

.hero-tagline {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    animation: fadeInUp 0.8s ease 0.15s backwards;
}

.hero-subtitle {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.25s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.35s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-body);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-body);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ================================
   Buttons
   ================================ */
/* ================================
   Unified Button Style (Get Tickets style)
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--accent);
    white-space: nowrap;
    min-height: 48px;
    text-align: center;
}

/* Primary: black fill, red border, white text. Hover: red fill, black text */
.btn-primary {
    background: var(--color-black);
    color: var(--text-light);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--color-black);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(237, 31, 36, 0.35);
}

/* Secondary: transparent, red border, white text. Hover: red fill */
.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--color-black);
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(237, 31, 36, 0.35);
}

.btn-block {
    width: 100%;
}

/* Button size variants */
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    min-height: 36px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
    min-height: 52px;
}

.btn-icon {
    font-size: 1.3rem;
    padding: 0.5rem;
    display: inline-block;
    transition: var(--transition);
}

.btn-icon:hover {
    transform: scale(1.2);
}

/* ================================
   Page Header
   ================================ */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(70, 29, 124, 0.8), rgba(0, 0, 0, 0.9));
    overflow: hidden;
    margin-top: 70px;
    width: 100%;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.page-header h1 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Contact page specific - make all paragraphs white */
.contact-section p,
.contact-info-container p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-light);
}

.info-content p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin: 0.5rem 0;
}

.social-connect p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-light);
}

/* ================================
   Instagram Quote Section
   ================================ */
.instagram-quote {
    padding: 4rem 0;
    background: transparent;
    text-align: center;
}

.ig-quote {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: normal;
    color: var(--accent-gold);
    margin: 0;
    padding: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.ig-quote::before,
.ig-quote::after {
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.5;
}

.ig-quote::before {
    content: '"';
    margin-right: 0.2rem;
}

.ig-quote::after {
    content: '"';
    margin-left: 0.2rem;
}

/* ================================
   Featured Mixes Section (Home)
   ================================ */
.featured-mixes {
    padding: 5rem 0;
    background: transparent;
}

.mixes-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}


/* Genre Cards */
.genre-card {
    display: block;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.genre-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(253, 208, 35, 0.3);
}

.genre-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio (YouTube thumbnail format) */
    overflow: hidden;
}

.genre-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.genre-card:hover .genre-thumbnail img {
    transform: scale(1.1);
}

.genre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.genre-card:hover .genre-overlay {
    opacity: 1;
}

.genre-icon {
    font-size: 3rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(70, 29, 124, 0.9), rgba(0, 0, 0, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 1;
}

.coming-soon-text {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(253, 208, 35, 0.5);
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.genre-info {
    padding: 1.5rem;
    text-align: center;
}

.genre-info h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.genre-info p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

/* ================================
   Featured Section
   ================================ */
.featured {
    padding: 5rem 0;
    background: transparent;
}

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

.featured-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(208, 197, 197, 0.05);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.featured-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.card-link:hover {
    gap: 0.8rem;
}

/* ================================
   Video Showcase
   ================================ */

/* ================================
   Wedding Landing Hero
   ================================ */
.wedding-landing-hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0; /* Behind navbar (navbar is z-index: 1000) */
}

.wedding-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.wedding-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.wedding-hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.wedding-hero-title {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.wedding-hero-subtitle {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.wedding-cta-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ================================
   Crowd Image Section
   ================================ */
.crowd-image-section {
    padding: 3rem 0;
    background: transparent;
    overflow: hidden;
}

.crowd-image-section img {
    width: 100%;
    max-height: 500px;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

/* ================================
   Upcoming Events Carousel Section
   ================================ */
.upcoming-events-section {
    padding: 3rem 0;
    background: transparent;
    overflow: hidden;
}

.events-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.events-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    min-height: auto;
    max-height: 85vh;
}

.events-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

.event-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.event-slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 0.5s ease;
}

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

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: transparent;
    border-radius: 20px;
    padding: 1.5rem;
    max-height: 85vh;
    overflow: hidden;
}

.event-flyer {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 350px;
    max-height: 450px;
    margin: 0 auto;
}

.event-flyer img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.event-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--text-light);
}

.event-details h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
    line-height: 1.2;
}

.event-venue {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.event-date {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.event-details .btn {
    align-self: flex-start;
    /* Uses base .btn styles, can override padding/font-size if needed */
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
    transform: translateY(-50%) translateX(0);
    box-shadow: 0 0 20px rgba(253, 208, 35, 0.5);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.prev-btn {
    left: 10px;
}

.prev-btn:hover {
    transform: translateY(-50%) translateX(-5px);
}

.next-btn {
    right: 10px;
}

.next-btn:hover {
    transform: translateY(-50%) translateX(5px);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(208, 197, 197, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent-gold);
    width: 40px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(253, 208, 35, 0.6);
}

/* ================================
   Clients Preview
   ================================ */
.clients-preview {
    padding: 5rem 0;
    background: var(--light-bg);
    text-align: center;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.logo-item {
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.logo-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.logo-item img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    filter: none;
    transition: var(--transition);
}

.logo-item:hover img {
    filter: none;
    transform: scale(1.05);
}

/* ================================
   CTA Section
   ================================ */
.cta {
    padding: 5rem 0;
    background: transparent;
    text-align: center;
}

.cta h2 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.cta p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* ================================
   Coming Soon Section
   ================================ */
.coming-soon-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    text-align: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-content h2 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.coming-soon-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================
   Tickets Section
   ================================ */
.tickets-hero-section {
    padding: 5rem 0 3rem;
    background: var(--dark-bg);
}

.ticket-hero-card {
    max-width: 900px;
    margin: 3rem auto 0;
}

.tickets-grid-section {
    padding: 3rem 0 5rem;
    background: linear-gradient(180deg, #0b0b0f, #000);
    position: relative;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ticket-event-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
}

.ticket-event-card:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(70, 29, 124, 0.2);
    border-color: rgba(70, 29, 124, 0.3);
}

.event-flyer-small {
    width: 100%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.event-flyer-small img {
    width: 100%;
    height: auto;
    display: block;
}

.event-header {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-header h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.event-header .event-venue {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.event-header .event-date {
    font-family: 'AvenirCondensedHand', sans-serif;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.ticket-widget-container {
    padding: 0 1.5rem 1.5rem;
}

.ticket-widget-container .btn {
    width: 100%;
    text-align: center;
}

/* Event Actions & Tags */
.event-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    transition: all 0.3s ease;
}

.btn.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.event-tags .tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    font-family: 'AvenirCondensedHand', sans-serif;
}

.event-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.detail-block h4 {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 8px;
    color: var(--accent-gold);
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
}

.detail-block ul {
    margin-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
}

.detail-block ul li {
    color: var(--text-light);
    line-height: 1.5;
    position: relative;
    padding-left: 1rem;
}

.detail-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.detail-block p {
    opacity: 0.9;
    line-height: 1.5;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

.ticket-widget-container iframe {
    border-radius: 10px;
    width: 100%;
}

.full-ticket-widget {
    max-width: 900px;
    margin: 0 auto;
}

.full-ticket-widget h3 {
    text-align: center;
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.ticket-iframe-wrapper {
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-bg);
    padding: 1rem;
}

.ticket-iframe-wrapper iframe {
    border-radius: 10px;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: transparent;
    padding: 2.5rem 0 1.5rem;
    border-top: 2px solid var(--accent-gold);
    position: relative;
}


/* Social / Contact Row */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: #d0c5c5;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.2);
}

/* Individual icon brand colors on hover - same as navbar */
.footer-social a[aria-label="Instagram"]:hover svg {
    fill: #E4405F;
    filter: drop-shadow(0 0 4px rgba(228, 64, 95, 0.5));
}

.footer-social a[aria-label="Email"]:hover svg {
    fill: #4285F4;
    filter: drop-shadow(0 0 4px rgba(66, 133, 244, 0.5));
}

.footer-social a[aria-label="Phone"]:hover svg {
    fill: #34A853;
    filter: drop-shadow(0 0 4px rgba(52, 168, 83, 0.5));
}

/* Listen On Section */
.footer-listen {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-listen-label {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--text-gray);
    opacity: 0.6;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.footer-listen-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-listen-icons a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-listen-icons a svg {
    width: 28px;
    height: 28px;
    fill: #d0c5c5;
    transition: var(--transition);
}

.footer-listen-icons a:hover {
    transform: scale(1.2);
}

/* Listen icons - brand colors with purple glow accent */
.footer-listen-icons a[aria-label="Spotify"]:hover svg {
    fill: #1DB954;
    filter: drop-shadow(0 0 6px rgba(70, 29, 124, 0.6));
}

.footer-listen-icons a[aria-label="YouTube"]:hover svg {
    fill: #FF0000;
    filter: drop-shadow(0 0 6px rgba(70, 29, 124, 0.6));
}

.footer-listen-icons a[aria-label="YouTube Music"]:hover svg {
    fill: #FF0000;
    filter: drop-shadow(0 0 6px rgba(70, 29, 124, 0.6));
}

.footer-listen-icons a[aria-label="SoundCloud"]:hover svg {
    fill: #FF5500;
    filter: drop-shadow(0 0 6px rgba(70, 29, 124, 0.6));
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(208, 197, 197, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-gray);
}

/* ================================
   About Section
   ================================ */
.about-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    margin-top: 0;
}

/* Ensure first section on non-home pages doesn't overlap navbar */
body:not(.home-page) section:first-of-type {
    margin-top: 0;
    padding-top: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Desktop: text left, image right */
@media (min-width: 851px) {
    .about-content {
        grid-template-columns: 1.5fr 1fr;
    }

    .about-text {
        grid-column: 1;
        grid-row: 1;
    }

    .about-image {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        justify-content: flex-end;
    }
}

/* Base styles for image */
.about-image {
    overflow: hidden;
    width: 100%;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text h2 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.about-text p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.stat-item h3 {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
}

/* ================================
   Services Section
   ================================ */
.services-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--light-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Culture page: services cards */
body.culture-page .services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    body.culture-page .services-grid {
        grid-template-columns: 1fr;
    }
}

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

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 12px 26px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    box-shadow:
        0 16px 32px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.service-card:hover img {
    transform: scale(1.02);
}

.service-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(70, 29, 124, 0.2) 0%, rgba(253, 208, 35, 0.1) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
}

.service-icon svg {
    width: 80px;
    height: 80px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    color: var(--accent-gold);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.service-content p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-content .btn {
    align-self: center;
    margin-top: 1rem;
}

/* ================================
   Team Section
   ================================ */
.team-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: var(--light-bg);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

.team-member {
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    box-shadow:
        0 12px 26px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.team-member:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    box-shadow:
        0 16px 32px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.team-member h3 {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.team-member p {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* Team Social Links */
.team-socials {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.team-socials a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.team-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    opacity: 0.78;
    transition: opacity 160ms ease, transform 160ms ease;
    color: var(--text-light);
}

/* Show on hover (desktop) */
@media (hover: hover) and (pointer: fine) {
    .team-member:hover .team-socials {
        opacity: 1;
        transform: translateY(0);
    }

    .team-socials a:hover {
        transform: translateY(-2px);
        border-color: rgba(140,82,255,0.35);
        background: rgba(255,255,255,0.06);
    }

    .team-socials a:hover svg {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Show always on touch devices (mobile) */
@media (hover: none) {
    .team-socials {
        opacity: 1;
        transform: none;
    }
}

/* ================================
   Philosophy Section
   ================================ */
.philosophy-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h2 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.philosophy-content blockquote {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(208, 197, 197, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.point {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 10px;
}

.point h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.point p {
    color: var(--text-gray);
}

.empty-state-content {
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-message {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
    padding: 2rem;
    background: rgba(253, 208, 35, 0.1);
    border: 2px solid rgba(253, 208, 35, 0.3);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(253, 208, 35, 0.1);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.empty-state-message:hover {
    background: rgba(253, 208, 35, 0.15);
    border-color: rgba(253, 208, 35, 0.5);
    box-shadow: 0 6px 30px rgba(253, 208, 35, 0.2);
}


/* Events Empty State */
.events-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-empty-state .empty-state-content {
    max-width: 600px;
    margin: 0 auto;
}

.events-empty-state .empty-state-message {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-state-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    color: #d0c5c5;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.social-link-item:hover {
    background: rgba(208, 197, 197, 0.1);
}

.social-link-item .social-icon {
    width: 24px;
    height: 24px;
    fill: #d0c5c5;
    flex-shrink: 0;
    transition: var(--transition);
}

.social-link-item span {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    transition: var(--transition);
    color: #d0c5c5;
}

/* Instagram hover - pink/red */
.social-link-item[href*="instagram"]:hover {
    color: #E4405F;
}

.social-link-item[href*="instagram"]:hover .social-icon {
    fill: #E4405F;
}

.social-link-item[href*="instagram"]:hover span {
    color: #E4405F;
}

/* SoundCloud hover - orange */
.social-link-item[href*="soundcloud"]:hover {
    color: #FF5500;
}

.social-link-item[href*="soundcloud"]:hover .social-icon {
    fill: #FF5500;
}

.social-link-item[href*="soundcloud"]:hover span {
    color: #FF5500;
}

/* YouTube hover - red */
.social-link-item[href*="youtube"]:hover {
    color: #FF0000;
}

.social-link-item[href*="youtube"]:hover .social-icon {
    fill: #FF0000;
}

.social-link-item[href*="youtube"]:hover span {
    color: #FF0000;
}

/* ================================
   Products Section
   ================================ */
.products-section {
    padding: 3rem 0 5rem;
    background: var(--dark-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.product-image {
    position: relative;
    padding: 2rem;
    background: var(--dark-bg);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 200px;
    width: auto;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-sizes,
.product-colors {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-sizes span {
    padding: 0.3rem 0.8rem;
    background: var(--dark-bg);
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.product-sizes span:hover {
    background: var(--primary-color);
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.color-swatch:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.product-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ================================
   Info Section
   ================================ */
.info-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 10px;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
}

/* ================================
   Edits Section
   ================================ */
.edits-section {
    padding: 3rem 0 5rem;
    background: var(--dark-bg);
}

.edits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.edit-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.edit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.edit-image {
    position: relative;
    padding: 2rem;
    background: var(--dark-bg);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-image img {
    max-height: 150px;
    width: auto;
}

.edit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.edit-info {
    padding: 1.5rem;
}

.edit-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.edit-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.edit-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.edit-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edit-price {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

/* ================================
   Bundles Section
   ================================ */

/* ================================
   Clients Section
   ================================ */
.clients-stats {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.stat-box h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ================================
   Client Logos Section
   ================================ */
.clients-logos-section {
    padding: 5rem 0;
    background: var(--primary-color);
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3rem 2rem;
    align-items: center;
}

.client-logo-card {
    background: transparent;
    padding: 1rem;
    text-align: center;
    transition: var(--transition);
}

.client-logo-card:hover {
    transform: scale(1.05);
}

.client-logo-card img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Individual logo size adjustments - Adjust each logo's max-height as needed */
.client-logo-card img.logo-ajayxp {
    max-height: 60px;
}

.client-logo-card img.logo-desta {
    max-height: 60px;
}

.client-logo-card img.logo-icy {
    max-height: 60px;
}

.client-logo-card img.logo-lab {
    max-height: 60px;
}

.client-logo-card img.logo-levels {
    max-height: 60px;
}

.client-logo-card img.logo-medtrax {
    max-height: 60px;
}

.client-logo-card img.logo-olick {
    max-height: 60px;
}

.client-logo-card img.logo-pepper {
    max-height: 60px;
}

.client-logo-card img.logo-soul2soul {
    max-height: 50px;
}

.client-logo-card p {
    display: none;
}

/* ================================
   Past Events Section
   ================================ */
.past-events-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.event-category {
    margin-bottom: 4rem;
}

.event-category h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* ================================
   Wedding Gallery Section
   ================================ */
.wedding-gallery-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
    padding: 5rem 0;
    background: transparent;
}

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

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(253, 208, 35, 0.3);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.author-name {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    color: var(--accent-gold);
}

.author-title {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-faq-column {
    align-self: flex-start;
}

.wedding-form-wrapper {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--text-gray);
    background: var(--dark-bg);
    color: var(--text-gray);
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-gray);
    color: var(--text-gray);
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select option:first-child {
    color: var(--text-gray);
    opacity: 0.7;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: var(--accent-gold);
    color:var(--text-light);
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    display: block;
}

.contact-info-container {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-gold);
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-content a {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.info-content a .email-prefix,
.info-content a .email-domain {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
}

.info-content a .email-at {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-weight: 300;
    opacity: 0.8;
}

/* Make the dot in email addresses more visible */
.info-content a .email-dot {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    vertical-align: baseline;
    margin: 0 0.1em;
    font-family: 'AvenirCondensedHand', sans-serif;
    display: inline-block;
    position: relative;
    top: 0.1em;
}

.info-content a:hover {
    text-decoration: underline;
    color: var(--accent-gold);
}

.social-connect h3 {
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

.social-icon {
    font-size: 1.5rem;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================
   AOS Animations
   ================================ */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Delay support */
[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ================================
   Full Screen Player
   ================================ */
.fullscreen-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-player.active {
    opacity: 1;
    visibility: visible;
}

.close-fullscreen {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    z-index: 10001;
}

.close-fullscreen svg {
    width: 30px;
    height: 30px;
}

.close-fullscreen:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.fullscreen-content {
    text-align: center;
    max-width: 90%;
    padding: 2rem;
}

.fullscreen-artwork {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    animation: slideUp 0.5s ease;
}

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

.fullscreen-artwork img {
    width: 100%;
    height: auto;
    display: block;
}

.fullscreen-info {
    animation: fadeIn 0.6s ease 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fullscreen-info h2 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.fullscreen-info p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Fullscreen Controls */
.fullscreen-controls {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.fullscreen-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.fullscreen-time-current,
.fullscreen-time-total {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    min-width: 45px;
}

.fullscreen-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(208, 197, 197, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.fullscreen-progress-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.fullscreen-progress-handle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: var(--text-light);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.fullscreen-progress-bar:hover .fullscreen-progress-handle {
    opacity: 1;
}

/* Fullscreen Buttons */
.fullscreen-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Fullscreen Volume Control */
.fullscreen-volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.fullscreen-volume-slider {
    width: 150px;
}

.fullscreen-volume-slider input[type="range"] {
    width: 100%;
    height: 4px;
    background: rgba(208, 197, 197, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    display: block;
}

.fullscreen-volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(208, 197, 197, 0.3);
    margin-top: -4px;
}

.fullscreen-volume-slider input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(208, 197, 197, 0.3);
}

.fullscreen-volume-slider input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(208, 197, 197, 0.1);
    height: 4px;
    border-radius: 2px;
    margin: 4px 0;
}

.fullscreen-volume-slider input[type="range"]::-moz-range-track {
    background: rgba(208, 197, 197, 0.1);
    height: 4px;
    border-radius: 2px;
}

.fullscreen-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-btn svg {
    width: 28px;
    height: 28px;
}

.fullscreen-play-btn {
    background: var(--accent-gold);
    color: var(--primary-color);
    width: 70px;
    height: 70px;
}

.fullscreen-play-btn svg {
    width: 36px;
    height: 36px;
}

.fullscreen-btn:hover {
    transform: scale(1.1);
}

.fullscreen-play-btn:hover {
    box-shadow: 0 8px 25px rgba(253, 208, 35, 0.4);
}

/* Responsive fullscreen */
@media (max-width: 850px), (max-height: 1280px) {
    .fullscreen-artwork {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }
    
    .fullscreen-info h2 {
        font-size: 1.8rem;
    }
    
    .fullscreen-info p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .close-fullscreen {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .close-fullscreen svg {
        width: 24px;
        height: 24px;
    }
    
    .fullscreen-controls {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .fullscreen-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .fullscreen-play-btn svg {
        width: 30px;
        height: 30px;
    }
    
    .fullscreen-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .fullscreen-buttons {
        gap: 1.5rem;
    }
}

/* ================================
   Fixed Bottom Music Player
   ================================ */
.bottom-player {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--accent-gold);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: bottom 0.3s ease;
    display: block;
}

.bottom-player.active {
    bottom: 0;
}

.player-content {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    gap: 2rem;
}

.player-left {
    cursor: pointer;
}

/* Player Left - Track Info */
.player-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-artwork {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.player-track-info h4 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-track-info p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 0.875rem;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Player Center - Controls and Progress */
.player-center {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

.play-pause-main {
    background: var(--accent-gold);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
}

.play-pause-main svg {
    width: 24px;
    height: 24px;
}

.control-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.play-pause-main:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(253, 208, 35, 0.4);
}

/* Progress Bar */
.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.time-current,
.time-total {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    min-width: 40px;
}

.progress-bar-main {
    flex: 1;
    height: 6px;
    background: rgba(208, 197, 197, 0.1);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill-main {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 3px;
    width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.progress-bar-main:hover .progress-handle {
    opacity: 1;
}

/* Player Right - Volume and Close */
.player-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.player-right .volume-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volume-control {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volume-slider {
    position: relative;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    width: 80px;
}

.volume-slider input[type="range"] {
    width: 100%;
    height: 4px;
    background: rgba(208, 197, 197, 0.1);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    display: block;
    padding: 0;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(208, 197, 197, 0.3);
    margin-top: -4px;
    box-shadow: none;
}

.volume-slider input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(208, 197, 197, 0.3);
    box-shadow: 0 0 0 0 rgba(208, 197, 197, 0);
}

.volume-slider input[type="range"]::-webkit-slider-runnable-track {
    background: rgba(208, 197, 197, 0.1);
    height: 4px;
    border-radius: 2px;
    margin: 4px 0;
}

.volume-slider input[type="range"]::-moz-range-track {
    background: rgba(208, 197, 197, 0.1);
    height: 4px;
    border-radius: 2px;
}

.close-btn {
    color: var(--text-gray);
}

.close-btn:hover {
    color: #ff4444;
}

/* ================================
   Mobile-First Optimizations
   ================================ */
/* Touch-friendly targets */
button, 
a.btn, 
.carousel-btn,
.control-btn {
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: rgba(253, 208, 35, 0.3);
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Better scrolling on mobile */
body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    user-select: none;
}

/* Better form inputs on mobile */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    font-family: 'AvenirCondensedHand', sans-serif !important;
    font-size: 16px; /* Prevents zoom on iOS */
    font-weight: 700;
    letter-spacing: 0.5px;
    -webkit-appearance: none;
    border-radius: 8px;
}

/* Ensure all numeric content uses AvenirCondensedHand */
/* This targets elements that commonly contain numbers */
.event-date,
.mix-duration,
.time-current,
.time-total,
.fullscreen-time-current,
.fullscreen-time-total,
.yt-mix-duration,
.yt-mix-date,
.yt-mix-meta,
.yt-bottom-date,
.yt-bottom-time-display,
.cart-count,
.stat-item h3,
.product-price,
.edit-price,
.epk-stat-item p {
    font-family: 'AvenirCondensedHand', sans-serif !important;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        grid-template-columns: 150px 1fr 150px;
        gap: 1rem;
    }

    .nav-menu {
        gap: 0.2rem;
    }

    .nav-menu li a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem 1.5rem;
    }

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

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

@media (max-width: 900px) {
    .mixes-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 853px) {
    .navbar {
        background: #000000;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }
    
    /* Transparent navbar at top for hero pages (mobile) */
    body.home-page .navbar,
    body.wedding-page .navbar,
    body.culture-page .navbar,
    body.playlists-page .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    .navbar.scrolled {
        background: rgba(10, 10, 14, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255,255,255,0.10);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 1rem;
        justify-items: end;
    }
    
    /* Ensure hamburger button is visible and positioned correctly */
    .menu-btn {
        display: flex !important;
        order: 3;
        position: relative; /* Ensure proper positioning within grid */
        margin: 0; /* Remove any default margins */
    }
    

    .logo img {
        height: 88px;
    }
    .navbar .logo {
        width: 100px;
        height: 100px;
    }
    .navbar .logo img {
        max-height: 88px;
        max-width: 88px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0.5rem;
        margin-left: 1rem;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    /* Mobile: Disable hover, only show on click */
    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        color: var(--accent-gold) !important;
    }

    .dropdown-content a:hover {
        color: var(--text-light) !important;
    }

    .nav-right {
        gap: 0.8rem;
    }

    .navbar .social-links {
        display: none;
    }

    .page-header {
        margin-top: 60px;
        height: 30vh;
        padding: 2rem 0;
    }
}

/* Desktop: Ensure nav-menu is visible above 900px, hide hamburger */
@media (min-width: 901px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        height: auto !important;
        width: auto !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    /* Hide hamburger button on desktop */
    .menu-btn {
        display: none !important;
    }
    
    /* Genre cards on one line for desktop - 3 in a row (home page only) */
    body.home-page .mixes-showcase {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 100%;
    }
}

@media (max-width: 850px), (max-height: 1280px) {
    .hero {
        height: 100svh;
        min-height: 600px;
    }

    .hero-video {
        object-fit: cover;
    }

    .hero-title,
    .wedding-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 1rem;
    }

    .hero-subtitle,
    .wedding-hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .wedding-cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.25rem;
        padding: 0 1rem;
        letter-spacing: 0.03em;
    }

    .section-title::after {
        width: 40px;
    }

    /* Sections padding */
    .featured-mixes,
    .upcoming-events-section,
    .testimonials-section,
    .cta,
    .contact-section {
        padding: 3rem 0;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        grid-column: 1;
        grid-row: 1;
    }

    .about-image {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        justify-content: center;
    }
}

/* Desktop override: ensure two-column layout on larger screens */
@media (min-width: 851px) {
    .about-content {
        grid-template-columns: 1.5fr 1fr !important;
    }

    .about-text {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .about-image {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-content: flex-end !important;
    }
}

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


/* Genre Cards Mobile */
.mixes-showcase {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0;
}

    .genre-card {
        width: 92%;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Give thumbnails more visual punch on mobile */
    .genre-thumbnail {
        padding-top: 0;
        height: 180px;
    }

    .genre-info h3 {
        font-size: 1.4rem;
        letter-spacing: 0.04em;
    }

    .genre-info p {
        font-size: 0.85rem;
    }
    
    /* Upcoming Events Carousel Responsive */
    .events-carousel-wrapper {
        padding: 0 1rem;
    }

    .event-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
        max-height: 90vh;
    }

    .event-flyer {
        max-width: 100%;
        max-height: 300px;
        margin: 0 auto;
    }
    
    .event-flyer img {
        max-height: 300px;
    }
    
    .event-details h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .event-venue {
        font-size: 0.9rem;
    }
    
    .event-date {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .events-carousel {
        min-height: auto;
        margin: 2rem 0;
    }
    
    .event-details .btn {
        width: 100%;
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    /* Forms Mobile */
    .contact-form,
    .contact-info-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }


    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Instagram Quote */
    .ig-quote {
        font-size: 1.5rem;
        padding: 1.5rem;
        white-space: normal;
    }

    .ig-quote::before,
    .ig-quote::after {
        font-size: 2rem;
    }

    /* Crowd Image */
    .crowd-image-section {
        padding: 2rem 0;
    }

    .crowd-image-section img {
        max-height: 400px;
    }

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

    /* CTA Section */
    .cta h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .cta p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Bottom Player Responsive */
    .player-content {
        grid-template-columns: 1fr;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .player-left {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .player-artwork {
        width: 50px;
        height: 50px;
    }

    .player-track-info h4 {
        font-size: 0.9rem;
    }

    .player-track-info p {
        font-size: 0.8rem;
    }
    
    .player-center {
        width: 100%;
    }

    .player-controls {
        gap: 0.75rem;
    }

    .play-pause-main {
        width: 44px;
        height: 44px;
    }

    .control-btn {
        min-width: 36px;
        min-height: 36px;
    }
    
    .player-right {
        display: none;
    }
    
    .progress-wrapper {
        max-width: 100%;
        gap: 0.5rem;
    }

    .time-current,
    .time-total {
        font-size: 0.7rem;
        min-width: 35px;
    }
    
    .bottom-player {
        height: 110px;
        bottom: -120px;
    }

    .bottom-player.active {
        bottom: 0;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 2rem 0 1rem;
    }

    
    .footer-social {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social a {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-social a svg {
        width: 22px;
        height: 22px;
        fill: #d0c5c5;
    }

    .footer-listen {
        margin-bottom: 1.5rem;
    }

    .footer-listen-label {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .footer-listen-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-listen-icons a {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-listen-icons a svg {
        width: 24px;
        height: 24px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Tickets Grid */
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

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

    .logo img {
        height: 78px;
    }
    .navbar .logo {
        width: 90px;
        height: 90px;
    }
    .navbar .logo img {
        max-height: 78px;
        max-width: 78px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title,
    .wedding-hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle,
    .wedding-hero-subtitle {
        font-size: 1rem;
    }

    .wedding-hero-image {
        object-fit: cover;
        object-position: center;
        min-width: 100%;
        min-height: 100%;
    }
    
    .wedding-landing-hero {
        height: 100svh;
        min-height: 100svh;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
        letter-spacing: 0.02em;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    /* Sections */
    .featured-mixes,
    .upcoming-events-section,
    .testimonials-section,
    .cta,
    .contact-section {
        padding: 2rem 0;
    }

    .featured-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }
    
    body.culture-page .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card img {
        height: 200px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .team-member h3 {
        font-size: 1rem;
    }
    
    .team-member p {
        font-size: 0.85rem;
    }
    
    /* Culture, Services, and Wedding pages: 1 card per row on mobile */
    body.culture-page .services-grid,
    body.wedding-page .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section Mobile */
    .epk-contact-section {
        padding: 3rem 0;
    }
    
    .epk-contact-content {
        padding: 0 1rem;
    }
    
    .epk-contact-item {
        margin-bottom: 1.5rem;
    }
    
    .epk-contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .epk-contact-item p,
    .epk-contact-item a {
        font-size: 1rem;
    }
    
    .epk-contact-social {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .epk-contact-social a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .epk-contact-content .btn {
        margin-top: 1.5rem;
        width: 100%;
        max-width: 280px;
    }
    
    .epk-contact-item .email-link {
        display: inline-block;
        word-break: break-word;
        overflow-wrap: anywhere;
        font-size: 1rem;
    }
    
    .epk-contact-item .email-dot {
        display: none;
    }
    
    .products-grid,
    .edits-grid,
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ticket-hero-card .event-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .event-details h3 {
        font-size: 1.3rem;
    }

    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Forms */
    .contact-form,
    .contact-info-container {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
    }

    /* Instagram Quote */
    .ig-quote {
        font-size: 1.25rem;
        padding: 1.25rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social a svg {
        width: 20px;
        height: 20px;
        fill: #d0c5c5;
    }

    .footer-listen-label {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .footer-listen-icons {
        gap: 1rem;
    }

    .footer-listen-icons a svg {
        width: 22px;
        height: 22px;
    }

    /* Player */
    .player-artwork {
        width: 45px;
        height: 45px;
    }

    .player-track-info h4 {
        font-size: 0.85rem;
    }

    .player-track-info p {
        font-size: 0.75rem;
    }

    .play-pause-main {
        width: 40px;
        height: 40px;
    }

    .play-pause-main svg {
        width: 20px;
        height: 20px;
    }

    .bottom-player {
        height: 100px;
    }

    /* Page Header */
    .page-header {
        height: 25vh;
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    /* CTA */
    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.95rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title,
    .wedding-hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

/* ================================
   YouTube-Style Mixes Page
   ================================ */

/* Filter Bar */
.yt-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: #000000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(208, 197, 197, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.yt-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}

.yt-filter-container::-webkit-scrollbar {
    display: none;
}

.yt-filter-btn {
    padding: 0.6rem 1.25rem;
    background: rgba(208, 197, 197, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(208, 197, 197, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: 'AvenirCondensedHand', sans-serif;
    position: relative;
    overflow: hidden;
}

.yt-filter-btn:hover {
    background: rgba(208, 197, 197, 0.15);
    border-color: rgba(208, 197, 197, 0.2);
    transform: translateY(-2px);
}

.yt-filter-btn.active {
    background: #d0c5c5;
    color: #000000;
    border-color: #d0c5c5;
    font-weight: 600;
}

/* Main Content */
.yt-main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem;
    position: relative;
}


.yt-mixes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Mix Card */
.yt-mix-card {
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.yt-mix-card:hover {
    transform: scale(1.02);
}

.yt-mix-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.yt-mix-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-mix-duration {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.yt-mix-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.yt-mix-card:hover .yt-mix-play-overlay {
    opacity: 1;
}

.yt-mix-play-overlay svg {
    width: 60px;
    height: 60px;
    fill: var(--text-light);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.yt-mix-info {
    display: flex;
    gap: 0.75rem;
    padding-right: 2rem;
    position: relative;
}

.yt-mix-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-mix-channel {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    margin: 0 0 0.25rem 0;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-mix-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-mix-separator {
    color: var(--text-gray);
}

.yt-mix-more-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-mix-card:hover .yt-mix-more-btn {
    opacity: 1;
}

.yt-mix-more-btn svg {
    width: 20px;
    height: 20px;
}

/* Player Modal */
.yt-player-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    overflow-y: auto;
    display: none;
}

.yt-player-modal.active {
    display: block;
}

.yt-player-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background: transparent;
}

.yt-close-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(208, 197, 197, 0.1);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.yt-close-btn:hover {
    background: rgba(208, 197, 197, 0.2);
}

.yt-close-btn svg {
    width: 24px;
    height: 24px;
}

.yt-player-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: transparent;
}

.yt-player-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 1;
}

.yt-player-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    overflow: hidden;
}

.yt-player-thumbnail-wrapper img {
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.yt-player-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Completely remove hover overlay in fullscreen player - controls are at the bottom */
.yt-player-modal.active .yt-player-overlay {
    display: none !important;
}

.yt-player-modal.active .yt-player-thumbnail-wrapper:hover .yt-player-overlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.yt-audio-player {
    max-width: 800px;
    margin: 0 auto;
}

.yt-player-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.yt-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgba(208, 197, 197, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.yt-play-btn:hover {
    border-color: var(--text-light);
    transform: scale(1.05);
    background: rgba(208, 197, 197, 0.1);
}

.yt-play-btn svg {
    width: 35px;
    height: 35px;
    fill: var(--text-light);
    margin-left: 4px;
}

.yt-progress-container {
    width: 100%;
}

.yt-progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(208, 197, 197, 0.3);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.yt-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #ff0000;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.yt-progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #ff0000;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.yt-progress-bar:hover .yt-progress-handle {
    opacity: 1;
}

.yt-time-display {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.875rem;
    font-family: 'AvenirCondensedHand', sans-serif;
}

/* Player Info */
.yt-player-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    text-align: center;
    z-index: 100;
    pointer-events: none;
    max-width: 1200px;
    width: calc(100% - 4rem);
}

.yt-player-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 1rem 0;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-player-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-separator {
    color: var(--text-gray);
}

.yt-action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(208, 197, 197, 0.1);
    justify-content: center;
    pointer-events: auto;
}

.yt-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(208, 197, 197, 0.1);
    border: none;
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 18px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-action-btn:hover {
    background: rgba(208, 197, 197, 0.15);
}

.yt-action-btn.liked {
    color: var(--accent-gold);
}

.yt-action-btn svg {
    width: 20px;
    height: 20px;
}

.yt-channel-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.yt-channel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-color);
}

.yt-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-channel-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-channel-subscribers {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-family: 'AvenirCondensedHand', sans-serif;
}

/* Comments Section */
.yt-comments-section {
    position: relative;
    padding: 2rem;
    margin-top: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200;
    min-height: auto;
}

.yt-comments-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-comment-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.yt-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(208, 197, 197, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-comment-avatar svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.yt-comment-input-wrapper {
    flex: 1;
    display: flex;
    gap: 0.5rem;
}

.yt-comment-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(208, 197, 197, 0.2);
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-family: 'AvenirCondensedHand', sans-serif;
    outline: none;
}

.yt-comment-input-wrapper input:focus {
    border-bottom-color: var(--accent-gold);
}

.yt-comment-input-wrapper input::placeholder {
    color: var(--text-gray);
}

.yt-comment-submit {
    background: var(--accent-gold);
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-comment-submit:hover {
    background: #ffd843;
}

.yt-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yt-comment {
    display: flex;
    gap: 1rem;
}

.yt-comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(208, 197, 197, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yt-comment-content {
    flex: 1;
}

.yt-comment-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.yt-comment-author {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-comment-date {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-comment-text {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin: 0;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-no-comments {
    text-align: center;
    color: var(--text-gray);
    padding: 2rem;
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Share Modal */
.yt-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
}

.yt-share-modal.active {
    display: flex;
}

.yt-share-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
}

.yt-share-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.yt-share-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(208, 197, 197, 0.05);
    border: none;
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.yt-share-option:hover {
    background: rgba(208, 197, 197, 0.1);
}

.yt-share-option svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
}

.yt-share-close {
    width: 100%;
    padding: 0.75rem;
    background: var(--accent-gold);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-share-close:hover {
    background: #ffd843;
}

/* Mobile Responsive */
@media (max-width: 850px), (max-height: 1280px) {
    
    .yt-filter-bar {
        top: 60px;
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .yt-filter-container {
        padding: 0 0.75rem;
    }
    
    .yt-filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .yt-mixes-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .yt-main-content {
        padding: 2rem 0 1rem;
    }
    
    .yt-player-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .yt-close-btn {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .yt-player-info {
        padding: 1rem;
    }
    
    .yt-player-title {
        font-size: 1.125rem;
    }
    
    .yt-action-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .yt-action-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .yt-comments-section {
        padding: 1rem;
    }
    
    .yt-share-content {
        padding: 1.5rem;
    }
}

/* Desktop Responsive */
@media (min-width: 1400px) {
    .yt-mixes-container {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
}

/* ================================
   Bottom Player Bar (YouTube-style)
   ================================ */
.yt-bottom-player {
    position: fixed;
    bottom: -90px;
    left: 0;
    width: 100%;
    height: 90px;
    background: #000000;
    border-top: 1px solid rgba(208, 197, 197, 0.1);
    z-index: 10000;
    transition: bottom 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.yt-bottom-player.active {
    bottom: 0;
}

.yt-bottom-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.yt-bottom-player-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.yt-bottom-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.yt-bottom-player-info {
    min-width: 0;
    flex: 1;
}

.yt-bottom-player-info h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-bottom-date {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-bottom-player-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.yt-bottom-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.yt-bottom-play-btn:hover {
    border-color: #d0c5c5;
    transform: scale(1.1);
    background: rgba(208, 197, 197, 0.1);
}

.yt-bottom-play-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    margin-left: 2px;
}

.yt-bottom-player-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.yt-bottom-time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-family: 'AvenirCondensedHand', sans-serif;
}

.yt-bottom-fullscreen-btn,
.yt-bottom-close-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 4px;
}

.yt-bottom-fullscreen-btn:hover,
.yt-bottom-close-btn:hover {
    background: rgba(208, 197, 197, 0.1);
}

.yt-bottom-fullscreen-btn svg,
.yt-bottom-close-btn svg {
    width: 20px;
    height: 20px;
}

.yt-bottom-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(208, 197, 197, 0.1);
    cursor: pointer;
}

.yt-bottom-progress-fill {
    height: 100%;
    background: #ff0000;
    width: 0%;
    transition: width 0.1s linear;
}

/* Mobile Bottom Player */
@media (max-width: 850px), (max-height: 1280px) {
    .yt-bottom-player {
        height: 70px;
        bottom: -70px;
    }
    
    .yt-bottom-player-content {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .yt-bottom-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .yt-bottom-player-info h4 {
        font-size: 0.8rem;
    }
    
    .yt-bottom-date {
        font-size: 0.7rem;
    }
    
    .yt-bottom-play-btn {
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }
    
    .yt-bottom-play-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .yt-bottom-time-display {
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .yt-bottom-fullscreen-btn,
    .yt-bottom-close-btn {
        padding: 0.25rem;
    }
    
    .yt-bottom-fullscreen-btn svg,
    .yt-bottom-close-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ================================
   EPK Sections (Culture Page)
   ================================ */
.epk-hero-section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 80vh;
    margin: 0;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    background: transparent; /* Changed from black to transparent so body background shows */
    justify-content: center;
    overflow: visible; /* Changed from hidden to visible so blobs can show */
    z-index: 0; /* Behind navbar (navbar is z-index: 1000) */
}

/* Split-screen culture hero layout - Clean Structure */
.culture-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    position: relative;
}

/* Left: Media Column */
.culture-hero__media {
    position: relative;
    overflow: hidden;
}

.culture-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 100vh;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.culture-hero:hover .culture-hero__media img {
    transform: scale(1.05);
}

/* Gradient fade from image to content */
.culture-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 75%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Film grain overlay */
.culture-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2260%22 height=%2260%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%2260%22 height=%2260%22 filter=%22url(%23n)%22 opacity=%220.15%22/%3E%3C/svg%3E');
    background-size: 60px 60px;
    opacity: 0.08;
    mix-blend-mode: overlay;
    z-index: 3;
    pointer-events: none;
}

/* Right: Content Column */
.culture-hero__content {
    display: flex;
    align-items: center;
    padding: clamp(24px, 5vw, 64px);
    background: var(--dark-bg);
    position: relative;
    z-index: 3;
}

.culture-identity-block {
    width: 100%;
    max-width: 600px;
}

/* Identity Header */
.culture-identity-header {
    margin-bottom: 3rem;
}

.culture-name {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin: 0 0 1rem 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.culture-genres {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--accent-gold);
    margin: 0 0 1.5rem 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.culture-mantra {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Story Section */
.culture-story {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.culture-story-intro {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
    font-weight: 500;
}

.culture-story-body {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* Quick Stats */
.culture-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quick-stat-number {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.quick-stat-label {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* CTA Buttons */
.culture-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.culture-cta .btn {
    min-width: 140px;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile: Stack layout with image background */
@media (max-width: 900px) {
    .culture-hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
        position: relative;
    }
    
    .culture-hero__media {
        height: 60vh;
        position: relative;
    }
    
    .culture-hero__media img {
        min-height: 60vh;
        height: 100%;
    }
    
    /* Darker gradient for mobile readability */
    .culture-hero__media::after {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.0) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.85) 85%,
            rgba(0, 0, 0, 0.95) 100%
        );
    }
    
    /* Content overlays image on mobile */
    .culture-hero__content {
        position: relative;
        background: transparent;
        padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem);
        min-height: auto;
        align-items: flex-start;
    }
    
    .culture-identity-block {
        width: 100%;
    }
    
    .culture-name {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .culture-genres {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .culture-mantra {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .culture-story {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .culture-quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .quick-stat {
        align-items: center;
        text-align: center;
    }
    
    .culture-cta {
        justify-content: center;
        flex-direction: column;
    }
    
    .culture-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Club haze background effect */
.epk-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible; /* Changed to visible so blobs extend beyond edges */
}

.epk-haze-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.epk-haze-blob-1 {
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: rgba(220, 38, 38, 0.4); /* red - much more visible */
    z-index: 1;
}

.epk-haze-blob-2 {
    top: 20%;
    right: -80px;
    width: 600px;
    height: 600px;
    background: rgba(250, 204, 21, 0.3); /* yellow/gold - much more visible */
    z-index: 1;
}

.epk-haze-blob-3 {
    bottom: -80px;
    left: 40%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.15); /* white - much more visible */
    filter: blur(140px);
    z-index: 1;
}

.epk-haze-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.epk-haze-grain {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2260%22 height=%2260%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%2260%22 height=%2260%22 filter=%22url(%23n)%22 opacity=%220.55%22/%3E%3C/svg%3E');
    background-size: 60px 60px;
    z-index: 3;
}

/* Dark gradient overlay for mobile hero */
.epk-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 2;
    display: none; /* Hidden on desktop */
}

.epk-hero-section .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 3;
    height: auto;
    display: block;
}

.signature-sound-section .container {
    position: relative;
    z-index: 3;
}

body.culture-page main {
    margin: 0;
    padding: 0;
}

/* Desktop layout - image left, text right */
@media (min-width: 851px) {
    .epk-hero-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: clamp(30px, 5vw, 80px) !important;
        align-items: center !important;
        min-height: auto !important;
        padding: clamp(40px, 6vw, 90px) clamp(18px, 5vw, 80px) !important;
        position: relative !important;
        z-index: 2;
        width: 100% !important;
        max-width: 1300px !important;
        margin: 0 auto !important;
        height: auto !important;
    }

    .epk-hero-image {
        position: relative !important;
        width: 100% !important;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        order: 1 !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        height: auto !important;
        z-index: auto !important;
        grid-column: 1 !important;
    }

    .epk-hero-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        object-position: center;
        border-radius: 15px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        min-width: auto !important;
        min-height: auto !important;
    }

    .epk-hero-text {
        text-align: left !important;
        order: 2 !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin: 0 !important;
        z-index: 2 !important;
        display: block !important;
        width: 100% !important;
        grid-column: 2 !important;
    }
    
    .epk-hero-text .epk-name {
        color: var(--text-light) !important;
        opacity: 1 !important;
    }
    
    .epk-hero-text .epk-tagline {
        color: var(--text-light) !important;
    }
    
    .epk-hero-text .epk-roles {
        color: var(--text-gray) !important;
    }
}

/* Default styles (will be overridden by mobile media query) */
.epk-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    min-height: auto;
    padding: clamp(40px, 6vw, 90px) clamp(18px, 5vw, 80px);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.epk-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    order: 1;
}

.epk-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.epk-hero-text {
    text-align: left;
    order: 2;
}

.epk-name {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(42px, 5vw, 84px);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 0.95;
    opacity: 1;
    animation: fadeInName 0.6s ease-out;
}

@keyframes fadeInName {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero reveal elements - hidden initially, reveal on scroll */
.hero-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.epk-role {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.epk-roles {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(14px, 1.4vw, 18px);
    color: var(--text-gray);
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-bottom: 22px;
}

.epk-roles span {
    display: inline-block;
}

.epk-bio-section {
    padding: 5rem 0;
    background: transparent;
}

.epk-bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.epk-bio-text p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Hero tagline (in epk-hero-text) */
.epk-hero-text .epk-tagline {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-style: normal;
    text-align: center;
}

/* Bio section tagline (existing) */
.epk-bio-section .epk-tagline {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 2rem;
    text-align: center;
}

.epk-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.epk-hero-cta .btn {
    min-width: 160px;
}

.epk-personal-section {
    padding: 5rem 0;
    background: transparent;
}

.epk-personal-content {
    max-width: 1000px;
    margin: 0 auto;
}

.epk-personal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.epk-info-item h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.epk-info-item p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
}

.epk-mantra-section {
    padding: 5rem 0;
    background: transparent;
    text-align: center;
}

.epk-mantra-quote {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin: 2rem 0;
    border: none;
    padding: 0;
}

.epk-mantra-attribution {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 1rem;
}


/* ================================
   WOZA About Section
   ================================ */
.woza-about {
    padding: 5rem 0;
    background: transparent;
}

.woza-about__header {
    text-align: center;
    margin-bottom: 3rem;
}

.woza-about__eyebrow {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.woza-about__title {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin: 0.5rem 0;
    line-height: 1.2;
}

.woza-about__tagline {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.woza-about__image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.woza-about__image img {
    width: 100%;
    height: auto;
    display: block;
}

.woza-about__content {
    max-width: 800px;
    margin: 0 auto;
}

.woza-about__copy {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.woza-about__bullets {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.woza-about__bullets li {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woza-about__bullets li:last-child {
    border-bottom: none;
}

.woza-about__cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.woza-about__cta .btn {
    min-width: 180px;
}

.woza-about__social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.woza-about__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(253, 208, 35, 0.1);
}

.woza-about__social a:hover {
    color: var(--primary-color);
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 208, 35, 0.3);
}

.woza-about__social svg {
    width: 24px;
    height: 24px;
}

.epk-performances-section {
    padding: 5rem 0;
    background: transparent;
}

.epk-performances-content {
    max-width: 900px;
    margin: 0 auto;
}

.epk-performances-content h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin: 1rem 0 2rem;
}

.epk-performances-content p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.epk-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.epk-highlights li {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.epk-highlights li::before {
    content: '•';
    color: var(--accent-gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.epk-brands {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(208, 197, 197, 0.1);
}

.epk-brands h4 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.epk-brands p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
}

.epk-social-section {
    padding: 5rem 0;
    background: transparent;
}

.epk-social-content {
    max-width: 900px;
    margin: 0 auto;
}

.epk-social-text {
    margin-bottom: 2rem;
}

.epk-social-text p {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.epk-social-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.epk-social-handle {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.epk-social-handle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.epk-social-handle:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.epk-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 8px;
}

.epk-stat-item h4 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.epk-stat-item p {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.epk-stat-item p a {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.epk-stat-item p a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.epk-services-section {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.epk-contact-section {
    padding: 5rem 0;
    background: transparent;
    text-align: center;
}

.epk-contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.epk-contact-info {
    margin: 2rem 0;
}

.epk-contact-item {
    margin-bottom: 2rem;
}

.epk-contact-item h3 {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.epk-contact-item p {
    font-family: 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.epk-contact-item a {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.epk-contact-item a:hover {
    color: var(--accent-gold);
}

.epk-booking-note {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.epk-contact-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.epk-contact-social a {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.epk-contact-social a:hover {
    color: var(--accent-gold);
}

/* Instagram hover - pink/red */
.epk-contact-social a[aria-label="Instagram"]:hover {
    color: #E4405F;
}

/* SoundCloud hover - orange */
.epk-contact-social a[aria-label="SoundCloud"]:hover {
    color: #FF5500;
}

/* YouTube hover - red */
.epk-contact-social a[aria-label="YouTube"]:hover {
    color: #FF0000;
}

/* Signature Sound Section */
.signature-sound-section {
    padding: 3rem 0;
    background: transparent; /* Changed from black to transparent so body background shows */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signature-sound-section .epk-hero-bg {
    z-index: 1;
}

.signature-sound-content {
    max-width: 800px;
    margin: 0 auto;
}

.signature-sound-text {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Signature Proof Bar */
.signature-proof-bar {
    padding: 2rem 0;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.proof-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.proof-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    transform: translateY(-2px);
}

@media (max-width: 850px) {
    .proof-pills {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .proof-pill {
        font-size: 0.85rem;
        padding: 0.45rem 1rem;
    }
}

/* Stats Strip Section */
.stats-strip-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-align: center;
}

.stat-label {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

/* Culture Stats / Credibility Section */
.culture-stats {
    position: relative;
    background: var(--light-bg);
    overflow: hidden;
}

.culture-stats .stats-container {
    position: relative;
    z-index: 2;
}

.culture-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 40% at 30% 20%, rgba(140,82,255,.06), transparent 70%);
    pointer-events: none;
}

.stats-container {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 120px) 16px;
    position: relative;
    z-index: 1;
}

.stats-intro {
    text-align: center;
    opacity: .55;
    letter-spacing: .3em;
    font-size: 11px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.stat-card {
    padding: 18px 20px;
    min-height: 88px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 12px 26px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card.wide {
    grid-column: 1 / -1;
}

.stat-card .stat-value {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: .02em;
    color: var(--accent-gold);
    font-weight: 700;
}

.stat-card.wide .stat-value {
    font-size: clamp(24px, 3vw, 30px);
}

.stat-card .stat-label {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-size: 11px;
    opacity: .65;
    color: var(--text-gray);
}

@media (max-width: 860px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card.wide {
        grid-column: auto;
    }
}

/* Testimonial Block */
.testimonial-block {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    text-align: center;
}

.testimonial-quote {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
    padding: 0;
    border: none;
    font-style: italic;
    line-height: 1.3;
}

.testimonial-attribution {
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: normal;
}

/* Early CTA Section */
.cta-early-section {
    padding: 3rem 0;
    background: transparent;
    text-align: center;
}

.cta-early-content {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-early-section .btn {
    min-width: 180px;
}

/* Responsive EPK Sections */
@media (max-width: 850px), (max-height: 1280px) {
    /* MOBILE HERO: Full-screen with image background and text overlay */
    .epk-hero-section {
        position: relative;
        height: 100svh;
        width: 100%;
        overflow: hidden;
        padding: 0;
        margin: 0;
        margin-top: 0;
        top: 0;
    }
    
    /* Hide gradient overlay on desktop, show on mobile */
    .epk-hero-section::before {
        display: none;
    }
    
    /* Show gradient overlay on mobile */
    @media (max-width: 850px), (max-height: 1280px) {
    .epk-hero-section::before {
        display: block;
        }
    }

    .epk-hero-section .container {
        position: relative;
        height: 100%;
        padding: 0;
    }

    .epk-hero-content {
        position: relative;
        height: 100%;
        display: block;
        grid-template-columns: none;
        gap: 0;
        min-height: 100%;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Hero image covers full viewport on mobile */
    .epk-hero-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        border-radius: 0;
        box-shadow: none;
    }

    .epk-hero-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        min-width: 100%;
        min-height: 100%;
        max-width: none;
        border-radius: 0;
    }

    /* Text sits ON TOP of the image */
    .epk-hero-text {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 7svh;
        padding: 1.25rem 1.5rem;
        text-align: center;
        z-index: 2;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(6px);
        border-radius: 12px;
        margin: 0 16px;
    }

    /* Optional: soft fade behind text so it reads better */
    .epk-hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 40svh;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        z-index: 1;
        pointer-events: none;
    }

    /* Make title scale nicely - white text on mobile */
    .epk-name {
        margin: 0 0 10px;
        font-size: clamp(2.4rem, 11vw, 3.5rem);
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 0.95;
        text-align: center;
        color: #ffffff;
    }
    
    /* White tagline on mobile */
    .epk-hero-text .epk-tagline {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.4;
        margin-top: 0.75rem;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Hero reveal on mobile - ensure proper timing */
    .epk-hero-text .hero-reveal {
        transition-delay: 0.2s;
    }
    
    .epk-hero-text .hero-reveal.revealed {
        transition-delay: 0s;
    }
    
    /* Mobile Hero CTA */
    .epk-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.25rem;
    }
    
    .epk-hero-cta .btn {
        width: 100%;
        max-width: 280px;
        position: relative;
        z-index: 3;
    }

    /* Hide stats on mobile - simplify hero copy */
    .epk-roles {
        display: none;
    }
    
    .epk-role {
        font-size: 2rem;
    }
    
    .epk-mantra-quote {
        font-size: 2.5rem;
    }
    
    
    .epk-personal-info {
        grid-template-columns: 1fr;
    }
    
    .epk-social-stats {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Stats Strip */
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Mobile Testimonial */
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    /* Mobile CTA Early */
    .cta-early-content {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-early-section .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* WOZA About Section Mobile */
    .woza-about {
        padding: 3rem 0;
    }
    
    .woza-about__header {
        margin-bottom: 2rem;
    }
    
    .woza-about__image {
        margin-bottom: 2rem;
        border-radius: 10px;
    }
    
    .woza-about__title {
        font-size: 2rem;
    }
    
    .woza-about__tagline {
        font-size: 1.25rem;
    }
    
    .woza-about__copy {
        font-size: 1rem;
    }
    
    .woza-about__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .woza-about__cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .woza-about__social {
        gap: 1rem;
    }
    
    .woza-about__social a {
        width: 44px;
        height: 44px;
    }
    
    .woza-about__social svg {
        width: 22px;
        height: 22px;
    }
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .navbar,
    .scroll-indicator,
    .cta,
    .footer {
        display: none;
    }
}

/* ================================
   JavaScript State Classes (for replacing inline styles)
   ================================ */

/* Page load animation */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}
body.loaded {
    opacity: 1;
}

/* Filter card animations */
.edit-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
}
.edit-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    display: none;
}
.edit-card.visible {
    opacity: 1;
    transform: scale(1);
    display: block;
}

/* Product size selection */
.product-sizes span.active {
    background: var(--primary-color);
}

/* Color swatch selection */
.color-swatch.active {
    transform: scale(1.2);
    border-color: var(--primary-color);
}

/* Add to cart button states */
.btn-primary.added {
    background: #4caf50;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
}
.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Video error fallback */
.hero-video.error {
    display: none;
}
.hero-fallback {
    display: none;
}
.hero-video.error ~ .hero-fallback,
.hero:has(.hero-video.error) .hero-fallback {
    display: block;
}

/* Empty state visibility */
.events-empty-state,
.tickets-empty-state {
    display: none;
}
.events-empty-state.visible,
.tickets-empty-state.visible {
    display: block;
}
.events-slider.hidden {
    display: none;
}


/* ================================
   Playlists Page - Clean Column Layout
   ================================ */
.playlists-hero-section {
    padding-top: 140px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    min-height: auto;
    scroll-margin-top: 100px;
}

.playlists-hero-section .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
}

.playlists-hero-section .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
    letter-spacing: 0.04em;
}

.playlists-header {
    width: min(1100px, 92vw);
    margin: 10px auto 18px;
    opacity: 0.9;
    text-align: center;
}

.playlists-header h2 {
    margin: 0 0 6px;
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.playlists-header p {
    margin: 0;
    opacity: 0.75;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.playlists {
    width: min(1100px, 92vw);
    margin: 10px auto 0;
    padding: 14px 0 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

@media (max-width: 850px) {
    .playlists {
        grid-template-columns: 1fr;
    }
}

.playlist-card {
    position: relative;
    padding: 26px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.playlist-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.playlist-title {
    margin: 0 0 16px 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.playlist-links {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pill:hover:not(.is-disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* ================================
   DJ MIXES PAGE ( /mixes )
   ================================ */
body.mixes-page {
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(70, 29, 124, 0.22), transparent 60%),
    radial-gradient(900px 600px at 85% 30%, rgba(220, 40, 40, 0.14), transparent 55%),
    #050507;
  color: #f2f2f2;
}

/* Optional: glass navbar on desktop (mixes page only) */
@media (min-width: 900px) {
  body.mixes-page .navbar:not(.scrolled) {
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  }
}

/* --- Hero --- */
body.mixes-page .mixes-hero-section {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 46px;
  position: relative;
  overflow: hidden;
}

body.mixes-page .mixes-hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 35%, rgba(70,29,124,.28), transparent 60%),
    radial-gradient(700px 400px at 70% 20%, rgba(255, 70, 70, .16), transparent 55%);
  pointer-events:none;
}

body.mixes-page .mixes-hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}

body.mixes-page .section-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 62px);
  margin: 0 0 10px;
}

body.mixes-page .hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: clamp(14px, 1.3vw, 18px);
  margin: 0;
}

/* Scroll indicator */
body.mixes-page .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  opacity: 0.75;
}
body.mixes-page .scroll-indicator span {
  display: block;
  width: 2px;
  height: 22px;
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  animation: mixesScrollPulse 1.35s ease-in-out infinite;
}
@keyframes mixesScrollPulse {
  0%, 100% { transform: translateY(0); opacity: .45; }
  50% { transform: translateY(7px); opacity: .95; }
}

/* --- Filters --- */
body.mixes-page .filter-section {
  position: relative;
  z-index: 40;
  padding: 16px 0;
  background: rgba(0,0,0,0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

body.mixes-page .filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

body.mixes-page .filter-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  user-select: none;
}

body.mixes-page .filter-btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

body.mixes-page .filter-btn.active {
  background: rgba(255,255,255,0.88);
  color: #0b0b0f;
  border-color: rgba(255,255,255,0.9);
}

/* --- Mixes section --- */
body.mixes-page .mixes-section {
  position: relative;
  padding: 44px 0 70px;
}

body.mixes-page .bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

body.mixes-page .bg-glow-purple { background: rgba(70, 29, 124, 0.55); }
body.mixes-page .bg-glow-gold   { background: rgba(255, 140, 0, 0.25); }
body.mixes-page .bg-glow-top-left { top: -220px; left: -220px; }
body.mixes-page .bg-glow-bottom-right { bottom: -260px; right: -240px; }

body.mixes-page .mixes-section .container {
  position: relative;
  z-index: 2;
}

/* Empty state (works with JS toggling .visible, even if inline display:none exists) */
body.mixes-page .mixes-empty-state {
  text-align: center;
  margin: 18px 0 28px;
  display: none;
}
body.mixes-page .mixes-empty-state.visible {
  display: block !important;
}

body.mixes-page .empty-state-content {
  display: inline-block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}
body.mixes-page .empty-state-message {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

/* --- Grid --- */
body.mixes-page .mixes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
body.mixes-page .mixes-grid.hidden {
  display: none !important;
}
@media (max-width: 1200px) {
  body.mixes-page .mixes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  body.mixes-page .mixes-grid { grid-template-columns: 1fr; }
}

/* --- Card --- */
body.mixes-page .mix-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 18px 60px rgba(0,0,0,0.38);
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, opacity .2s ease;
}
body.mixes-page .mix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 26px 90px rgba(0,0,0,0.50);
}

/* JS filter states */
body.mixes-page .mix-card.hidden { display: none !important; }
body.mixes-page .mix-card.visible { display: block; }

body.mixes-page .mix-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.03);
}

body.mixes-page .mix-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  filter: saturate(1.05) contrast(1.02);
}

/* --- Info area --- */
body.mixes-page .mix-info {
  padding: 18px 18px 16px;
  background: rgba(0,0,0,0.18);
}

body.mixes-page .mix-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
}

body.mixes-page .mix-artist {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Meta row (genre + duration) */
body.mixes-page .mix-genre,
body.mixes-page .mix-duration {
  display: inline-block;
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}

body.mixes-page .mix-genre::after {
  content: " • ";
  color: rgba(255,255,255,0.35);
  margin: 0 8px;
}

body.mixes-page .youtube-embed-container {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.4);
}

body.mixes-page .youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

/* --- Mobile tuning --- */
@media (max-width: 540px) {
  body.mixes-page .mixes-hero-section { padding: 108px 0 36px; }
  body.mixes-page .filter-btn { padding: 9px 14px; font-size: 13px; }
  body.mixes-page .mix-info { padding: 16px 16px 14px; }
}

/* ================================
   DJ MIXES PAGE — MOBILE BOOST
   (overrides for small screens)
   ================================ */

/* Prevent sticky filter from colliding with your navbar height */
@media (max-width: 900px) {
  /* Mixes filters are not sticky; no top offset needed */
}

/* HERO: tighter + centered + less empty space */
@media (max-width: 700px) {
  body.mixes-page .mixes-hero-section {
    min-height: 38vh;
    padding: 104px 0 26px;
  }

  body.mixes-page .section-title {
    font-size: clamp(28px, 8vw, 42px);
    letter-spacing: 0.05em;
    line-height: 1.05;
    padding: 0 14px;
  }

  body.mixes-page .hero-subtitle {
    font-size: 14px;
    padding: 0 18px;
    line-height: 1.35;
  }

  body.mixes-page .scroll-indicator { display: none; }
}

/* FILTERS: swipeable row instead of wrapping into 3 lines */
@media (max-width: 700px) {
  body.mixes-page .filter-section {
    padding: 12px 0;
    background: rgba(0,0,0,0.34);
  }

  body.mixes-page .filter-buttons {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 10px;
    padding: 0 14px;
  }

  body.mixes-page .filter-buttons::-webkit-scrollbar { display: none; }

  body.mixes-page .filter-btn {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 999px;
    white-space: nowrap;
  }

  body.mixes-page .filter-btn.active {
    box-shadow: 0 10px 22px rgba(255,255,255,0.12);
  }
}

/* GRID: 1 column + consistent spacing */
@media (max-width: 980px) {
  body.mixes-page .mixes-section { padding: 26px 0 60px; }
  body.mixes-page .mixes-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* CARD: better tap targets, less heavy shadows, bigger play button */
@media (max-width: 700px) {
  body.mixes-page .mix-card {
    border-radius: 16px;
    box-shadow: 0 14px 44px rgba(0,0,0,0.38);
  }

  body.mixes-page .mix-thumbnail { aspect-ratio: 16 / 9; }

  body.mixes-page .mix-info {
    padding: 14px 14px 12px;
  }

  body.mixes-page .mix-info h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  body.mixes-page .mix-artist {
    font-size: 12px;
    margin-bottom: 8px;
  }

  body.mixes-page .mix-genre,
  body.mixes-page .mix-duration {
    font-size: 12px;
  }

  body.mixes-page .youtube-embed-container {
    margin-top: 12px;
    border-radius: 12px;
  }
}

/* Make the whole card feel tappable (nice for iOS) */
@media (max-width: 700px) {
  body.mixes-page .mix-card:active {
    transform: scale(0.995);
    border-color: rgba(255,255,255,0.16);
  }
}

/* NAV: prevent crowding */
@media (max-width: 900px) {
  /* Hide desktop menu; rely on your hamburger / mnav */
  body.mixes-page .nav-menu { display: none; }

  body.mixes-page .navbar {
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  body.mixes-page .nav-container {
    padding: 10px 14px;
  }

  body.mixes-page .logo img {
    max-height: 34px;
    width: auto;
  }

  body.mixes-page .nav-right .social-links { display: none; } /* optional: keeps it clean */
}

/* EMPTY STATE: readable and not huge */
@media (max-width: 700px) {
  body.mixes-page .empty-state-content {
    max-width: 92%;
    padding: 12px 14px;
    border-radius: 14px;
  }
  body.mixes-page .empty-state-message {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* Reduce motion for users that prefer it */
@media (prefers-reduced-motion: reduce) {
  body.mixes-page .mix-card,
  body.mixes-page .filter-btn,
  body.mixes-page .play-btn,
  body.mixes-page .scroll-indicator span {
    transition: none !important;
    animation: none !important;
  }
}

.pill[href*="spotify"] {
    border-color: rgba(30, 215, 96, 0.35);
}

.pill.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.playlist-desc {
    margin: 16px 0 0 0;
    opacity: 0.85;
    line-height: 1.5;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ================================
   TICKETS: DICE-STYLE LAYOUT
   ================================ */

.tickets-carousel-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.tickets-carousel-section .container {
    max-width: 1200px;
}

/* Hero Actions - Subtle navigation link at top */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -16px 0 28px 0;
}

.hero-scroll-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.hero-scroll-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll-link .arrow-down {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hero-scroll-link:hover .arrow-down {
    transform: translateY(3px);
}

.tickets-split {
    display: grid;
    grid-template-columns: 420px 1fr; /* left poster card + right details */
    gap: 56px;
    align-items: start;
    margin-top: 24px;
}

/* LEFT column = "poster card" */
.tickets-carousel {
    position: sticky;
    top: 110px; /* so it stays while scrolling details */
}

.tickets-slider {
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

/* Make the slide feel like a poster card */
.ticket-slide {
    display: none;
    width: 100%;
}

.ticket-slide.active {
    display: block;
}

.ticket-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Carousel arrows positioned like DICE */
.tickets-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    z-index: 5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tickets-carousel .carousel-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.25);
}

.tickets-carousel .prev-btn {
    left: -18px;
}

.tickets-carousel .next-btn {
    right: -18px;
}

.tickets-carousel .carousel-btn svg {
    width: 26px;
    height: 26px;
    opacity: 0.95;
    fill: currentColor;
}

/* Dots under poster */
.tickets-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.tickets-dots button,
.tickets-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.tickets-dots button.active,
.tickets-dots .dot.active {
    background: rgba(255, 255, 255, 0.75);
}

/* RIGHT column = big title + meta + about */
.event-details-panel {
    padding: 22px;
    border-radius: 22px;
    border: none;
    background: transparent;
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
}

/* Panel Header */
.panel-header {
    margin-bottom: 18px;
}

.panel-header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 14px;
}

/* Badge like "Upcoming" */
.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: 1px solid rgba(253, 208, 35, 0.3);
    background: rgba(253, 208, 35, 0.12);
    color: var(--accent-gold);
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(253, 208, 35, 0.15);
}

/* Pulse glow animation for primary buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(216, 58, 46, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(216, 58, 46, 0.2);
    }
}

/* Tickets header button - extends .btn-primary (no additional styles needed) */

/* BIG DICE title */
.panel-title {
    font-family: 'Malvides', 'AvenirCondensedHand', sans-serif;
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--accent-gold);
}

.panel-title br {
    display: block;
    content: '';
    margin-top: 0.2em;
}

/* Short summary under title */
.panel-sub {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.78;
    max-width: 62ch;
    margin-bottom: 22px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta row style */
.panel-meta {
    display: grid;
    gap: 10px;
    margin: 18px 0 18px;
    max-width: 560px;
    padding: 0;
    border: none;
    background: transparent;
}

.panel-meta .meta-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: baseline;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-meta .meta-row span {
    font-size: 13px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.panel-meta .meta-row strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    text-align: left;
}

/* Tags like chips */
.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 14px;
}

.panel-tags .tag {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.18);
    color: var(--text-light);
    font-family: 'AvenirCondensedHand', sans-serif;
}

/* Sections (About feel) */
.panel-sections {
    margin-top: 26px;
    max-width: 72ch;
    display: grid;
    gap: 0;
}

/* Mini section for Host/DJs */
.panel-mini {
    margin: 14px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-mini .mini-line {
    font-size: 14px;
    line-height: 1.6;
    margin: 4px 0;
    opacity: 0.85;
    color: var(--text-light);
}

.panel-mini .mini-line strong {
    font-weight: 600;
    opacity: 0.9;
}

/* Accordion/details styling */
.panel-details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 12px 14px;
    margin-top: 10px;
    transition: background 0.2s ease;
}

.panel-details[open] {
    background: rgba(255, 255, 255, 0.05);
}

.panel-details summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    opacity: 0.85;
    color: var(--text-light);
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    padding: 4px 0;
    user-select: none;
}

.panel-details summary::-webkit-details-marker {
    display: none;
}

.panel-details summary::after {
    content: '+';
    float: right;
    font-weight: 300;
    font-size: 16px;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.panel-details[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.panel-details ul,
.panel-details p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.86;
    color: var(--text-light);
}

.panel-details ul {
    margin-left: 18px;
    display: grid;
    gap: 6px;
    list-style: none;
    padding: 0;
}

.panel-details ul li {
    position: relative;
    padding-left: 1rem;
}

.panel-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Legacy panel-block styles (for backwards compatibility if needed) */
.panel-block {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.panel-block:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.panel-block h4 {
    font-size: 20px;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
    color: var(--accent-gold);
    font-family: 'Impact', 'AvenirCondensedHand', sans-serif;
    text-transform: none;
    opacity: 1;
}

.panel-block p,
.panel-block li {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.86;
    color: var(--text-light);
}

.panel-block ul {
    margin-left: 18px;
    display: grid;
    gap: 6px;
    list-style: none;
    padding: 0;
}

.panel-block ul li {
    position: relative;
    padding-left: 1rem;
}

.panel-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* CTA button like DICE */
.panel-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#panelTicketsBtn.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
}

/* ================================
   MOBILE: stack like DICE
   ================================ */
@media (max-width: 980px) {
    .tickets-carousel-section {
        padding: 100px 0 60px;
    }

    .hero-actions {
        margin: -12px 0 20px 0;
    }

    .hero-scroll-link {
        font-size: 13px;
    }

    .panel-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-tickets-header {
        width: 100%;
        min-height: 48px;
    }

    .tickets-split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tickets-carousel {
        position: relative;
        top: auto;
    }

    .tickets-carousel .prev-btn {
        left: 10px;
    }

    .tickets-carousel .next-btn {
        right: 10px;
    }

    .panel-meta .meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .panel-meta .meta-row strong {
        text-align: left;
    }
}

/* ================================
   WOZA Event Page Styles
   ================================ */



/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .nav-right .social-links a {
        transition: none !important;
    }
}

/* ================================
   CONTACT PAGE — MOBILE FIX
   ================================ */
@media (max-width: 853px) {
    .contact-section {
        padding: 3.25rem 0;
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    /* Put form first */
    .contact-form-container {
        order: 1;
    }

    .contact-info-container {
        order: 2;
    }

    /* Headings */
    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.6rem;
        line-height: 1.15;
        text-align: left;
        margin-bottom: 1rem;
    }

    /* Give both sides the same "card" feel */
    .contact-form-container,
    .contact-info-container {
        width: 100%;
        padding: 1.25rem 1rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Form spacing + input sizing */
    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form label {
        font-size: 0.95rem;
        opacity: 0.85;
        margin-bottom: 0.45rem;
        display: inline-block;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        min-height: 48px;
        font-size: 16px; /* prevents iOS zoom */
        padding: 0.9rem 0.95rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(0, 0, 0, 0.25);
        color: #fff;
        outline: none;
    }

    .contact-form textarea {
        min-height: 130px;
        resize: vertical;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: rgba(255, 255, 255, 0.45);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
    }

    .btn.btn-primary.btn-block {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
        font-size: 1rem;
    }

    /* =======================
       CONTACT INFO -> CARDS
       ======================= */
    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 1rem;
    }

    .info-item {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 0.85rem;
        align-items: center;
        padding: 1rem;
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .info-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
        opacity: 0.9;
    }

    .info-content h4 {
        font-size: 0.95rem;
        margin: 0 0 0.15rem 0;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        opacity: 0.8;
    }

    .info-content a,
    .info-content p {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.25;
        color: rgba(255, 255, 255, 0.92);
    }

    /* FIX: email styling breaking lines on mobile */
    .email-link {
        display: inline-block;
        word-break: break-word;
        overflow-wrap: anywhere;
        text-decoration: none;
    }

    .email-dot {
        display: none;
    } /* remove the middle dot trick on mobile */

    /* Optional: make email + phone feel tappable */
    .info-content a {
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        padding-bottom: 2px;
    }
}

/* =========================================================
   SERVICES PAGE (Clean rebuild) — Desktop + Mobile
   Targets: body.services-page
   ========================================================= */

/* Page container (only affects this page) */
.services-page{
  background: #000;
  color: #fff;
}

.services-page .container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* --------------------------
   HERO
--------------------------- */
.services-page .wedding-landing-hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding-top: 84px; /* navbar space */
}

.services-page .wedding-hero-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

.services-page .wedding-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.78)),
    radial-gradient(circle at 30% 25%, rgba(70,29,124,.35), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.07), transparent 55%);
}

.services-page .wedding-hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 18px;
  max-width: 900px;
}

.services-page .wedding-hero-title{
  margin: 0 0 10px;
  line-height: 1.05;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  letter-spacing: .02em;
}

.services-page .wedding-hero-subtitle{
  margin: 0;
  opacity: .9;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.services-page .scroll-indicator{
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: .85;
}

.services-page .scroll-indicator span{
  display: block;
  width: 2px;
  height: 46px;
  background: rgba(255,255,255,.45);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.services-page .scroll-indicator span::after{
  content:"";
  position:absolute;
  top:-18px; left:0;
  width:2px; height:18px;
  background: rgba(255,255,255,.95);
  animation: servicesScroll 1.35s infinite ease-in-out;
}
@keyframes servicesScroll{
  0%{ transform: translateY(0); opacity: 0; }
  25%{ opacity: 1; }
  100%{ transform: translateY(72px); opacity: 0; }
}

/* --------------------------
   ABOUT
--------------------------- */
.services-page .about-section{
  padding: 72px 0;
}

.services-page .about-content{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.services-page .about-text h2{
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
}

.services-page .about-text p{
  margin: 0 0 14px;
  line-height: 1.75;
  opacity: .92;
  max-width: 62ch;
}

.services-page .about-image img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
}

/* --------------------------
   SECTION TITLES
--------------------------- */
.services-page .section-title{
  text-align: center;
  margin: 0 0 26px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: .04em;
  position: relative;
}

.services-page .section-title::after{
  content:"";
  display:block;
  width: 46px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

/* --------------------------
   SERVICES SECTIONS (background glows)
--------------------------- */
.services-page .services-section{
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

/* If you already have bg-glow classes site-wide, this will enhance them here */
.services-page .bg-glow{
  position: absolute;
  width: 420px;
  height: 420px;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}

.services-page .bg-glow-top-right{
  top: -120px;
  right: -140px;
}

.services-page .bg-glow-bottom-left{
  bottom: -160px;
  left: -160px;
}

/* Fallback colors if your global ones don’t exist */
.services-page .bg-glow-purple{ background: rgba(70,29,124,1); }
.services-page .bg-glow-gold{ background: rgba(255,215,140,1); }

/* --------------------------
   GRIDS
--------------------------- */
.services-page .services-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* --------------------------
   CARDS
--------------------------- */
.services-page .service-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}

.services-page .service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
}

.services-page .service-card > img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.services-page .service-content{
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.services-page .service-content h3{
  margin: 0;
  font-size: 1.15rem;
}

.services-page .service-content p{
  margin: 0;
  line-height: 1.65;
  opacity: .92;
}

/* Kill inline list styling visually by re-styling ul/li */
.services-page .service-content ul{
  margin: 6px 0 0;
  padding-left: 1.1rem;
  text-align: left;
  opacity: .9;
}
.services-page .service-content li{
  margin: 6px 0;
  line-height: 1.5;
}

/* Button inside service cards */
.services-page .service-content .btn{
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  border-radius: 14px;
}

/* “What You Get” cards (no images) */
.services-page .services-section:nth-of-type(2) .service-card > img{
  display: none;
}

/* --------------------------
   CTA SECTION
--------------------------- */
.services-page .contact-section{
  padding: 84px 0;
}

.services-page .contact-info-container h2{
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.services-page .contact-info-container p{
  line-height: 1.65;
  opacity: .92;
}

.services-page .contact-info-container .btn{
  border-radius: 14px;
  padding: 14px 16px;
}

/* Email wrap */
.services-page .email-link{
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  word-break: break-word;
}

/* ==========================
   TABLET
========================== */
@media (max-width: 900px){
  .services-page .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page .about-content{
    grid-template-columns: 1fr;
  }

  .services-page .about-text p{
    max-width: 100%;
  }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 600px){
  .services-page .wedding-landing-hero{
    min-height: 92vh;
    padding-top: 76px;
  }

  .services-page .about-section,
  .services-page .services-section,
  .services-page .contact-section{
    padding: 56px 0;
  }

  .services-page .services-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-page .service-card{
    border-radius: 16px;
  }

  .services-page .service-card > img{
    height: 190px;
  }

  /* CTA buttons stack clean */
  .services-page .contact-info-container > div[style*="display: flex"]{
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .services-page .contact-info-container > div[style*="display: flex"] .btn{
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Contact info rows: better spacing */
  .services-page .contact-info{
    gap: 18px !important;
  }

  .services-page .info-item{
    flex-direction: column;
    gap: 10px !important;
  }
}

/* =========================================================
   CONTACT PAGE — FAQ polish
   (Fixes global heading centering + improves accordion layout)
   ========================================================= */

body.contact-page .faq-section{
  background: transparent;
  padding: 0;
}

body.contact-page .faq-container{
  max-width: none;
  margin: 0;
}

body.contact-page .faq-item{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 70px rgba(0,0,0,0.45);
}

body.contact-page .faq-question{
  padding: 18px 20px;
  gap: 16px;
}

body.contact-page .faq-question:hover{
  background: rgba(255,255,255,0.06);
}

body.contact-page .faq-question h3{
  margin: 0;
  flex: 1;
  text-align: left;
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
}

body.contact-page .faq-toggle{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  flex: 0 0 auto;
}

body.contact-page .faq-answer{
  transition: max-height 0.35s ease;
}

body.contact-page .faq-answer p{
  padding: 0 20px 18px;
  margin: 0;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 600px){
  body.contact-page .faq-question{
    padding: 16px 16px;
  }

  body.contact-page .faq-answer p{
    padding: 0 16px 16px;
  }
}

/* =========================
   Mixes: Better Play Button
   ========================= */

/* Make sure thumbnail is a positioning context */
body.mixes-page .mix-thumbnail{
  position: relative;
  overflow: hidden;
  border-radius: 18px; /* match your card rounding */
}

/* Optional: subtle dim + nice hover */
body.mixes-page .mix-thumbnail::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(0,0,0,.10) 0%, rgba(0,0,0,.45) 70%);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

body.mixes-page .mix-card:hover .mix-thumbnail::after{
  opacity: 1;
}

/* Overlay covers full thumbnail and centers button */
body.mixes-page .play-overlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events: none; /* lets clicks go to the card */
  opacity: 0;
  transition: opacity .18s ease;
}

/* Desktop hover: reveal play button */
@media (hover: hover) and (pointer: fine){
  body.mixes-page .mix-card:hover .play-overlay{ opacity: 1; }
}

/* The button itself */
body.mixes-page .play-btn{
  pointer-events: none; /* keep card clickable */
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display:grid;
  place-items:center;

  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);

  box-shadow: 0 18px 45px rgba(0,0,0,.50);
  transform: translateZ(0);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

/* FIX: remove the text ▶ and draw the icon via CSS only */
body.mixes-page .play-icon{
  /* kill the text character */
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;

  /* keep the element size for centering */
  display: block;
  width: 22px;
  height: 22px;

  /* no borders here */
  border: none !important;
  margin-left: 2px;
  position: relative;
}

/* triangle play icon */
body.mixes-page .play-icon::before{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);

  width: 0;
  height: 0;
  border-left: 16px solid rgba(255,255,255,.95);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;

  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

/* Hover feel */
body.mixes-page .mix-card:hover .play-btn{
  transform: scale(1.06);
  background: rgba(0,0,0,.45);
  border-color: rgba(255,255,255,.32);
}

/* “Playing” state (optional – if you add the class in JS) */
body.mixes-page .mix-card.is-playing .play-icon{
  width: 18px;
  height: 18px;
  border: none;
  margin-left: 0;
  position: relative;
}
body.mixes-page .mix-card.is-playing .play-icon::before,
body.mixes-page .mix-card.is-playing .play-icon::after{
  content:"";
  position:absolute;
  top:0;
  width: 5px;
  height: 18px;
  background: rgba(255,255,255,.95);
  border-radius: 2px;
}
body.mixes-page .mix-card.is-playing .play-icon::before{ left: 3px; }
body.mixes-page .mix-card.is-playing .play-icon::after{ right: 3px; }

/* Mobile sizing */
@media (max-width: 600px){
  body.mixes-page .play-btn{
    width: 64px;
    height: 64px;
  }
  body.mixes-page .play-icon{
    width: 20px;
    height: 20px;
  }
  body.mixes-page .play-icon::before{
    border-left-width: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }
}

/* Touch devices: keep play button visible (no hover) */
@media (hover: none){
  body.mixes-page .play-overlay{ opacity: 1; }
}

/* ================================
   CULTURE HERO FIX (inviting + scroll indicator pinned)
   ================================ */

.culture-hero{
  position: relative;              /* KEY: anchors scroll indicator */
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding-top: 72px;               /* space for navbar */
  isolation: isolate;
}

/* image side */
.culture-hero__media{
  position: relative;
  height: 52svh;                   /* mobile: hero image takes top half */
  overflow: hidden;
}

.culture-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.05);
}

/* nicer overlay so text is readable but not “dead/dark” */
.culture-hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 25% 15%, rgba(70,29,124,.55), transparent 60%),
    radial-gradient(700px 500px at 80% 30%, rgba(220,170,65,.16), transparent 65%),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.75));
}

/* content side */
.culture-hero__content{
  display: grid;
  align-items: center;
  padding: 18px 16px 92px;         /* bottom padding so scroll indicator never overlaps */
}

/* make the block feel premium + readable */
.culture-identity-block{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(8px);
}

/* type scale improvements */
.culture-name{
  font-size: clamp(36px, 7.5vw, 62px);
  line-height: 1.05;
  letter-spacing: .08em;
  margin: 0 0 10px;
}

.culture-genres{
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 14px;
}

.culture-mantra{
  font-size: 15px;
  opacity: .9;
  margin: 0 0 16px;
}

.culture-story-intro{
  font-size: 14.5px;
  line-height: 1.55;
  opacity: .92;
  margin: 0 0 10px;
}

.culture-story-body{
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
  margin: 0;
}

/* stats: keep them clean + evenly spaced */
.culture-quick-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.quick-stat-number{
  font-size: 22px;
  letter-spacing: .04em;
}

.quick-stat-label{
  font-size: 12px;
  opacity: .75;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* CTA: prevent weird dot/pill artifacts + better spacing */
.culture-cta{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.culture-cta .btn{
  min-width: 180px;
  border-radius: 16px;
}

/* If you have pseudo-elements causing that red "dot", kill them only for these buttons */
.culture-cta .btn::before,
.culture-cta .btn::after{
  content: none !important;
}

/* ================================
   SCROLL INDICATOR (pinned inside hero)
   ================================ */
.culture-hero .scroll-indicator{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 44px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.25);
  z-index: 5;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.culture-hero .scroll-indicator span{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  animation: cultureScrollDot 1.2s infinite ease-in-out;
}

@keyframes cultureScrollDot{
  0%{ transform: translateY(-10px); opacity: .95; }
  70%{ transform: translateY(14px); opacity: .15; }
  100%{ transform: translateY(-10px); opacity: .95; }
}

/* desktop split-screen */
@media (min-width: 900px){
  .culture-hero{
    grid-template-columns: 1.05fr .95fr;
    padding-top: 84px;
  }

  .culture-hero__media{
    height: calc(100svh - 84px);
  }

  .culture-hero__content{
    padding: 0 24px 0;
  }

  .culture-identity-block{
    text-align: left;
    margin: 0;
    max-width: 560px;
  }

  .culture-cta{
    justify-content: flex-start;
  }

  .culture-hero .scroll-indicator{
    bottom: 26px;
  }
}