        @font-face {
            font-family: 'Ohrada';
            src: url('fonts/Ohrada.otf') format('opentype');
        }

        @font-face {
            font-family: 'Helvetica Now';
            src: url('fonts/HelveticaNow.otf') format('opentype');
        }

        @font-face {
            font-family: 'Helvetica Now Bold';
            src: url('fonts/HelveticaNowBold.otf') format('opentype');
        }

        @font-face {
            font-family: 'Open Sans';
            src: url('fonts/OpenSans-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Open Sans';
            src: url('fonts/OpenSans-Bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Open Sans';
            src: url('fonts/OpenSans-Italic.woff2') format('woff2');
            font-weight: 400;
            font-style: italic;
            font-display: swap;
        }


        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f4f5f7;
            margin: 0;
            overflow-x: hidden;
            font-family: 'Open Sans', Arial, sans-serif;
        }

        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background-color: #0a3d62;
            /* stejná barva jako menu */
            z-index: 1001;
        }


        .logo {
            display: flex;
            align-items: center;
            touch-action: manipulation;
        }

        .logo-text {
            font-family: 'Helvetica Now', Arial, sans-serif;
            font-size: 1.2rem;
            color: white;
            text-decoration: none;
            margin-left: 30px;
            margin-right: 30px;
            letter-spacing: 1.5px;
        }



        /* Header */
        #g-navigation {
            /* position: absolute; */
            /* position: fixed;
            top: 0;
            left: 0;
            background: #1a2764;
            color: white;
            width: 100%;
            height: 40px;
            display: flex;
            align-items: center;
            padding: 0 4rem 0 0;
            z-index: 1000;
            transition: transform 0.2s ease;*/
            background: #1a2764;
            color: white;
            position: fixed;
            width: 100%;
            height: 40px;
            display: flex;
            align-items: center;
            padding: 0 4rem 0 0;
            z-index: 1000;
            transition: transform 0.2s ease;
        }



        /* Header container */
        #g-navigation .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        /* Navigace vpravo */
        #g-navigation nav {
            margin-left: auto;
        }


        #g-navigation .logo img {
            height: 43px;
            display: block;
            margin: auto 0;
        }

        #g-navigation nav ul {
            display: flex;
            list-style: none;
            gap: 5rem;
            align-items: center;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #g-navigation nav ul li a {
            font-family: 'Helvetica Now', Arial, sans-serif;
            color: white;
            text-decoration: none;
            font-weight: normal;
            font-size: 1.2rem;
            letter-spacing: 1.5px;
            /* font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 2px; */
            transition: color 0.3s ease;
            /* padding: 0.5rem 0; */
        }

        #g-navigation nav ul li a:hover {
            color: #eeaf13;
        }


        /* Hamburger menu - default skryté */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            touch-action: manipulation;
        }

        .hamburger span {
            display: block;
            height: 3px;
            background: white;
            border-radius: 2px;
        }







        #g-footer {
            width: 100%;
            background-color: #031a2b;
            color: white;
            padding: 3.5rem 0;
        }

        .footer-flex {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-text {
            margin-left: 15px;
        }

        .footer-text,
        .footer-logo {
            width: 560px;
            padding: 16px 0;
        }

        .footer-text p {
            line-height: 2;
            margin: 16px 0;
        }

        .footer-text {
            text-align: left;
        }

        .footer-logo img {
            height: 50px;
        }




        .single-line {
            white-space: nowrap;
        }

        p {
            line-height: 1.2;
            margin: 0;
        }


        a {
            color: #eeaf13;
            text-decoration: none;
            /* pokud nechceš podtržení */
        }

        a:hover {
            color: #cfa00f;
            /* nebo tmavší odstín pro hover */
        }


        .logo-text:hover {
            color: white;
            text-decoration: none;
        }

        /* Základní mobilní menu */
        @media (max-width: 768px) {


            /* .hamburger {
                display: flex;
                position: fixed;
                top: 1rem;
                right: 1rem;
                z-index: 1001;
            }

            #page-wrapper {
                position: relative;
                width: 100%;
                overflow-x: hidden;
                transition: transform 0.3s ease;
            }

            #g-navigation nav ul {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                position: absolute;
                top: 0;
                right: -250px;
                width: 250px;
                height: 100vh;
                padding: 4rem 1rem 1rem 1rem;
                background: #1a2764;
                transition: right 0.3s ease;
                z-index: 1000;
            }

            #g-navigation nav ul.active {
                right: 0;
            }

            body.menu-open #menu-wrapper {
                transform: translateX(-50px);
            } */








            #g-navigation {
                width: 100%;
                display: flex;
                justify-content: center;
                padding: 0;
                box-sizing: border-box;
                background: #1a2764;
                height: 40px;
            }

            #g-navigation .logo {
                position: relative;
                left: auto;
                transform: none;
                z-index: 1001;
            }

            .hamburger {
                display: flex;
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                z-index: 1002;
            }


            #g-navigation nav ul {
                display: none;
                flex-direction: column;
                gap: 1rem;
                position: fixed;
                top: 40px;
                left: 0;
                width: 100vw;
                max-width: 100vw;
                margin: 0;
                padding: 1rem 0;
                background: #1a2764;
                list-style: none;
                box-sizing: border-box;
                z-index: 1000;
            }

            #g-navigation nav ul.active {
                display: flex;
            }
        }





        /* Media query pro menší obrazovky (tablet/mobil) */
        @media (max-width: 768px) {

            html,
            body {
                overflow-x: hidden;
            }


            .footer-flex {
                flex-direction: column;
                align-items: center;
            }

            .footer-text,
            .footer-logo {
                width: auto;
            }
        }

        /* TLAČÍTKO SE SVG */
        #scrollTopBtn {
            position: fixed;
            right: 20px;
            bottom: calc(20px + env(safe-area-inset-bottom));
            width: 50px;
            height: 50px;
            border: none;
            background: transparent;
            background-image: url("images/arrow-up-circle.svg");
            background-repeat: no-repeat;
            background-size: contain;
            cursor: pointer;
            z-index: 9999;
            padding: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            mix-blend-mode: multiply;
        }

        #scrollTopBtn.show {
            opacity: 1;
            pointer-events: auto;
        }

        #scrollTopBtn img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }