/* Alapbeállítások */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    background-color: #f4f1ee;
    color: #222;
}

/* Konténer a tartalomhoz */
.container {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding: 1em;
}

/* Fejléc */
header {
    background-color: #6a1b1b;
    color: #f4f1ee;
    padding: 2em 0 1em 0;
    text-align: center;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 2.2em;
    letter-spacing: 1px;
}

header .tagline {
    margin-top: 0.5em;
    font-style: italic;
    color: #e0e0e0;
}

header .header-img {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 85px;
    height: 115px;
    object-fit: cover;
    border-radius: 6px;
}

/* Menürendszer */
nav {
    background-color: #e0e0e0;
    border-bottom: 2px solid #6a1b1b;
}

.menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0;
}

.menu a {
    display: block;
    padding: 0.75em 1.2em;
    color: #4f5b66;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.menu a:hover,
.menu a:focus {
    background-color: #6a1b1b;
    color: #f4f1ee;
}

/* Fő tartalom */
main {
    padding: 2em 0;
}

section {
    margin-bottom: 3em;
}

a {
    text-decoration: none;
}

h2, h3 {
    color: #6a1b1b;
}

/* Lábléc */
footer {
    background-color: #e0e0e0;
    color: #4f5b66;
    text-align: center;
    padding: 1em 0;
    font-size: 0.9em;
}

/* Menü gomb mobilra */
.menu-toggle {
    display: none;
    background-color: #6a1b1b;
    color: #f4f1ee;
    border: none;
    padding: 0.75em 1em;
    font-size: 1.1em;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #e0e0e0;
        padding: 0;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .menu li {
        border-top: 1px solid #ccc;
    }

    .menu a {
        padding: 1em;
    }

    .split-layout {
        flex-direction: column;
        text-align: left;
    }

    .split-layout .text, 
    .split-layout .image {
        flex: 1 1 100%;
    }
}

/* Kéthasábos elrendezés */
.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
}

.split-layout .text {
    flex: 1 1 50%;
}

.split-layout .image {
    flex: 1 1 40%;
    text-align: center;
}

.split-layout .image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.csend-resz {
    background-color: #6a1b1b;
    color: #fbeee0;
    padding: 2em 1.5em;
    font-style: italic;
    margin: 2.5em 0;
    border-radius: 6px;
}

/* Filmes tükrök – három képes blokk */
.film-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 2em;
}

.film-card {
    width: 300px;
    text-align: center;
}

.film-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

@media (max-width: 960px) {
    .film-grid {
        flex-direction: column;
        align-items: center;
    }
}
