@font-face {
    font-family: 'Sputnik';
    src: url('Sputnik-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #d6d6d6;
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

nav a {
    color: #e3e3e3;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s;
    font-family: 'Sputnik', sans-serif;
}

nav a:hover {
    color: #fff;
}

.logo img {
    height: 60px;
    display: block;
}

section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

#hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)), url('1-August-01-2018-1-3-scaled.jpg') no-repeat center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 0;
}

#hero h1 {
    font-size: 3rem;
    color: #e3e3e3;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #e3e3e3;
    color: #e3e3e3;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    background: transparent;
}

.btn:hover {
    background-color: #e3e3e3;
    color: #000;
}

#trailer {
    background-color: #000;
    text-align: center;
}

.synopsis {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: left;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 853px;
    margin: 0 auto;
}

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

#about {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('mogilev.jpg') no-repeat center top;
    background-size: cover;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    align-items: start;
}

.poster-side img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

.imdb-link {
    margin-top: 10px;
    display: block;
}

.details-side p {
    margin-bottom: 15px;
}

.details-side span {
    color: #8c8c8c;
    display: block;
    font-size: 0.9rem;
}

.details-side strong {
    font-size: 1.1rem;
}

#press {
    background-color: #000;
}

#screenings {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('mogilev.jpg') no-repeat center center;
    background-size: cover;
    max-width: 100%;
}

#screenings h2 {
    text-align: center;
    font-family: 'Sputnik', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.screenings-content {
    max-width: 1000px;
    margin: 0 auto;
}

.screenings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.screening-item {
    font-size: 1.1rem;
    color: #d6d6d6;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.screening-item:last-child {
    border-bottom: none;
}

.screening-item strong {
    color: #fff;
}

.screening-item em {
    color: #8c8c8c;
    font-style: normal;
    font-weight: 300;
}

.press-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #333;
}

.press-item:last-child {
    border-bottom: none;
}

.press-logo img {
    width: 200px;
    height: auto;
}

.press-text a {
    color: #d6d6d6;
    text-decoration: none;
    font-weight: bold;
}

.press-date {
    color: #8c8c8c;
    margin-left: 10px;
    font-size: 0.9rem;
}

#director {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('1-April-04-2020-1.jpg') no-repeat center center;
    background-size: cover;
    max-width: 100%;
}

.director-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.director-photo img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

.director-bio {
    flex: 1;
    min-width: 300px;
}

.contact-section {
    text-align: center;
    margin-top: 50px;
}

.contact-section a {
    color: #fff;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #8c8c8c;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content, .director-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    
    .press-item {
        flex-direction: column;
        text-align: center;
    }
    
    .poster-side img, .director-photo img {
        margin: 0 auto;
    }
    
    #hero h1 {
        font-size: 2rem;
    }
}
