        /* Reset stylů */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Základní styl */
        body {
            font-family: Arial, sans-serif;
            background-image: url("/static/images/Fur2.jpg");
            background-size: cover; /* Ujistí se, že obrázek pokryje celé pozadí */
            background-position: center center; /* Udržuje obrázek na střed */
            background-repeat: no-repeat; /* Zabraňuje opakování obrázku */
            text-align: center;
        }

        .xD {
            font-size: 50px;
            color: azure;
            margin-top: 20px;
            animation: tracking-in-expand 1s both;
            animation-delay: 0.5s;
          }
        
          .logo {
            width: 300px;
            height: auto;
            animation: slide-in-blurred-top 1.5s ease-out;
          }

        /* Nadpisy */
        h1, h3, h2 {
            margin: 20px 0;
            color: azure;
        }

        /* Hlavní vzhled navbaru */
        .navbar {
            background: #1d1f21; /* Tmavší pozadí pro moderní vzhled */
            padding: 30px 50px; /* Zvýšení paddingu pro lepší prostor */
            height: 70px;
            display: flex;
            justify-content: center; /* Udržuje text na střed */
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Jemnější stíny pro jemnost */
            position: absolute; /* Změněno na absolute */
            top: 680px; /* Definuje místo, kde navbar začíná (úpravy dle potřeby) */
            left: 0; /* Zajištění, že navbar pokrývá celou šířku */
            right: 0;
            z-index: 999;
            transition: all 0.4s ease-in-out;
            backdrop-filter: blur(10px); /* Rozmazaný efekt pro moderní vzhled */
            border-radius: 0; /* Odstranění zaoblení na krajích */
            width: 100%; /* Zajištění, že navbar bude mít šířku celé obrazovky */
        }
        
        
        /* Seznam položek navbaru */
        .navbar ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px; /* Zvýšený prostor mezi odkazy */
            margin: 0;
        }
        
        /* Položky (odkazy) v navbaru */
        .navbar li {
            display: inline;
        }
        
        /* Odkazy s interaktivními efekty */
        .navbar a {
            color: #eee;
            text-decoration: none;
            font-size: 18px;
            font-family: 'Arial', sans-serif;
            font-weight: 600; /* Tlustší písmo pro modernější vzhled */
            padding: 12px 20px;
            border-radius: 30px;
            position: relative;
            display: inline-block;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        
        /* Efekt změny barvy a zvětšení při hoveru */
        .navbar a:hover {
            color: #00f7ff; /* Jemně modrá barva pro moderní efekt */
            transform: translateY(-5px); /* Plynulé zvednutí odkazu */
        }
        
        /* Gradientový efekt pod textem při hoveru */
        .navbar a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ff00ff, #00f7ff, #ff0000);
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.4s ease;
        }
        
        /* Aktivní efekt pro odkazy při hoveru */
        .navbar a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        /* Plynulý efekt pro zaoblení rohu */
        .navbar a:hover {
            border-radius: 50px;
        }
        
        /* Responsivita pro mobilní zařízení */
        @media (max-width: 768px) {
            .navbar {
                padding: 10px 20px;
                height: 60px;
            }
        
            .navbar ul {
                gap: 20px;
            }
        
            .navbar a {
                font-size: 16px; /* Menší písmo pro mobil */
            }
        }
/* Parallax sekce */
.parallax {
    position: relative;
    height: 400px;
    background-size: cover;
    background-attachment: fixed;  /* Tento řádek zajistí, že obrázek bude fixní */
    background-position: center;
    clip-path: polygon(100% 0, 0 30%, 0% 100%, 120% 100%);
    overflow: hidden;
    z-index: 1; /* Nastavíme z-index pro parallax sekci */
}

