/* 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;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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 */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    list-style: none;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.nav-menu a {
    font-family: 'Neue Haas Display', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    position: relative;
}

.nav-menu 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 a:hover:after {
    width: 100%;
}

@media(max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 20px;
    }
    .nav-menu a { font-size: 18px; }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-bg-main);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 120px; /* push below header */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 0 5vw;
    width: 100%;
}

.lottie-container {
    width: 100px;
    height: 100px;
}

.hero-video {
    width: 300px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-video iframe {
    width: 100%;
    height: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
}

.hero-title-bg {
    height: 30vh;
    background-image: url('assets/THIA-VITTEK-napis.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 20px;
    transform: scaleY(1.35);
    transform-origin: bottom center;
}

@media(max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    .hero-video {
        width: 200px;
    }
    .social-links {
        flex-direction: row;
    }
}

/* About Section */
.about-section {
    background-color: var(--color-bg-alt);
    padding: 150px 0;
    text-align: center;
}

.about-grid-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
    margin: 40px 0;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 100px auto 200px;
    max-width: 1100px;
    align-items: start;
}

.about-images img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    transition: transform 0.3s ease;
}

.about-images img:nth-child(1) {
    transform: translateY(100px);
}

.about-images img:nth-child(2) {
    transform: translateY(0);
}

.about-images img:nth-child(3) {
    transform: translateY(50px);
}

@media(max-width: 768px) {
    .about-grid-text { grid-template-columns: 1fr; }
    .about-images { 
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px auto;
    }
    .about-images img { transform: none !important; aspect-ratio: unset; }
}

/* Music Section */
.music-section {
    background-image: url('assets/Thia-Vittek-cover.png');
    background-position: center center;
    text-align: center;
}

.music-section .bg-overlay {
    background: var(--overlay-light);
    opacity: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
}

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

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

.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);
}

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

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

/* 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-gallery {
    display: flex;
    gap: 30px;
    margin: 60px 0;
    align-items: flex-start;
}

.acting-gallery img {
    height: 500px;
    width: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.acting-gallery img:hover {
    transform: scale(1.02);
}

@media(max-width: 768px) {
    .acting-gallery { flex-direction: column; align-items: flex-start; }
    .acting-gallery img { width: 100%; height: auto; }
}

/* 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; }
}

/* Dance Section */
.dance-section {
    background-image: url('assets/18.jpg');
    text-align: center;
}

.dance-section .bg-overlay {
    background: var(--overlay-radial);
}

/* 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; }


/* 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; }
