
@font-face {
    font-family: "Bebas";
    src:url("../css/font/Bebas_Neue/BebasNeue-Regular.ttf"); format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Source_Sans_Bold";
    src:url("../css/font/Source_Sans_3/static/SourceSans3-Bold.ttf"); format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Source_Sans_Regular";
    src:url("../css/font/Source_Sans_3/static/SourceSans3-Regular.ttf"); format('truetype');
    font-weight: 200;
    font-style: normal;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --big-font: 'Bebas', sans-serif;
    --main-font: 'Source_Sans_Regular', sans-serif;
    --bold-font: 'Source_Sans_Bold', sans-serif;
    --color-bg: #2e2e2e;
    --color-text: rgb(236, 235, 235);
    --orange-text: #ff6200;
    --orange-soft: #FFA500;
    --container-black: #050505;
    --container-seda: #1b1b1a;
    --orange-ikona: rgba(255, 165, 0, 0.85);
}
/* BASIC */

body {
    font-family: var(--main-font);
    background-color: var(--color-bg);
    font-size: 1.1rem;
}

p{
    line-height: 1.4em;
    text-align: justify;
    margin: 10px 0;
}

strong{
    font-family: var(--bold-font);
    color: var(--orange-soft);
}

h1{
    font-size: clamp(2.2rem, 8vw, 2.9rem);
    font-family: var(--big-font);
    color: var(--orange-text);
    margin:0 0 15px 0;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    font-family: var(--big-font);
    color: var(--orange-text);
    margin: 0;
}

h3{
    font-family: var(--bold-font);
    color: var(--orange-soft);
    margin: 15px 0;
}

.mensi{
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin: 20px 0;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}


/* LAYOUT */
.container
{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-cerna {
    padding: 80px 0;
    background-color:  var(--container-black);
    color: var(--color-text);
}

.container-cerna-zarovnani {
    padding: 1px 0 80px 0;
    background-color:  var(--container-black);
    color: var(--color-text);
}

.container-seda {
    padding: 80px 0;
    background: var(--container-seda);
    color: var(--color-text);
    background-image: url('../images/hvezdy.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    text-align: right;
}

.container-vrch {
    padding: 80px 0;
    background: var(--container-seda);
    color: var(--color-text);
    background-image: url('../images/hvezdy-tmavsi.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    text-align: left;
    margin-top: 40px;
}

.button{
    font-size: 0.8em;
    display: inline-block;
    max-width: 250px;
    margin: 20px 5px 10px 5px;
    padding: 8px 35px 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
    float: right;
}

.button:hover {
    transition: all 0.5s ease-out;
    background: rgba(0, 0, 0, 0.11);
    border: 1px solid  var(--orange-soft);
    color:  var(--orange-soft);
}

.container-button {
    display: flex;
    justify-content: center; /* Horizontální vystředění */
    /* align-items: center; */ /* Volitelné: Vertikální vystředění, pokud má kontejner výšku */
}

.button-vice{
    font-size: 0.8em;
    display: inline-block;
    max-width: 350px;
    margin: 20px 5px 10px 5px;
    padding: 8px 35px 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;

}

.button-vice:hover {
    transition: all 0.5s ease-out;
    background: rgba(0, 0, 0, 0.11);
    border: 1px solid  var(--orange-soft);
    color:  var(--orange-soft);
}

.clearfix{
   clear: both;
}

ul.seznam{
    margin: 15px;
    padding-left: 2rem;
    cursor: pointer;
}

ul.diagram{
    list-style: url("../images/diagram-3-fill.svg") outside;
}

ul.shield{
    list-style: url("../images/shield-fill-check.svg") outside;
}

ul.souhlas{
    list-style: url("../images/check2-circle.svg") outside;
}

ul.seznam, li.seznam{
    margin-bottom: 10px;
    line-height: 1.6em;
}

ul.seznam-dokumenty{
    margin: 15px;
    padding-left: 1rem;
    list-style: url("../images/file-earmark-pdf.svg") outside;
   line-height: 1.6em;
    font-size: 1.0rem;
}

ul.seznam-bez-svg {
    list-style: none;
}

    @media (min-width: 970px) {
        .rowe {
            display: flex;
        }

        .cols {
            width: 100%;
        }

        .cols + .cols {
            margin-left: 2em;
        }


    }

    @media screen and (max-width: 800px){
        .skryt{
            display: none;
        }

    }


@media (orientation: landscape) {
    body {
        flex-direction: row;
    }
}

@media (orientation: portrait) {
    body {
        flex-direction: column;
    }
}
.cite{
   font-style: italic;
    color: var(--orange-soft);
    margin: 10px 0;
}

.odstavec-orange{
    background-color: rgba(104, 103, 103, 0.4);
    color: white;
    margin: 25px 0;
    padding: 25px;
    border-radius: 10px;
    line-height: 1.6;
}

.newsletter-form {
    text-align: left;
    background-color: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    width: 90%;
}
.newsletter-form h3 {
    margin-top: 0;
    text-align: center;
}
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
}
.newsletter-form input[type="email"]::placeholder {
    color: #aaa;
    font-size: 14px;
    font-style: italic;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #777;
}
.newsletter-form label {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}
.newsletter-form .checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.newsletter-form .checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;

}
.newsletter-form .checkbox-container label {
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.4;
}
.newsletter-form button {
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
    padding: 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    cursor: pointer;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
}
.newsletter-form button:hover {
    transition: all 0.5s ease-out;
    background: rgba(0, 0, 0, 0.11);
    border: 1px solid  var(--orange-soft);
    color:  var(--orange-soft);
}
.newsletter-form a{
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
}
.newsletter-form a:hover{
    text-decoration: none;
    color: var(--orange-soft);
}

.newsletter-form a {
    font-size: 0.875rem;
    color: var(--orange-soft);
    text-decoration: none;
    padding-bottom: 1px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100%;
    background-image: linear-gradient(
            transparent calc(100% - 1px),
            var(--orange-soft) 1px
    );

    transition: background-size .3s ease-in-out;

    &:hover {
        background-size: 0 100%;
        color: var(--orange-text);
    }
}

.odkazhover{
    color: var(--orange-soft);
    text-decoration: none;
    padding-bottom: 1px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100%;
    background-image: linear-gradient(
            transparent calc(100% - 1px),
            var(--orange-soft) 1px
    );

    transition: background-size .3s ease-in-out;

    &:hover {
        background-size: 0 100%;
        color: var(--orange-text);
    }
}

.footer{
    font-size: 1.0rem;
    line-height: 1.6;
}


.custom-counter {
    margin: 10px;
    padding: 15px;
    list-style-type: none;
}

.custom-counter li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    display: flex; /* Pomůže zarovnat obsah */
    align-items: center; /* Zarovná obsah vertikálně */
}

