body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;

}

/* Base navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* Links */
.links {
    display: flex;
    gap: 24px;
}

.links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.links a:hover {
    color: #0a66c2;
}

/* Mobile menu icon */
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .links {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
        display: none;
    }

    #menu-toggle:checked + .menu-icon + .links {
        display: flex;
    }
}

.hero {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #0b2c3d, #145374);
    color: white;
    text-align: center;
    width: 92.5%;
    margin: 0 20px;
}

.trailers, .about, .contact {
    padding: 4rem 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.card h4 {
    margin: 1rem 0;
}

.actions a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background: #0b2c3d;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.about-card {
    background: #e9eef1;
    padding: 2rem;
    border-radius: 10px;
}

.contact form {
    max-width: 400px;
}

.contact input, .contact textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.7rem;
}

.footer {
    padding: 1rem;
    text-align: center;
    background: #0b2c3d;
    color: white;
}
