        @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;
        }

        html {
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

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


        .logo {
            display: flex;
            align-items: center;
            z-index: 9999;
        }

        .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 {
            top: 0px;
            background: #1a2764;
            color: white;
            position: fixed;
            width: 100%;
            height: 50px;
            display: flex;
            align-items: center;
            padding: 0 4rem 0 0;
            z-index: 1004;
            transition: transform 0.2s ease;
        }


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

        #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;
            transition: color 0.3s ease;
        }

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


        .hamburger {
            display: none;
        }



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

            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }

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

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

        .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;
        }

        a:hover {
            color: #cfa00f;
        }

        a,
        button {
            -webkit-tap-highlight-color: transparent;
        }

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







        /* Media query pro menší obrazovky (tablet/mobil) */
        @media (max-width: 768px) {
            #g-navigation {
                display: none;
            }

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

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

            .footer-logo {
                text-align: center;
            }

            .footer-logo img {
                width: 100%;
                max-width: 350px;
                height: auto;
            }
        }

        #scrollTopBtn {
            position: fixed;
            right: 20px;
            bottom: 20px;
            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;
            touch-action: manipulation;
            user-select: none;
            -webkit-user-select: none;
        }

        #scrollTopBtn img {
            width: 100%;
            height: 100%;
            display: block;
        }

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

        .mobile-menu {
            display: none;
        }

        .bottom-bar {
            display: none;
        }

        .content {
            position: relative;
            margin: 0;
            padding: 0;
        }

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

            .nav-bar {
                display: flex;
                top: 0px;
                background: #e4cea1;
                color: white;
                position: fixed;
                width: 100%;
                height: 30svh;
                z-index: 0;
            }

            .nav-bar2 {
                top: 5px;
                background: #f4f5f7;
                color: white;
                position: fixed;
                width: 100%;
                height: 30svh;
                z-index: 1;
            }

            .cover-bar {
                top: 0px;
                bottom: 0;
                background: #f4f5f7;
                color: white;
                position: absolute;
                width: 100%;
                z-index: 0;
            }

            .bottom-bar {
                position: fixed;
                bottom: 0;
                /* top: 0; */
                background: #031a2b;
                color: white;
                width: 100%;
                height: 30svh;
                z-index: 0;
            }


            #g-navigation nav ul {
                display: none;
            }

            #g-navigation nav ul li a {
                background: #1a2764;
            }

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


            .hamburger {
                position: fixed;
                display: flex;
                top: 0;
                right: 0;
                flex-direction: column;
                gap: 6px;
                background: none;
                border: none;
                padding: 1rem 1rem 2rem 2rem;
                cursor: pointer;
                margin-left: auto;
                z-index: 1005;
                touch-action: manipulation;
                user-select: none;
                -webkit-user-select: none;
                opacity: 1;
                transform: translateY(0);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .hamburger-close {
                display: flex;
                position: fixed;
                top: 0px;
                right: 0px;
                width: 100%;
                height: 50px;
                flex-direction: column;
                justify-content: space-between;
                gap: 6px;
                cursor: pointer;
                justify-content: center;
                align-items: flex-end;
                touch-action: manipulation;
                background-color: transparent;
                padding-right: 15px;
                border: none;
            }


            .hamburger.hide {
                opacity: 0;
                transform: translateY(-20px);
                pointer-events: none;
            }


            .hamburger span {
                width: 30px;
                height: 2px;
                background-color: #1a2764;
                border-radius: 5px;
            }

            .hamburger-close span {
                width: 30px;
                height: 2px;
                background-color: #f4f5f7;
                border-radius: 5px;
            }

            /* Menu pro mobil */
            .mobile-menu {
                position: fixed;
                top: 0px;
                right: 0;
                width: 40%;
                height: 40svh;
                min-height: 250px;
                max-width: 160px;
                background-color: rgba(26, 39, 100, 0.85);
                /* #1a2764; */
                display: flex;
                flex-direction: column;
                /* padding: 20px 10px; */
                transition: transform 0.3s ease;
                z-index: 1006;
                padding-top: 60px;
                /* Posuneme menu mimo obrazovku doprava */
                transform: translateX(100%);
                border-top-left-radius: 5px;
                border-bottom-left-radius: 5px;
            }

            .mobile-menu a:hover {
                text-decoration: underline;
            }

            .mobile-menu.open {
                transform: translateX(0);
                /* vysunuté menu */
            }

            .mobile-menu ul li a {
                display: block;
                font-family: 'Open Sans', Arial, sans-serif;
                color: white;
                text-decoration: none;
                font-weight: normal;
                font-size: 1rem;
                transition: color 0.3s ease;
                list-style: none;
                /* border: 1px solid rgba(255, 255, 255, 0.3); */
                padding: 20px 15px;
                /* transition: background 0.3s, color 0.3s; */
                touch-action: manipulation;
                user-select: none;
                -webkit-user-select: none;
                -webkit-tap-highlight-color: rgba(70, 100, 180, 0.3);

            }


            .mobile-menu ul {
                list-style: none;
            }
        }