.custom-counter li::before {
    content: counter(step-counter);
    margin-right: 20px;
    font-size: 80%;

    /* Upravené vlastnosti pro kulatý tvar */
    background-color: rgb(136, 135, 135);
    color: white;
    padding: 6px 10px; /* Upraveno pro lepší poměr */
    border-radius: 50%; /* Zajistí kulatý tvar */

    /* Přidáno pro zarovnání textu uvnitř */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 24px; /* Minimální šířka pro zajištění kulatosti */
    height: 24px; /* Výška pro zajištění kulatosti */
}

hr.hr-1 {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.14),
            #FFA500,
            rgba(0, 0, 0, 0.11)
    );
}



@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-14 input[type=checkbox] {
        --active:var(--orange-text);
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover:var(--orange-text);
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .checkbox-wrapper-14 input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .checkbox-wrapper-14 input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    .checkbox-wrapper-14 input[type=checkbox]:disabled + label {
        cursor: not-allowed;
    }
    .checkbox-wrapper-14 input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    .checkbox-wrapper-14 input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
        width: 21px;
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }
    .checkbox-wrapper-14 input[type=checkbox] + label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .checkbox-wrapper-14 input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }
    .checkbox-wrapper-14 input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 17px;
        height: 17px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }
    .checkbox-wrapper-14 input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }
}

.checkbox-wrapper-14 * {
    box-sizing: inherit;
}
.checkbox-wrapper-14 *:before,
.checkbox-wrapper-14 *:after {
    box-sizing: inherit;
}

/* Základní styl tabulky */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
}

/* Styl hlavičky tabulky */
td {
    padding: 10px 13px;
    text-align: left;
    border: 1px solid #ddd;

}

/* Styl hlavičky */
th {
    background-color: rgba(113, 109, 109, 0.24);
    color: yellow;
    padding: 10px 13px;
}

/* Hover efekt pro řádky */
tr:hover {
    background-color: rgb(43, 43, 43);
}

tr.table-warning{
    background-color: rgb(184, 122, 7);
}
td.text-right{
    text-align: right;
    font-weight: bold;
}

/* Responzivní kontejner */
.table-container {
    overflow-x: auto;
    max-width: 100%;
}

/* Úprava pro malé obrazovky */
@media screen and (max-width: 600px) {
    table {
        font-size: 14px;
    }

    th, td {
        padding: 8px 10px;
    }
}


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.card {
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 310px; /* Pevná šířka pro desktop */
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 10px 0;
    margin-left: 10px;
    flex-grow: 1; /* Položka neroste */
    flex-shrink: 1; /* Položka se zmenšuje */
    padding: 15px;
    border: 2px solid rgba(204, 204, 204, 0.91);
    cursor: pointer;
    overflow-wrap: break-word; /* Zalome dlouhé slovo, pokud není místo */
    word-wrap: break-word;
}

