        /* --- BRAND IDENTITÁS & SZÍNPALETTA --- */
        :root {
            --primary: #4A2C11;    /* Mély henna-barna */
            --accent: #D4A373;     /* Elegáns meleg terrakotta / arany */
            --accent-light: #E9D8A6; /* Világosabb arany tónus */
            --bg: #FEFAE0;         /* Finom krém háttér */
            --bg-card: #FFFFFF;    /* Tiszta fehér kártyákhoz */
            --dark: #281505;       /* Sötét szövegszín */
            --white: #FFFFFF;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg);
            color: var(--dark);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        /* --- NAVIGÁCIÓ (FEJLÉC) --- */
        header {
            background-color: var(--primary);
            color: var(--white);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* EGYEDI LOGÓ INTEGRÁCIÓ */
        .logo-box {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--accent);
        }

        .logo-svg {
            width: 45px;
            height: 45px;
            fill: none;
            stroke: var(--accent);
            stroke-width: 1.5;
            transition: transform 0.5s ease;
        }

        .logo-box:hover .logo-svg {
            transform: rotate(45deg);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 2px;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            letter-spacing: 3px;
            color: var(--white);
            text-transform: uppercase;
            opacity: 0.9;
        }
        .logo-img{
            width: 45px;
            height: 45px;
            border-radius: 50%;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
            align-items: center;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 4px 0;
            transition: color 0.3s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* --- SZEKCIÓK ÁLTALÁNOS --- */
        section {
            padding: 5rem 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 3rem;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '✿';
            display: block;
            font-size: 1.2rem;
            color: var(--accent);
            margin-top: 5px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 163, 115, 0.6);
            background-color: #c49363;
        }

        /* --- FŐOLDAL / HERO SZEKCIÓ --- */
        .hero {
            text-align: center;
            padding: 6rem 1.5rem;
            background: radial-gradient(circle at center, rgba(254, 250, 224, 0.8) 0%, rgba(233, 216, 166, 0.3) 100%);
            border-radius: 20px;
            margin-top: 1.5rem;
        }

        .hero h1 {
            font-size: 3rem;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            color: #4a3b2c;
        }

        /* KÁRTYA RÁCSFELÜLET */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 4rem;
        }

        .info-card {
            background-color: var(--bg-card);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(40, 21, 5, 0.05);
            border-top: 5px solid var(--accent);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(40, 21, 5, 0.1);
        }

        .info-card h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .info-card p {
            font-size: 0.95rem;
            color: #554433;
            text-align: justify;
        }
        /* --- RÓLAM SZEKCIÓ --- */
        .about-wrapper {
            display: flex;
            align-items: center;
            gap: 50px;
            background-color: var(--bg-card);
            padding: 3.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(40, 21, 5, 0.04);
        }

        .about-image-container {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-avatar {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid var(--accent);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            background-image: url('./Pictures/rólam.jpg');
            background-size: cover;
            background-position: center;
            margin: 0 auto;
        }

        .about-text {
            flex: 2;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .about-text p {
            margin-bottom: 1.2rem;
            color: #4a3b2c;
            font-size: 1.05rem;
            text-align: justify;
        }

        /* --- GALÉRIA SZEKCIÓ --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .gallery-card {
            position: relative;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-card:hover {
            transform: scale(1.03);
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(74, 44, 17, 0.8) 0%, rgba(74, 44, 17, 0) 100%);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info h4 {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 3px;
        }

        .gallery-info p {
            color: var(--white);
            font-size: 0.85rem;
        }

        /* DINAIMKUS GALÉRIA ALOLDAL / SLIDER MODAL */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(40, 21, 5, 0.98);
            z-index: 2000;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .slider-container {
            position: relative;
            max-width: 850px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            max-width: 100%;
            max-height: 75vh;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
            object-fit: contain;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        .lightbox-caption {
            color: var(--accent);
            margin-top: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
        }

        .lightbox-subcaption {
            color: var(--white);
            font-size: 0.9rem;
            opacity: 0.8;
            text-align: center;
            margin-top: 4px;
        }

        .lightbox-close {
            position: absolute;
            top: -60px;
            right: 10px;
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
            user-select: none;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: var(--accent);
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(212, 163, 115, 0.2);
            border: 2px solid var(--accent);
            color: var(--white);
            font-size: 1.8rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            user-select: none;
            z-index: 2010;
        }

        .nav-btn:hover {
            background-color: var(--accent);
            color: var(--dark);
        }

        .prev-btn { left: -70px; }
        .next-btn { right: -70px; }

        /* --- KAPCSOLAT SZEKCIÓ --- */
        .contact-section-wrapper {
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-info-card {
            background-color: var(--primary);
            color: var(--white);
            padding: 3.5rem 3rem;
            border-radius: 20px;
            box-shadow: 0 12px 35px rgba(74, 44, 17, 0.2);
        }

        .contact-info-card h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            border-bottom: 2px solid rgba(212, 163, 115, 0.2);
            padding-bottom: 10px;
            text-align: center;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .contact-icon {
            font-size: 1.6rem;
            color: var(--accent);
            background-color: rgba(212, 163, 115, 0.1);
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .contact-details p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-details a, .contact-details span {
            font-size: 1.2rem;
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-details a:hover {
            color: var(--accent);
        }

        /* --- LÁBLÉC --- */
        footer {
            background-color: var(--dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 2rem 2rem 2rem;
            margin-top: 6rem;
            border-top: 6px solid var(--accent);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
            text-decoration: none;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            font-size: 0.85rem;
        }

        /* --- ELEMEK ELVÁLASZTÁSA --- */
        .section-divider {
            border: 0;
            height: 1px;
            background: linear-gradient(to right, rgba(214, 163, 115, 0), rgba(214, 163, 115, 0.6), rgba(214, 163, 115, 0));
            margin: 2rem 0;
        }

        /* --- RESZPONZÍV INLINE JAVÍTÁSOK --- */
        @media (max-width: 992px) {
            .nav-btn {
                position: static;
                transform: none;
            }
            .slider-controls {
                display: flex;
                gap: 30px;
                margin-top: 20px;
            }
            .slider-container {
                flex-direction: column;
            }
            .lightbox-close {
                top: -50px;
                right: 0;
            }
        }

        @media (max-width: 850px) {
            .about-wrapper {
                flex-direction: column;
                padding: 2rem;
            }
            .about-image-container {
                min-width: unset;
            }
        }

        @media (max-width: 680px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .slider-wrapper {
                height: 320px;
            }
            section {
                padding: 3.5rem 1rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .contact-info-card {
                padding: 2rem 1.5rem;
            }
        }