* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("https://i.ytimg.com/vi/8LH5pl74K6I/maxresdefault.jpg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #000;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #b71c1c;
}

/* ABOUT */
.about p {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* MOVIES */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.movie-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.movie-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}

.movie-card h3 {
    padding: 15px;
    color: #b71c1c;
}

.movie-card p {
    padding: 0 15px 20px;
    font-size: 0.95rem;
}

/* CONTACT */
.contact {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact p {
    margin-bottom: 10px;
}

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

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
    .movie-grid {
        grid-template-columns: 1fr;
    }

    .movie-card img {
        height: 240px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero {
        background-size: contain;
        height: 60vh;
    }
}