.card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.card-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #000;

}

.card-content {
    padding: 10px;
    line-height: 1.4em;
    text-align: center;
}

.card-content h3 {
    margin-top: 0;
    color: var(--orange-text);
    font-size: 1.3em;
    line-height: 1.0em;
}

.card-button {
    font-size: 0.85em;
    display: inline-block;
    max-width: 250px;
    margin: 20px 5px 10px 5px;
    padding: 6px 35px;
    color: #ffffff;
    font-weight: 300;
    border: 1px solid  var(--orange-soft);
    border-radius: 100px;
    text-align: center;
    transition: all 0.1s ease;
    background: var(--color-bg);
    box-shadow: 1px 1px 6px 1px rgba(43, 43, 43, 0.55);
    text-transform: uppercase;
}

.card-button:hover {
    background: #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ramecek{
    margin-top: 20px;
}

.zluta{
    color: #edd152;
}



.wifi-svg {
    width: 60px;
    height: 60px;
    color: var(--orange-ikona);
}

/* Společná animace pro vlny */
.wifi-wave-1, .wifi-wave-2 {
    opacity: 0;
    animation: wifi-fade 1.5s infinite linear;
}

/* Zpoždění pro druhou (vnější) vlnu */
.wifi-wave-2 {
    animation-delay: 0.3s;
}

@keyframes wifi-fade {
    0% { opacity: 0; }
    30% { opacity: 1; }
    100% { opacity: 0; }
}

.cctv-icon {
    width: 60px;
    height: 60px;
    color: var(--orange-ikona);
}

.camera-head {
    /* Sets the rotation point at the left side of the camera body */
    transform-origin: 7px 10px;
    animation: pan-camera 4s infinite ease-in-out;
}

@keyframes pan-camera {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg); /* Pans Up/Left */
    }
    75% {
        transform: rotate(15deg); /* Pans Down/Right */
    }
    100% {
        transform: rotate(0deg);
    }
}

.dc-icon {
    width: 60px;
    height: 60px;
    color: var(--orange-ikona); /* Main rack color */
}

/* Style the LEDs as thick dots */
.led-1, .led-2 {
    stroke: #00ff00; /* Green "active" color */
    stroke-width: 4;
    animation: led-blink 0.8s infinite step-end;
}

/* Offset the second LED for a "busy" look */
.led-2 {
    animation-duration: 1.2s;
    animation-delay: 0.2s;
    stroke: #00d4ff; /* Different color for variety */
}

@keyframes led-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}


.pc-icon { width: 60px; height: 60px; color: var(--orange-ikona);}
.cursor {
    stroke-width: 1;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.multi-conn-svg { width: 60px; height: 60px; color: var(--orange-ikona); }

.data-dot {
    stroke: none;
    animation: flow 2s infinite ease-in-out;
}

/* Postupné zpoždění pro efekt "živého" spojení */
.d1 { animation-delay: 0s; }
.d2 { animation-delay: 0.5s; }
.d3 { animation-delay: 1s; }
.d4 { animation-delay: 1.5s; }

@keyframes flow {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(0.5); opacity: 0; }
}

.support-icon { width: 40px; height: 40px; color: var(--orange-ikona); }

.voice-wave {
    stroke-width: 3;
    animation: voice-pulse 1.2s infinite ease-in-out;
}

.v2 { animation-delay: 0.4s; }

@keyframes voice-pulse {
    0% { opacity: 0.2; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1.2); }
    100% { opacity: 0.2; transform: scaleX(0.5); }
}

.leva{ text-align: left}
.foto { width: 100%; height: auto;}

.speedometer-container {
    width: 150px;
    margin: 20px auto;
}

.speedometer {
    width: 100%;
    height: auto;
}


/* Animace ručičky */
.needle {
    transform-origin: 50px 50px; /* Střed otáčení v bodě (50,50) */
    animation: speed-up 3s ease-in-out infinite alternate;
}

@keyframes speed-up {
    0% {
        transform: rotate(-90deg); /* Start (vlevo) */
    }
    100% {
        transform: rotate(90deg); /* Max (vpravo) */
    }
}

/* Volitelně: animace výplně (stroke-dasharray) */
.progress-bar {
    stroke-dasharray: 95; /* Celková délka oblouku */
    stroke-dashoffset: 95;
    animation: fill-bar 3s ease-in-out infinite alternate;
}

@keyframes fill-bar {
    0% { stroke-dashoffset: 95; }
    100% { stroke-dashoffset: 0; }
}

