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

        /* --- ÚJ: Navigációs sáv --- */
        nav {
            background-color: rgba(0, 0, 0, 0.6); /* Fekete, enyhén áttetsző háttér */
            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; /* Sárga szín egérráhúzáskor */
        }
        /* ------------------------- */

        .header {
            background-image: url('terasz.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
            text-align: center;
            position: relative;
            display: flex; /* Flexbox a középre igazításhoz */
            justify-content: center;
            align-items: center;
        }
        .header h1 {
            font-size: 4em;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            margin: 0;
        }

        /* --- ÚJ: Logó a fejlécben --- */
        .header-logo {
            max-height: 80px; /* Logó maximális magassága */
            margin-right: 20px; /* Térköz a szöveg és a logó között */
        }
        /* --------------------------- */

        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 20px;
        }
        .section {
            padding: 40px 0;
        }

        /* --- MÓDOSÍTOTT: Galéria stílus --- */
        .gallery {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .gallery img {
            flex: 1; /* A képek egyenlően osztoznak a helyen */
            min-width: 300px; /* Minimális szélesség, hogy ne zsugorodjanak túl kicsire */
            height: 300px; /* Fix magasság */
            object-fit: cover; /* A kép arányosan kitölti a helyet, levágva a felesleget */
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        /* ---------------------------------- */
        
        .text-content {
            text-align: center;
            max-width: 800px; /* Kicsit szélesebb, hogy jobban illeszkedjen */
            margin: 0 auto;
            font-size: 1.1em;
            line-height: 1.6;
        }
        .contact {
            background-color: #fff;
            padding: 40px 20px;
            text-align: center;
        }
        .contact h2 {
            color: #4CAF50;
            font-size: 2.5em;
        }
        .contact p {
            font-size: 1.1em;
            line-height: 1.8;
        }
        .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;
        }