        :root {
            --navy: #14181c;
            --hero: #272727;
            --wrap: #181717;
            --social: #272727;
            --footer: #2c3440;
            --accent: #99aabb;
            --muted: rgba(255, 255, 255, 0.07);
            --glass: rgba(255, 255, 255, 0.04);
            --text: #e6e9ee;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            background: var(--wrap);
            scroll-padding-top: 70px;
        }

        /* NAVBAR */
        .navbar {
            background: var(--navy);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 1rem;
        }

        .navbar .logo img {
            height: 50px;
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .nav-menu a:hover {
            color: var(--accent);
        }

        /* hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 28px;
            height: 22px;
            cursor: pointer;
            z-index: 1100;
        }

        .hamburger span {
            display: block;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 900px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                background: var(--navy);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                z-index: 1050;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu ul {
                flex-direction: column;
                gap: 1.5rem;
                margin-left: 25px;
                margin-top: 25px;
            }
        }

        /* HERO */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0px 1rem 2rem;
            overflow: hidden;
            background: linear-gradient(270deg, #14181c, #272727, #181717);
            background-size: 600% 600%;
            animation: gradientShift 15s ease infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            color: #fff;
        }

        .hero-content h1,
        .hero-content h2,
        .hero-content p {
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeIn 1s forwards;
        }

        .hero-content h1 {
            animation-delay: 0.3s;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content h2 {
            animation-delay: 0.6s;
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            animation-delay: 0.9s;
            font-size: 1.2rem;
        }

        .hero-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeIn 1s forwards 1.5s;
            width: 50%;
        }

        @keyframes heroFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @media (max-width: 900px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-content img {
                margin-top: 1rem;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content h2 {
                font-size: 1.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        /* PORTFOLIO SWIPER */
        .wrapper {
            padding: 4rem 1rem;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-header h2 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
        }

        .contact-header p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .contact-header .underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fff, var(--accent));
            margin: 0.5rem auto 2rem;
            border-radius: 2px;
        }

        .swiper {
            padding: 2rem 0;
        }

        .swiper-slide {
            width: 300px;
            height: 426px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(2, 6, 10, 0.6);
            text-align: center;
            color: var(--text);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .swiper-slide:hover {
            transform: translateY(-6px) scale(1.03);
        }

        .swiper-slide img {
            width: 100%;
            max-height: 320px;
            object-fit: contain;
            border-radius: 8px;
            margin: 1rem 0 0.5rem 0;
            cursor: pointer;
        }

        .swiper-slide .title {
            font-weight: 700;
            font-size: 1rem;
        }

        .swiper-slide .meta {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .swiper-button-prev,
        .swiper-button-next {
            color: var(--text);
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--glass);
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: var(--muted);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--accent);
            transform: scale(1.25);
            box-shadow: 0 6px 16px rgba(230, 57, 70, 0.14);
        }

        .swiper-pagination {
            position: initial !important;
            margin-top: 30px !important;
        }

        /* CONTACT FORM */
        .contact {
            background: linear-gradient(135deg, #14181c, #272727, #181717);
            padding: 6rem 1rem;
            color: #fff;
        }

        .contact-container {
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
            padding: 0 1rem;
            box-sizing: border-box;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
        }

        .contact-form button {
            padding: 1rem 2rem;
            background: var(--accent);
            color: #fff;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

        .contact-form button:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {

            .contact-form input,
            .contact-form textarea {
                font-size: 0.95rem;
                padding: 0.8rem 1rem;
            }
        }

        /* FOOTER */
        .footer {
            background: linear-gradient(135deg, #14181c, #272727);
            color: #fff;
            padding: 4rem 1rem 2rem;
            text-align: center;
            position: relative;
        }

        .srwebdesign {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .srwebdesign img {
            height: 60px;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .srwebdesign img:hover {
            transform: scale(1.1);
            filter: brightness(1.3);
        }

        .srwebdesign a.text-link {
            font-size: 1rem;
            color: #ccc;
            text-decoration: none;
        }

        .srwebdesign a.text-link:hover {
            color: var(--accent);
        }

        @media (max-width: 500px) {
            .srwebdesign img {
                height: 50px;
            }
        }

        /* Desktop navbar menü stílus */
        .desktop-menu {
            display: flex;
            gap: 2.5rem;
        }

        .desktop-menu li {
            list-style: none;
            position: relative;
        }

        .desktop-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s ease;
        }

        /* aláhúzó animáció */
        .desktop-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #fff, #98a9ba);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .desktop-menu a:hover::after {
            width: 100%;
        }

        /* színváltozás hover-re */
        .desktop-menu a:hover {
            color: #98a9ba;
        }

        /* mobilra maradjon az eredeti hamburger */
        @media (max-width: 900px) {
            .desktop-menu {
                display: none;
            }
        }

        .desktop-menu {
            display: flex;
            gap: 2.5rem;
            margin-right: 1rem;
            /* kis távolság a jobb szélhez */
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 2rem;
            /* 2rem jobbról és balról */
        }

        html {
            scroll-behavior: smooth;
        }

        .language-switcher button {
            background: var(--accent);
            border: none;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            color: #fff;
            cursor: pointer;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .language-switcher button:hover {
            transform: scale(1.05);
        }

        /* ABOUT / CV styles — paste into your stylesheet or in-page <style> */
        .about-cv {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 1rem;
            color: var(--text);
        }

        .cv-header {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1.25rem;
        }

        .cv-header h2 {
            margin: 0;
            font-size: 1.6rem;
            letter-spacing: 0.6px;
        }

        .role {
            margin: 0.25rem 0 0;
            color: rgba(230, 233, 238, 0.82);
            font-weight: 500;
        }

        .cv-contacts {
            text-align: right;
            min-width: 230px;
        }

        .cv-contacts .contact-line {
            font-size: 0.95rem;
            color: rgba(230, 233, 238, 0.9);
            margin-bottom: 0.35rem;
        }

        .cv-contacts a {
            color: var(--text);
            text-decoration: none;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.04);
        }

        .cv-actions {
            margin-top: 0.6rem;
            display: flex;
            gap: 0.6rem;
            justify-content: flex-end;
        }

        .btn.small {
            padding: 0.45rem 0.7rem;
            font-size: 0.9rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            background: var(--accent);
            color: #fff;
        }

        .btn.ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .cv-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 1.25rem;
            align-items: start;
        }

        .cv-side .box,
        .cv-main .box {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            margin-top: 25px;
        }

        .box h3 {
            margin: 0 0 0.6rem 0;
            font-size: 1.05rem;
        }

        .box h4 {
            margin: 0 0.25rem 0;
            font-size: 0.98rem;
        }

        .muted {
            color: rgba(230, 233, 238, 0.65);
            font-size: 0.9rem;
            margin-bottom: 0.45rem;
        }

        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .chip {
            display: inline-block;
            padding: 0.25rem 0.6rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 999px;
            font-size: 0.85rem;
            color: var(--text);
        }

        .chip.primary {
            background: linear-gradient(90deg, rgba(153, 170, 187, 0.14), rgba(230, 57, 70, 0.06));
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .simple-list,
        .bullet-list,
        .clients {
            padding-left: 1.1rem;
            margin: 0.3rem 0 0 0;
        }

        .simple-list li,
        .bullet-list li,
        .clients li {
            margin-bottom: 0.45rem;
        }

        .contact-header .underline {
            width: 60px;
            height: 4px;
            border-radius: 3px;
            background: linear-gradient(90deg, #fff, var(--accent));
            margin: 0.6rem auto 0;
        }

        /* responsive */
        @media (max-width: 980px) {
            .cv-grid {
                grid-template-columns: 1fr;
            }

            .cv-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .cv-contacts {
                text-align: left;
            }

            .cv-actions {
                justify-content: flex-start;
            }
        }

        /* small niceties */
        .about-cv p {
            line-height: 1.45;
            color: rgba(230, 233, 238, 0.93);
        }

        /* Alap stílus a visszajelzésnek */
        #formResponse {
            padding: 15px 20px;
            margin-top: 15px;
            border-radius: 10px;
            font-weight: 500;
            font-family: Arial, sans-serif;
            font-size: 14px;
            display: none;
            /* alapból rejtve, majd JS-sel mutatjuk */
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        /* Sikeres üzenet */
        #formResponse.success {
            background-color: #e6f4ea;
            /* halvány zöld */
            color: #276749;
            /* sötét zöld */
            border-left: 5px solid #38a169;
            /* hangsúlyos zöld csík */
        }

        /* Hibás üzenet */
        #formResponse.error {
            background-color: #fbeaea;
            /* halvány piros */
            color: #9b2c2c;
            /* sötét piros */
            border-left: 5px solid #e53e3e;
            /* hangsúlyos piros csík */
        }