/* Fonts */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('assets/NeueHaasDisplayRoman.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('assets/NeueHaasDisplayBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('assets/NeueHaasDisplayMediu.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg-main: #F2F2F2;
    --color-bg-alt: #EDEDED;
    --color-text: #000000;
    --color-accent: #000000;
    --overlay-light: linear-gradient(210deg, #F2F2F2 24%, #F2F2F26B 100%);
    --overlay-radial: radial-gradient(at center center, #F2F2F2DE 24%, #F2F2F2 62%);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    cursor: url('assets/cursor-t-black.svg') 16 16, auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg-main);
    overflow-x: clip;
    cursor: url('assets/cursor-t-black.svg') 16 16, auto;
    line-height: 1.6;
}

a, button, .social-icon, .btn-ghost {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    cursor: url('assets/cursor-t-black.svg') 16 16, pointer;
}

img, .hero-image-v2, .acting-gallery img, .about-images img {
    cursor: url('assets/cursor-t-red.svg') 16 16, auto;
}

/* Red cursor over the dark hero photo (black cursor would be invisible there) */
.hero-section.v2,
.hero-section.v2 a,
.hero-section.v2 .social-icon,
.scroll-arrows-v2,
.main-header:not(.scrolled) a,
.main-header:not(.scrolled) .social-icon,
.main-header:not(.scrolled) .lang-switcher a {
    cursor: url('assets/cursor-t-red.svg') 16 16, auto;
}

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

/* Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 150px 0;
    position: relative;
}

.has-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.relative-content {
    position: relative;
    z-index: 2;
}

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

/* Typography */
h2.section-heading {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 3vw;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 40px;
}

h3 {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 1.8vw;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
}

@media(max-width: 768px) {
    h2.section-heading { font-size: 32px; }
    h3 { font-size: 20px; }
}

.heading-goldman {
    font-family: 'Goldman', sans-serif !important;
}

/* Navigation V2 */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 30px 0;
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(242, 242, 242, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5vw;
}



.nav-menu-top {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    width: 100%;
    z-index: 2;
    flex-wrap: nowrap;
}




.nav-menu-top a, .nav-menu-bottom a {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    position: relative;
    text-decoration: none;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: color 0.3s ease;
}

.main-header.scrolled .nav-menu-top a,
.main-header.scrolled .nav-menu-bottom a {
    color: #000;
    filter: none;
}

.nav-menu-top a:after, .nav-menu-bottom a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu-top a:hover:after, .nav-menu-bottom a:hover:after {
    width: 100%;
}

@media(max-width: 768px) {
    .main-header {
        background-color: transparent;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 0;
        z-index: 1000;
        box-shadow: none;
        transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    }

    .main-header.scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .nav-wrapper {
        padding: 0;
    }

    .nav-menu-top {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 24px;
        overflow-x: auto;
        width: 100%;
        padding: 5px 20px;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    }

    .nav-menu-top::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    .nav-menu-top a, .nav-menu-bottom a { 
        font-size: 12px;
        color: #ffffff;
        white-space: nowrap;
        letter-spacing: 1.5px;
        transition: color 0.3s ease;
    }

    .main-header.scrolled .nav-menu-top a {
        color: #000000;
    }
}

/* Hero Section */
/* Hero Section V2 */
.hero-section.v2 {
    height: 100vh;
    min-height: 600px;
    background-color: var(--color-bg-main);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.25) 100%), url('assets/13-1.jpg');
    background-size: cover;
    background-position: center 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    position: relative;
}

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

.hero-image-v2:hover {
    transform: scale(1.02);
}

.hero-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title-bg {
    height: 25vh;
    width: 100%;
    background-image: url('assets/THIA-VITTEK-napis-red.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 0;
    flex-shrink: 0;
    transform: scaleY(1.35);
    transform-origin: bottom center;
}

.scroll-arrows-v2 {
    position: absolute;
    top: 50%;
    left: 5vw;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    font-size: 30px;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
}

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

.social-links-v2 {
    position: absolute;
    top: 50%;
    right: 5vw;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.social-links-v2 .social-icon {
    font-size: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.social-links-v2 .social-icon:hover {
    transform: scale(1.2);
}

.hero-mobile-details, .hero-mobile-extra-info {
    display: none;
}

@media(max-width: 768px) {
    .hero-section.v2 {
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 80%), url('assets/13-1.jpg');
        background-size: cover;
        background-position: center top;
        height: 100vh;
        min-height: 700px;
        justify-content: flex-end; /* Keep space for content at bottom */
        overflow: hidden; /* Cut off everything that goes past the bottom edge */
    }
    .hero-content {
        padding-bottom: 0;
        flex-grow: 1;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        pointer-events: none; /* Let clicks pass through if needed, except social links */
    }
    .hero-image-v2 { 
        display: none; 
    }
    .scroll-arrows-v2 { 
        color: #fff; 
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        left: 5vw;
        top: 45%;
        transform: translateY(-50%);
        pointer-events: auto;
    }
    .social-links-v2 {
        top: 45%;
        right: 5vw;
        transform: translateY(-50%);
        pointer-events: auto;
        gap: 15px;
    }
    .social-links-v2 .social-icon { 
        color: #fff; 
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); 
        font-size: 22px;
    }
    .hero-title-bg {
        display: none; /* Hide the desktop SVG napis at the bottom */
    }
    
    /* Mobile Hero details overlay styling */
    .hero-mobile-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0; /* Remove padding to push to absolute bottom */
        text-align: center;
        z-index: 5;
        position: relative;
    }
    .hero-mobile-extra-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-mobile-title {
        color: #e30613; /* Premium brand red */
        font-family: 'Neue Haas Display', sans-serif;
        font-size: 16vw; /* Responsive huge sizing based on screen width */
        font-weight: 700;
        letter-spacing: -1px;
        text-transform: uppercase;
        line-height: 0.85;
        white-space: nowrap;
        transform: scaleY(2.0);
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        text-align: center;
        transform-origin: bottom center;
        display: block;
        position: relative;
        margin-bottom: 0px; /* Sit aligned with the bottom edge */
    }
    .hero-mobile-subtitle-1, .hero-mobile-subtitle-2 {
        color: #000000;
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin: 5px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .hero-mobile-subtitle-1 span, .hero-mobile-subtitle-2 span {
        color: #e30613; /* Red separator bullet points */
        font-size: 12px;
    }
    .hero-mobile-tagline {
        color: #000000;
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        font-size: 13px;
        font-weight: 400;
        margin-top: 6px;
        opacity: 0.85;
    }
    .hero-mobile-divider {
        width: 50px;
        height: 2px;
        background-color: #e30613;
        margin: 15px auto;
    }
    .hero-mobile-scroll {
        display: none;
    }
}

@keyframes mobileBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* About Section */
.about-section {
    background-color: #f4f4f4;
    padding: 100px 0 60px; /* Reduced padding since it's a tighter section now */
    text-align: center;
}

#about .section-heading {
    margin-bottom: 20px; /* Reduced space below ABOUT heading */
    text-align: center;
}

.bracket-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto 60px; /* Reduced top margin significantly */
    max-width: 900px;
}

.bracket-text {
    position: relative;
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 900;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 50px 90px;
    text-align: center;
    display: inline-block;
    color: #000;
}

.bracket-text::before, .bracket-text::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    border: 20px solid #000;
}

.bracket-text::before {
    left: 0;
    border-right: 0;
}

.bracket-text::after {
    right: 0;
    border-left: 0;
}

.accent-red-line {
    width: 200px;
    height: 1px;
    background-color: #e30613;
    margin-top: 40px;
    opacity: 0.7;
}

/* ABOUT Section Custom Styling */
.about-bracket-text {
    position: relative;
    padding: 40px 60px;
    margin: 20px auto;
    max-width: 800px;
}

.about-bracket-text::before, .about-bracket-text::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25px;
    border: 10px solid #000;
}

.about-bracket-text::before {
    left: 0;
    border-right: 0;
}

.about-bracket-text::after {
    right: 0;
    border-left: 0;
}

.about-paragraph {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    margin-bottom: 24px;
    text-align: center;
}

.about-highlight {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #e30613;
    letter-spacing: 0px;
    margin-bottom: 24px;
    text-align: center;
}

.about-divider {
    width: 200px;
    height: 1px;
    background-color: #e30613;
    margin: 40px auto;
    opacity: 0.5;
}

.about-paragraph-bold {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.about-script-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    width: 100%;
}

.about-script {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: #e30613;
    margin: 0 auto;
    font-weight: 700;
    position: relative;
    width: max-content;
}

.script-underline {
    width: 100%;
    height: 15px;
    margin-top: -10px;
    display: block;
}

@media(max-width: 768px) {
    .about-bracket-text {
        padding: 30px 20px;
    }
    .about-bracket-text::before, .about-bracket-text::after {
        width: 15px;
        border-width: 5px;
    }
    #about .section-heading {
        text-align: center;
    }
    .about-paragraph {
        font-size: 14px;
        text-align: center;
    }
    .about-highlight {
        font-size: 16px;
        text-align: center;
    }
    .about-paragraph-bold {
        font-size: 16px;
    }
    .about-script {
        font-size: 28px;
    }
}

/* Circular Rotating Component */
.circular-component {
    position: relative;
    width: 550px;
    height: 550px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinning-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: spinText 15s linear infinite;
    transform-origin: center;
}

@keyframes spinText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-image-wrapper {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Positions her face center */
}

@media(max-width: 768px) {
    .bracket-text {
        font-size: 20px;
        padding: 25px 45px;
    }
    .bracket-text::before, .bracket-text::after {
        width: 25px;
        border-width: 8px;
    }
    .circular-component {
        width: 350px;
        height: 350px;
    }
    .circle-image-wrapper {
        width: 220px;
        height: 220px;
    }
}