/* Parallax obrázek */
.parallax img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Kontejner pro částice */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* Zajistí, že částice nebudou blokovat interakci s obsahem */
    z-index: -1;  /* Umístí částice za obrázek parallax */
    background-attachment: fixed;  /* Tento efekt je pro obrázek, ale ne pro částice */
    transform: translateZ(0);  /* Aktivuje hardware akceleraci pro plynulejší animaci */
    overflow: hidden; /* Aby částice nevyčnívaly mimo oblast */
}
        

        /* Nadpis v parallax sekci */
        .parallax h2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 30px;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 10px;
        }
        
        .parallax2 {
            position: relative;
            height: 400px;
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%);
            overflow: hidden; /* Skrýt přesahující obsah */
        }
        

        .parallax2 img {
            position: fixed; /* Fixne obrázek na místě */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Zachová poměry stran */
            z-index: -1; /* Pošle obrázek do pozadí */
        }
        .tree {
            text-align: center;
        }

        .tree ul {
            padding-top: 20px;
            position: relative;
        }

        .tree li {
            display: inline-block;
            position: relative;
            padding: 20px;
            list-style: none;
            text-align: center;
        }

        /* Spojovací čáry */
        .tree li::before, .tree li::after {
            content: '';
            position: absolute;
            top: 0;
            right: 50%;
            border-top: 2px solid #555;
            width: 50%;
            height: 20px;
        }

        .tree li::after {
            right: auto;
            left: 50%;
            border-left: 2px solid #555;
        }

        /* Propojení mezi rodičem a dítětem */
        .tree li:only-child::after, .tree li:only-child::before {
            display: none;
        }

        .tree li:only-child {
            padding-top: 0;
        }

        .tree li:first-child::before, .tree li:last-child::after {
            border: none;
        }

        .tree ul ul::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            border-left: 2px solid #555;
            width: 0;
            height: 20px;
        }

        .card {
            background: rgb(37, 35, 35);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(19, 18, 18, 0.2);
            text-align: center;
            display: inline-block;
            width: 200px;
            transition: 0.3s;
        }

        .card:hover {
            background: #1d1f21;
            box-shadow: 0px 8px 16px rgba(19, 18, 18, 0.4);
            transform: scale(1.05);
        }

        .card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: block;
            margin: auto;
        }

        .card h2 {
            margin: 10px 0;
            font-size: 18px;
        }

        .card p {
            margin: 5px 0;
            font-size: 14px;
            color: #777;
        }

        .social a {
            display: inline-block;
            margin-top: 5px;
            color: #0073e6;
            text-decoration: none;
            font-size: 14px;
        }

        .social a:hover {
            text-decoration: underline;
        }

        footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #222;
            color: white;
            text-align: center;
            padding: 15px 0;
            font-size: 14px;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
    /* Zamezí horizontálnímu scrollování */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Parallax obrázek fixně pokryje oblast */
    .parallax {
        position: relative;
        height: 300px;
        width: 100%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .parallax img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    /* Particles JS zůstane nad pozadím */
    #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }

    /* Navbar přímo pod parallax */
    .navbar {
        position: static;
        margin-top: 0;
        background-color: rgba(30, 30, 30, 0.95);
        padding: 150px 50px; /* můžeš upravit podle potřeby */
        box-sizing: border-box;
        border-radius: 8px;
        z-index: 1000;
        width: 100%;
    }

    /* Navbar menu vertikálně */
    .navbar ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .navbar li {
        margin: 0;
    }

    .navbar a {
        font-size: 16px;
        color: #fff;
        padding: 12px 15px;
        text-decoration: none;
        background-color: #444;
        border-radius: 6px;
        display: block;
        text-align: center;
        transition: background-color 0.3s ease;
        white-space: nowrap;
    }

    .navbar a:hover {
        background-color: #ffcc00;
        color: #000;
    }

    /* Logo a nadpis lépe na mobilu */
    .logo {
        width: 80%;
        max-width: 280px;
        height: auto;
        display: block;
        margin: 0 auto 20px auto;
    }

    .xD {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Sociální sekce vertikálně, center */
    .social {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 30px;
    }

    /* Karty v "tree" přizpůsobené mobilu */
    .tree ul {
        padding: 0;
        margin: 0 auto;
        list-style: none;
        max-width: 320px;
    }

    .tree li {
        margin-bottom: 20px;
    }

    .card {
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.35);
        background-color: #222;
        color: #fff;
        text-align: center;
    }

    .card img {
        width: 80%;
        max-width: 200px;
        height: auto;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    /* Nadpisy menší a přehlednější */
    h1, h2, h3 {
        font-size: 22px;
        text-align: center;
    }

}


        