* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f0f12;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-mark {
    font-size: 1.4rem;
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    opacity: 0.85;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
    color: #f0c14b;
}

.hero,
.page-hero {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, #16161b 0%, #0f0f12 100%);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 16px;
    line-height: 1.1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #f0c14b;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.hero-text,
.page-hero p {
    max-width: 760px;
    color: #d7d7d7;
    font-size: 1.08rem;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    background: #f0c14b;
    color: #111;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.section {
    padding: 70px 0;
}

.section-dark {
    background: #15151a;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 26px;
}

.card {
    background: #18181e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
}

.card-body {
    padding: 22px;
}

.card h3,
.card h2 {
    margin-bottom: 12px;
}

.card p {
    color: #d0d0d0;
    margin-bottom: 16px;
}

.card-link {
    color: #f0c14b;
    font-weight: 700;
}

.form-wrap {
    max-width: 760px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #111318;
    color: #fff;
}

.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.alert-success {
    background: rgba(50, 180, 90, 0.15);
    border: 1px solid rgba(50, 180, 90, 0.35);
}

.alert-error {
    background: rgba(210, 70, 70, 0.15);
    border: 1px solid rgba(210, 70, 70, 0.35);
}

.site-footer {
    padding: 30px 0;
    background: #0b0b0d;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #bdbdbd;
}

.site-footer p + p {
    margin-top: 6px;
}

@media (max-width: 768px) {
    .header-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }

    .main-nav {
        justify-content: center;
    }

    .hero,
    .page-hero,
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}




/* block for films */

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #b9b9b9;
    font-size: 0.95rem;
}

.film-layout {
    background: #111318;
}

.film-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 380px);
    gap: 28px;
    align-items: start;
}

.film-main,
.film-sidebar {
    display: grid;
    gap: 24px;
}

.content-box {
    background: #181b22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.content-box h2 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.content-box p + p {
    margin-top: 14px;
}

.styled-list {
    margin: 0;
    padding-left: 20px;
}

.styled-list li + li {
    margin-top: 10px;
}

.info-card h2 {
    font-size: 1.25rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: grid;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list span {
    font-size: 0.9rem;
    color: #bdbdbd;
}

.film-hero {
    background:
        linear-gradient(180deg, rgba(12,12,14,0.85) 0%, rgba(15,15,18,0.95) 100%),
        url('../img/lacarbonara.jpg') center/cover no-repeat;
}

@media (max-width: 960px) {
    .film-grid {
        grid-template-columns: 1fr;
    }
}



/* video  */

.video-wrapper {
    margin-top: 18px;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.video-description {
    margin-top: 18px;
}

.video-description p {
    color: #d0d0d0;
    line-height: 1.7;
}

.video-description p + p {
    margin-top: 14px;
}

.video-description a {
    color: #f0c14b;
    font-weight: 700;
    text-decoration: none;
}

.video-description a:hover {
    text-decoration: underline;
}

/*   */

.film-hero-trasgredire {
    background:
        linear-gradient(180deg, rgba(12,12,14,0.85) 0%, rgba(15,15,18,0.95) 100%),
        url('../img/trasgredire.jpg') center/cover no-repeat;
}