/* Moodboard Section CSS */
.mood-section {
    background-color: #f4f4f4;
    padding: 80px 0 100px;
    text-align: center;
}

.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
}

.moodboard-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    display: block;
}

.moodboard-item img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.moodboard-item.span-2 {
    grid-column: span 2;
}

.screen01-photo {
    text-align: center;
    margin: 40px auto 0;
    max-width: 600px;
}

.screen01-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mood-photo-credit {
    text-align: center;
    margin-top: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
    color: #b5040e;
}

@media(max-width: 768px) {
    .mood-section {
        padding: 50px 0 60px;
    }
    .moodboard-grid {
        gap: 12px;
        margin: 0 auto;
        padding: 0 10px;
    }
    .moodboard-item img {
        border-radius: 16px;
    }
}

/* MUSIC SECTION REDESIGN */
.music-section-new {
    padding: 100px 0;
    text-align: center;
    background-color: #f4f4f4;
    overflow: hidden;
}

.music-subtitle-script {
    font-family: 'Caveat', cursive;
    font-size: 36px;
    color: #e30613;
    margin-top: -15px;
    margin-bottom: 60px;
    position: relative;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.script-underline-medium {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10px;
}

.music-bracket-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.music-bracket-wrapper .about-paragraph {
    text-align: center;
}

.music-side-notes {
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #e30613;
    line-height: 1.2;
    text-align: left;
}

.left-notes {
    top: 50%;
    left: -100px;
    transform: translateY(-50%) rotate(-5deg);
}

.right-notes {
    top: 10px;
    right: -120px;
    transform: rotate(5deg);
}

.highlight-script {
    font-family: 'Caveat', cursive;
    color: #e30613;
    font-size: 1.4em;
    vertical-align: middle;
}

.circled-text {
    position: relative;
    display: inline-block;
}

.hand-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 140%;
    pointer-events: none;
}

.hand-arrow {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 20px;
    pointer-events: none;
}

.album-badge {
    border: 2px solid #000;
    display: block;
    width: fit-content;
    padding: 15px 40px;
    margin: 40px auto 80px;
    font-family: 'Neue Haas Display', sans-serif;
    background: transparent;
}

.album-badge strong {
    font-size: 24px;
    letter-spacing: 2px;
}

.badge-script {
    font-family: 'Caveat', cursive;
    color: #e30613;
    font-size: 24px;
    display: block;
    margin-top: 5px;
}

.visual-chapters-title {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin: 80px auto 40px;
    position: relative;
    display: block;
    width: max-content;
    width: fit-content;
}

/* CAROUSEL */
.music-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.music-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.music-video-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
}

.video-thumbnail {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.music-video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e30613;
    color: #fff;
    width: 60px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0.9;
}

.video-info {
    flex: 1;
    padding: 30px;
}

.video-info h4 {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 5px;
}

.video-script {
    font-family: 'Caveat', cursive;
    color: #e30613;
    font-size: 22px;
    margin-bottom: 20px;
}

.video-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.video-link a {
    color: #000;
    text-decoration: none;
}

.video-coming-soon {
    position: absolute;
    bottom: -10px;
    right: -80px;
    font-family: 'Caveat', cursive;
    color: #e30613;
    font-size: 24px;
    line-height: 1;
    transform: rotate(-10deg);
}

.relative-card {
    position: relative;
}

.carousel-controls {
    display: none; /* Hidden on desktop because videos stack vertically */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-controls button {
    background: transparent;
    border: 1px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: #000;
    color: #fff;
}

@media(max-width: 768px) {
    .music-bracket-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .music-side-notes {
        display: block;
        position: static;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .music-side-notes.left-notes { order: 1; }
    .music-side-notes.right-notes { order: 2; margin-bottom: 40px; }
    .bracket-container { order: 3; margin: 0 auto !important; }
    .music-carousel-track {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }
    .music-carousel-track::-webkit-scrollbar {
        display: none;
    }
    .music-video-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        flex-direction: column;
        align-items: flex-start;
    }
    .carousel-controls {
        display: flex; /* Show arrows on mobile carousel */
    }
    .video-thumbnail {
        flex: auto;
        width: 100%;
    }
    .video-coming-soon {
        right: 10px;
        bottom: 10px;
    }
}

.cta-container {
    margin: 40px 0;
}

.btn-ghost {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.74);
    color: #000;
    font-family: "Helvetica", sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border: 2px solid #000;
    border-radius: 150px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.32);
    transform: scale(1.05);
}

#open-modal-btn {
    background-color: #e30613;
    color: #ffffff;
    border-color: #e30613;
}

#open-modal-btn:hover {
    background-color: #b5040e;
    color: #ffffff;
    border-color: #b5040e;
}

