        body {
            font-family: sans-serif;
            margin: 0;
            background-color: #f9f9f9;
            color: #333;
        }

        /* --- Navigációs sáv --- */
        nav {
            background-color: rgba(0, 0, 0, 0.6);
            text-align: center;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        nav li {
            display: inline-block;
            margin: 0 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            padding: 10px;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #ffc107;
        }

        /* --- Fejléc --- */
        .header {
            background-image: url('terasz.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .header h1 {
            font-size: 3em;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            margin: 0;
        }
        .header-logo {
            max-height: 70px;
            margin-right: 15px;
        }

        /* --- Tartalom --- */
        .container {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }
        .container h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #4CAF50;
        }
        .menu-images img {
            width: 100%;
            max-width: 700px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* --- Lábléc --- */
        .footer {
            background-color: #f2f2f2;
            padding: 20px;
            text-align: center;
            font-size: 0.9em;
            border-top: 1px solid #ddd;
        }
        .footer img {
            width: 50px;
            vertical-align: middle;
        }