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

:root {
    --primary: #111111;
}

.tail-text {
    font-family: 'Inter', system-ui, sans-serif;
}

/* УЛУЧШЕННЫЙ OSWALD */
.oswald-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1.05;
}

/* HERO */
.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)), url('../img/MainPhotoMin.jpg') center/cover no-repeat;
}

/* КИНОПОСТЕРЫ */
.project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 0.3);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.5);
}

.poster-img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* МОДАЛКА И SHOWREEL */
.modal {
    animation: modalPop 0.3s ease forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.showreel-play {
    transition: all 0.3s ease;
}

.showreel-play:hover {
    transform: scale(1.15);
    background-color: rgba(255,255,255,0.95);
}