/* Music Discography List (Tate McRae Inspired) */
.music-list-container {
    max-width: 850px;
    margin: 90px auto 60px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.music-list-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    padding: 22px 12px;
    text-decoration: none;
    color: #111111;
    font-family: 'Goldman', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.3s ease;
}

.music-list-row:hover {
    color: #e30613; /* Matches project's theme red accent */
    border-color: rgba(227, 6, 19, 0.3);
    transform: translateX(8px);
}

.music-list-year {
    font-size: 17px;
    font-weight: 400;
    opacity: 0.65;
}

.music-list-title {
    font-size: 19px;
    font-weight: 400;
    padding-left: 25px;
}

.music-list-title.highlight {
    font-weight: 700; /* Striking bold appearance for primary singles */
}

.music-list-action {
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.music-row-arrow {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: currentColor;
    margin-right: 15px;
    position: relative;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.music-row-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
}

.music-list-row:hover .music-row-arrow {
    width: 85px; /* Dramatic length extension for micro-interaction feedback */
}

@media(max-width: 768px) {
    .music-list-container {
        margin: 50px 0;
        gap: 2px;
    }
    .music-list-row {
        grid-template-columns: 55px 1fr auto; /* Restored 3-column row layout on mobile */
        gap: 10px;
        padding: 20px 5px;
    }
    .music-list-action {
        grid-column: auto; /* No longer drops below title */
        justify-content: flex-end;
        font-size: 12px;
        margin-top: 0;
        opacity: 0.9;
        white-space: nowrap; /* Guarantees arrow and text never split */
    }
    .music-list-year {
        font-size: 14px;
    }
    .music-list-title {
        font-size: 15px; /* Scaled to allow wrapping long titles side-by-side */
        padding-left: 5px;
    }
    .music-row-arrow {
        width: 32px; /* Slightly tighter arrow for mobile fitting */
        margin-right: 10px;
    }
    .music-list-row:hover .music-row-arrow {
        width: 45px;
    }
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 32px;
}

.music-platforms a:hover {
    transform: scale(1.2);
}

/* Videos Section (Tate McRae Editorial Style) */
.videos-section {
    background-color: var(--color-bg-main);
    padding: 120px 0;
}

.videos-heading {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.75;
    letter-spacing: -3px;
    margin-bottom: 60px;
    color: #000;
}

.videos-list {
    display: flex;
    flex-direction: row;
    gap: 35px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hides native scrollbar on Firefox */
    -ms-overflow-style: none; /* Hides native scrollbar on IE */
    padding: 20px 5px 30px;
}

.videos-list::-webkit-scrollbar {
    display: none; /* Hides native scrollbar on Chrome/Safari */
}

.video-card-container {
    flex: 0 0 38%; /* Narrower width creates taller cascading display */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

/* Premium Over-Bled Video Container for iframe loops */
.loop-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Elegant Taller Portrait Ratio */
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

/* Centered 240% expanded scaling to cover vertical 4:5 container */
.loop-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-card-container:hover .loop-video-wrapper iframe {
    transform: translate(-50%, -50%) scale(1.06); /* Maintain centroid on Ken Burns zoom */
}

/* Play overlay appears with glowing halo */
.play-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.play-hover-overlay i {
    color: #fff;
    background-color: #e30613;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    padding-left: 5px;
    box-shadow: 0 12px 30px rgba(227, 6, 19, 0.45);
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-card-container:hover .play-hover-overlay {
    opacity: 1;
}

.video-card-container:hover .play-hover-overlay i {
    transform: scale(1);
}

.video-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 10px;
}

.video-card-title {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    transition: color 0.3s ease;
}

.video-card-action {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.5px;
    color: #000;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.video-card-container:hover .video-card-title,
.video-card-container:hover .video-card-action {
    color: #e30613;
}

.video-card-container:hover .music-row-arrow {
    width: 80px;
}

/* Video Slider Navigation Arrows */
.videos-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-right: 10px;
}

.videos-nav-btn {
    background: #ffffff;
    color: #000000;
    border: 1px solid rgba(0,0,0,0.08);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.videos-nav-btn:hover {
    background: #e30613;
    color: #ffffff;
    border-color: #e30613;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.25);
}

@media(max-width: 992px) {
    .videos-heading {
        font-size: 8vw;
    }
    .video-card-container {
        flex: 0 0 55%; /* Peak nicely on medium displays */
    }
}

@media(max-width: 768px) {
    .videos-section {
        padding: 80px 0;
    }
    .videos-heading {
        font-size: 16vw;
        letter-spacing: -1px;
        margin-bottom: 40px;
    }
    .videos-list {
        gap: 20px;
        padding-bottom: 20px;
    }
    .video-card-container {
        flex: 0 0 75%; /* Perfect vertical peek display for phones */
    }
    .loop-video-wrapper {
        border-radius: 18px;
    }
    .video-card-info {
        padding: 15px 5px;
    }
    .video-card-title {
        font-size: 20px;
    }
    .video-card-action {
        font-size: 14px;
    }
    .play-hover-overlay i {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    .videos-nav {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Acting Section */
.acting-section {
    background-image: url('assets/Thia-Vittek-acting-6.png');
    background-position: bottom center;
}

.acting-section .bg-overlay {
    background: linear-gradient(184deg, #F2F2F2 44%, #F2F2F2E3 51%);
}

.acting-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Acting Section Carousel Styles */
.acting-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px; /* Perfect focused size for a single photo slider */
    margin: 60px auto;
}

.acting-carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-behavior: smooth;
    gap: 30px;
}

.acting-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.acting-slide {
    flex: 0 0 80%; /* Primary visible, next visible partly */
    scroll-snap-align: start;
    padding: 0;
    display: flex;
    justify-content: center;
}

.acting-slide img {
    width: 100%;
    aspect-ratio: 4 / 5; /* Premium vertical portrait consistency */
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Navigation arrows styled like Videos/Press */
.acting-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.acting-nav-btn {
    background: transparent;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.acting-nav-btn:hover {
    background: #e30613;
    color: #ffffff;
    border-color: #e30613;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.25);
}

/* Video BG Section */
.video-bg-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-bg-container iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-bg-section .bg-overlay {
    background: linear-gradient(210deg, #F2F2F2 24%, #F2F2F2AD 100%);
    z-index: 1;
}

.acting-details-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.series-img {
    width: 400px;
    border-radius: 8px;
}

.series-thumb {
    width: 200px;
    margin-bottom: 20px;
    border-radius: 5px;
}

@media(max-width: 768px) {
    .acting-details-flex {
        flex-direction: column;
        text-align: center;
    }
    .series-img { width: 250px; }
}

/* LIVE Section */
.live-section-new {
    background-color: #f4f4f4;
}

.live-bracket-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.live-bracket-wrapper .about-paragraph {
    text-align: left;
}

.live-helmet-image {
    position: absolute;
    top: -20px;
    right: -180px;
    width: 450px;
    z-index: -1;
}

.live-helmet-image img {
    width: 100%;
    height: auto;
}

.live-right-notes {
    position: absolute;
    top: 20px;
    right: -160px;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #e30613;
    line-height: 1.2;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.live-note-item {
    position: relative;
}

.live-bottom-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    max-width: 150px;
    text-transform: uppercase;
    margin-top: 30px;
    position: relative;
}

.live-bottom-note .hand-arrow {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%) rotate(180deg);
    width: 40px;
    height: 20px;
}

/* Side by side desktop layout for LIVE performance chapters */
.live-carousel-container {
    max-width: 1100px; /* allow wider for 4 columns */
}

.live-chapters-track {
    display: grid !important; /* override the flex column inherited from music-carousel-track */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.live-chapter-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0;
}

.live-chapter-card .video-thumbnail {
    width: 100%;
    aspect-ratio: 3/4; /* taller portrait mode */
}

.live-chapter-card .video-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.live-chapter-card .chapter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #e30613;
    margin-bottom: 5px;
}

.live-chapter-card h4 {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.live-chapter-card .video-link {
    margin-top: auto;
    border-top: none;
    padding-top: 0;
    color: #e30613;
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: normal;
    text-transform: none;
}

@media(max-width: 992px) {
    .badge-side-note {
        display: none;
    }
    .live-helmet-image {
        display: block;
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        margin: 30px auto 0;
        z-index: 1;
    }
    .live-right-notes {
        display: none;
    }
    .live-bracket-wrapper .live-text-col .about-paragraph:last-of-type {
        text-align: center;
        margin-bottom: 15px;
    }
    .live-bracket-wrapper .about-paragraph {
        text-align: center;
    }
    .live-chapters-track {
        display: flex !important; /* switch back to swipeable track */
        flex-direction: row !important;
    }
    .live-chapter-card {
        flex: 0 0 70%;
    }
}

/* SHOP Section */
.shop-section-new {
    background-color: #f4f4f4;
}

/* Shop Hero Banner */
.shop-hero-banner {
    display: flex;
    align-items: stretch;
    min-height: 480px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.shop-hero-photo {
    flex: 0 0 28%;
    position: relative;
    overflow: hidden;
}

.shop-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.shop-hero-left img {
    filter: grayscale(1);
}

.shop-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    text-align: center;
    background-color: #f0f0f0;
}

.shop-hero-note {
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 20px;
    color: #e53b70;
    line-height: 1.3;
    text-align: center;
}

.note-left {
    top: 20px;
    left: 15px;
}

.note-right {
    top: 20px;
    right: 15px;
}

.shop-bracket-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.shop-floating-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shop-note-item {
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #e53b70;
    line-height: 1.2;
    text-align: center;
}

.shop-note-item .script-underline-small {
    display: block;
    width: 80%;
    height: 10px;
    margin: 5px auto 0;
}

.script-underline-small {
    height: 8px;
}

.shop-current-collection {
    max-width: 1100px;
    margin: 80px auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.collection-banner-image {
    flex: 1.5;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #ffdce8;
}

.collection-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    mix-blend-mode: multiply;
}

.banner-overlay-text {
    width: 100%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #e53b70;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.banner-overlay-text h3 {
    font-size: 42px;
    color: #e53b70;
    margin-bottom: 10px;
}

.banner-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 5px;
}

.banner-script {
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: #e53b70;
    margin-bottom: 30px;
}

.explore-btn {
    display: inline-block;
    background-color: #e53b70;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.explore-btn:hover {
    background-color: #d12d5d;
    transform: translateY(-2px);
}

.collection-side-info {
    flex: 1;
    position: relative;
}

.collection-side-info h4 {
    font-size: 28px;
    margin-bottom: 15px;
}

.collection-side-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.shop-pink-link {
    color: #e53b70;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.shop-arrow-note {
    position: absolute;
    top: -60px;
    left: -80px;
    text-align: right;
}

.shop-coming-header {
    max-width: 1100px;
    margin: 60px auto 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-coming-header h3 {
    font-size: 16px;
    color: #e53b70;
    white-space: nowrap;
}

.shop-divider-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.shop-carousel-container {
    max-width: 1100px;
    margin: 0 auto 80px;
}

.shop-chapters-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shop-chapter-card {
    display: flex;
    flex-direction: column;
    background: none;
    box-shadow: none;
    padding: 0;
}

.shop-chapter-card:hover {
    transform: none;
    box-shadow: none;
}

.shop-chapter-card .video-thumbnail {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.shop-chapter-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.shop-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.shop-card-script {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: #e53b70;
}

.shop-footer-message {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.shop-footer-center {
    flex: 1;
    text-align: center;
}

.shop-footer-center p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e53b70;
    letter-spacing: 1px;
}

.shop-footer-note {
    position: relative; /* override absolute */
}

@media(max-width: 992px) {
    .shop-current-collection {
        flex-direction: column;
    }
    .banner-overlay-text {
        padding: 40px 20px;
    }
    .banner-overlay-text h4 { font-size: 12px; margin-bottom: 10px; }
    .banner-overlay-text h2 { font-size: 38px; margin-bottom: 15px; }
    .banner-overlay-text p { font-size: 16px; margin-bottom: 5px; }
    .banner-overlay-text .script-collection { font-size: 26px; margin-bottom: 25px; }
    .shop-btn { padding: 12px 25px; font-size: 12px; }
    .shop-chapters-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }
    .shop-chapter-card {
        flex: 0 0 70%;
        scroll-snap-align: center;
    }
    .shop-floating-notes {
        display: flex;
        flex-direction: column;
        position: static;
        margin-top: 30px;
        gap: 20px;
        align-items: center;
    }
    .shop-note-item {
        position: static !important;
        transform: none !important;
    }
    .shop-footer-message {
        flex-direction: column;
        gap: 20px;
    }
}


/* Press Section */
.press-section {
    background-image: url('assets/23.jpg');
    background-position: center center;
}

.press-section .bg-overlay {
    background: linear-gradient(210deg, rgba(242, 242, 242, 0.7) 24%, rgba(242, 242, 242, 0.3) 100%);
}

.press-heading {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 10vw;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.75;
    letter-spacing: -3px;
    margin-bottom: 60px;
    color: #000;
}

.press-main-wrapper {
    width: 100%;
    margin-bottom: 40px;
}

.press-main-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.press-main-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.press-divider {
    border: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 60px 0;
}

.press-carousel-wrapper {
    position: relative;
}

.press-carousel-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-behavior: smooth;
    padding: 10px 0;
}

.press-carousel-container::-webkit-scrollbar {
    display: none; /* WebKit (Chrome/Safari) */
}

.press-slide {
    flex: 0 0 calc(50% - 12px); /* Two columns side by side on mobile */
    scroll-snap-align: start;
    transition: transform 0.4s ease;
}

.press-slide img {
    width: 100%;
    aspect-ratio: 3 / 4.5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.press-slide img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.press-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.press-nav-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #000;
    cursor: pointer;
    padding: 15px;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.press-nav-btn:hover {
    opacity: 1;
    transform: scale(1.15);
}

@media(min-width: 992px) {
    .press-heading {
        font-size: 8vw;
    }
    .press-slide {
        flex: 0 0 calc(33.333% - 16px); /* Three columns on desktop for perfect scale */
    }
}

@media(max-width: 768px) {
    .press-section {
        padding: 80px 0;
    }
    .press-heading {
        font-size: 16vw;
        letter-spacing: -1px;
        margin-bottom: 40px;
    }
    .press-main-image img {
        height: 300px;
        border-radius: 20px;
    }
    .press-divider {
        margin: 40px 0;
    }
    .press-slide img {
        border-radius: 16px;
    }
}

/* Booking Section */
.booking-section {
    background-image: url('assets/22.jpg');
    background-position: bottom center;
}

.booking-section .bg-overlay {
    background: linear-gradient(184deg, #F2F2F2 27%, #F2F2F2E8 51%);
}

.booking-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.booking-contacts {
    align-self: flex-end;
    text-align: right;
}

.phone {
    font-family: "Neue Haas Display", sans-serif;
    font-size: 2.5vw;
    font-weight: bold;
    text-transform: uppercase;
}

.email {
    font-family: "Neue Haas Display", sans-serif;
    font-size: 1.4vw;
    font-weight: bold;
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .booking-container { text-align: center; }
    .booking-contacts { align-self: center; text-align: center; }
    .phone { font-size: 22px; }
    .email { font-size: 14px; }
}

/* Shop Section */
.shop-section {
    background-image: url('assets/19.jpg');
    min-height: 600px;
    display: flex;
    align-items: center;
}

.shop-section .bg-overlay {
    background: linear-gradient(210deg, #F2F2F2 24%, #F2F2F28A 100%);
}

.big-text {
    font-size: 5.2vw;
    margin: 20px 0;
}

@media(max-width: 768px) {
    .big-text { font-size: 40px; }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #F2F2F2;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

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

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 60% 40%;
}

.modal-form-side {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-form-side h2 {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.notify-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notify-form input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.modal-img-side {
    background-image: url('assets/Thia-Vittek-acting-7.png');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

@media(max-width: 600px) {
    .modal-body { grid-template-columns: 1fr; }
    .modal-img-side { height: 200px; min-height: 200px; grid-row: 1; }
}

/* Version Link */
.version-link { position: fixed; bottom: 10px; right: 10px; opacity: 0.05; font-size: 10px; text-decoration: none; color: #000; z-index: 9999; transition: opacity 0.3s; }
.version-link:hover { opacity: 1; }

/* Footer Section (Native Site Theme) */
.site-footer {
    background-color: var(--color-bg-main); /* Seamless light gray site backdrop (#F2F2F2) */
    color: #000000;
    padding: 80px 20px 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.footer-accent-line {
    width: 100%;
    height: 1px;
    background-color: #000000; /* Sleek black horizon lines */
    opacity: 0.15; /* Delicate fine border */
}

.footer-brand {
    font-family: 'Goldman', sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000000; /* High-contrast black */
    margin: 24px 0;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    margin: 40px 0;
}

.footer-socials a {
    color: #000000; /* Sophisticated monochrome black */
    font-size: 25px;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-socials a:hover {
    color: #e30613; /* Pops in our signature theme branding red */
    transform: translateY(-4px) scale(1.15);
}

.footer-credits {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.35;
    margin-top: 25px;
}

@media(max-width: 768px) {
    .site-footer {
        padding: 60px 15px 40px;
    }
    .footer-brand {
        font-size: 20px;
        letter-spacing: 3px;
        margin: 18px 0;
    }
    .footer-socials {
        gap: 22px;
        margin: 30px 0 25px;
        flex-wrap: wrap;
    }
    .footer-socials a {
        font-size: 21px;
    }
}

/* Booking Section New */
.booking-section-new {
    background-color: #f4f4f4;
    padding: 100px 0;
    color: #000;
}

.booking-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 40px;
}

.booking-image-wrapper {
    position: sticky;
    top: 120px;
    width: 100%;
}

.booking-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.booking-note-item {
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #000;
    line-height: 1.1;
}

.booking-note-item.top-left {
    top: 50px;
    left: -40px;
    transform: rotate(-5deg);
}

.booking-note-item.bottom-left {
    bottom: 80px;
    left: -50px;
    transform: rotate(5deg);
}

.booking-content-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
}

.booking-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.booking-i {
    position: relative;
}

.booking-i-dot {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    width: 0.7em;
    max-width: none;
    margin-bottom: -0.08em;
    mix-blend-mode: multiply;
}

.booking-header h2 {
    font-family: 'Neue Haas Display', sans-serif;
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin: 0;
    line-height: 1;
}

.rough-underline {
    width: 100%;
    max-width: 250px;
    height: 20px;
    margin-top: 10px;
    overflow: visible;
}

.booking-services {
    margin-bottom: 40px;
}

.service-list-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000;
}

.service-list-title span {
    font-weight: 400;
    font-size: 12px;
    color: #666;
    margin-right: 8px;
    letter-spacing: 0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #e30613; /* Premium brand red on hover */
}

.service-item:hover .service-arrow {
    transform: translateY(3px); /* Elegant micro-interaction bounce down */
}

.service-item:first-of-type {
    border-top: 1px solid #ddd;
}

.service-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.booking-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    position: relative;
    max-width: 400px;
    margin-bottom: 60px;
    text-align: left;
}

.booking-note-item.right-desc-note {
    right: -120px;
    top: 0;
    transform: rotate(-5deg);
}

.booking-contact-area {
    margin-bottom: 60px;
}

.contact-area-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: left;
}

.contact-box {
    border: 1px solid #000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: transparent;
    max-width: 450px;
}

.contact-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-email {
    font-family: 'Times New Roman', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
}

.btn-solid-black {
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-solid-black:hover {
    background-color: #333;
    color: #fff;
}

.booking-management-area {
    position: relative;
    max-width: 450px;
}

.management-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #333;
    text-align: left;
}

.booking-note-item.available-note {
    right: -80px;
    top: 50px;
    transform: rotate(-10deg);
}

.next-chapter-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    position: relative;
    display: block;
    text-align: left;
}

.underline-here {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.heart-icon {
    font-family: 'Caveat', cursive;
    font-weight: normal;
    font-size: 24px;
    position: absolute;
    right: -30px;
    bottom: -10px;
}

/* Footer New Design */
.footer-design-credits {
    text-align: center;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
    line-height: 1.8;
}

.management-logo-small {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    margin: 5px 0;
    display: flex;
    justify-content: center;
}

.charme-link {
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 11px;
}

.charme-link:hover {
    color: #fff;
}

.footer-note {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    color: #b5040e;
    margin-top: 40px;
    text-align: center;
}

@media(max-width: 992px) {
    .booking-image-wrapper {
        position: relative;
        top: 0;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .booking-note-item.top-left { left: 10px; top: 10px; color: #000; text-shadow: none; }
    .booking-note-item.bottom-left { left: 10px; bottom: 10px; color: #000; text-shadow: none; }
    .booking-note-item.right-desc-note { position: static; transform: none; text-align: center; margin-top: 20px; }
    .booking-note-item.available-note { right: 10px; top: 20px; }
    .booking-header h2 { font-size: 50px; }
    .contact-email { font-size: 24px; }
}

.heart-symbol {
    display: inline-block;
    font-size: 15px;
    margin-top: 8px;
    vertical-align: middle;
}

/* Live Section Desktop Layout inside Brackets */
@media(min-width: 993px) {
    .live-bracket-wrapper {
        max-width: 950px !important;
    }
    
    .live-bracket-wrapper .about-bracket-text {
        position: relative;
        max-width: 950px;
        width: 100%;
        padding: 40px 60px;
    }
    
    .live-bracket-wrapper .live-text-col {
        max-width: 650px;
        position: relative;
        z-index: 2;
    }
    
    .live-bracket-wrapper .live-helmet-image {
        position: absolute !important;
        top: -30px !important;
        right: 20px !important;
        width: 540px !important;
        flex-shrink: 0;
        z-index: 1 !important;
    }
}

/* ===== Language Switcher (EN / SK) ===== */
.lang-switcher {
    order: -1;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    z-index: 5;
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.lang-switcher a {
    text-decoration: none;
    color: #ffffff;
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    transition: color 0.25s ease;
}
.lang-switcher a:hover {
    color: #e30613;
}
.lang-switcher a.active {
    color: #e30613;
}
.lang-switcher .lang-sep {
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.main-header.scrolled .lang-switcher a {
    color: #9a9a9a;
    filter: none;
}
.main-header.scrolled .lang-switcher a.active {
    color: #e30613;
}
.main-header.scrolled .lang-switcher .lang-sep {
    color: #9a9a9a;
    filter: none;
}
@media (max-width: 768px) {
    .lang-switcher {
        align-self: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 10px;
        font-size: 14px;
    }
}

/* ===== Acting & Voice — darker red (matches button-hover #b5040e), SCREEN 01 badge excluded ===== */
#acting .music-subtitle-script,
#acting .music-side-notes,
#acting .music-video-card .video-link {
    color: #b5040e !important;
}
#acting .music-subtitle-script .script-underline-medium path,
#acting .music-side-notes .script-underline-small path,
#acting .music-video-card .video-link .script-underline-medium path,
#acting .visual-chapters-title .script-underline-medium path {
    stroke: #b5040e;
}

/* ===== Lightbox thumbnail hover ===== */
.lb-thumb { position: relative; overflow: hidden; }
.lb-thumb-hint {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 8px 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lb-thumb:hover .lb-thumb-hint { opacity: 1; }

/* ===== Lightbox ===== */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.lb-overlay.lb-open { display: flex; }
.lb-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}
.lb-counter {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    white-space: nowrap;
}
.lb-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 56px;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.lb-arrow:hover { opacity: 1; }
.lb-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

/* ===== Hand-drawn asymmetric hearts (each slightly different) ===== */
.hand-heart {
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    vertical-align: -0.22em;
    fill: none;
    stroke: currentColor;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

/* ===== All handwritten (script) red texts → darker red #b5040e site-wide ===== */
.about-script,
.music-subtitle-script,
.music-side-notes,
.highlight-script,
.badge-script,
.video-script,
.video-coming-soon,
.live-right-notes,
.live-chapter-card .video-link {
    color: #b5040e;
}
