body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    box-sizing:border-box;
}

*,
*::before,
*::after{
    box-sizing:inherit;
}

/* logo levy roh */
.logo{
    width:204px;
    position:absolute;
    top:0;
    left:0;
    z-index:10;
    cursor:pointer;
}

/* horni cerny pruh */
.hornipruh{
    position:absolute;
    top:0;
    left:200px;
    width:calc(100% - 200px);
    height:115px;
    background:black;
    z-index:5;
}

/* sedy pruh */
.sedypruh{
    width:100%;
    height:35px;
    background:#444;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 30px;
    font-size:14px;
    font-weight:bold;
}

.sedypruh a{
    color:white;
    text-decoration:none;
}

/* leva cast v sedem pruhu */
.kontakt{
    display:flex;
    align-items:center;
    gap:40px;
}

.social{
    display:flex;
    align-items:center;
    gap:20px;
    margin-right:35px;
}

.social a{
    width:30px;
    height:30px;
    border:2px solid white;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.social a:hover{
    background:#ff2a2a;
    border-color:#ff2a2a;
}

/* menu */
.menu{
    display:flex;
    align-items:center;
    gap:70px;
    height:80px;
    padding-left:40px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
    padding:0 20px;
    height:80px;
    display:flex;
    align-items:center;
    transition:0.3s;
}

.menu a:hover{
    background:#ff2a2a;
    color:white;
}

.menu a.aktivni{
    background:#ff2a2a;
    color:white;
}

/* STRANKA PRIBEH */
.pribeh-stranka{
    background:white;
    min-height:100vh;
}

.pribeh-obsah{
    padding:160px 8% 80px 8%;
    max-width:900px;
    margin:0 auto;
}

/* hlavni nadpis */
.pribeh-obsah h1{
    text-align:center;
    font-size:52px;
    margin-bottom:60px;
    text-transform:uppercase;
    color:#222;
}

/* podnadpis */
.pribeh-obsah h2{
    text-align:center;
    font-size:36px;
    margin-bottom:30px;
    color:#222;
}

/* text */
.pribeh-obsah p{
    font-size:20px;
    line-height:1.8;
    color:#333;
    margin-bottom:24px;
    text-align:justify;
}

/* fotka */
.pribeh-foto{
    display:block;
    width:100%;
    max-width:600px;
    height:auto;
    margin:40px auto;
    border-radius:14px;
    border:2px solid #ff2a2a;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* zaver */
.pribeh-zaver{
    text-align:center;
    font-size:24px;
    font-weight:bold;
    color:#222;
    margin-top:40px;
}

/* SEKCE ZNACEK */
.znacky{
    max-width:1100px;
    margin:70px auto 0 auto;
    padding:0 20px 60px 20px;
    text-align:center;
}

.znacky h2{
    font-size:36px;
    margin-bottom:15px;
    color:#222;
}

.znacky p{
    font-size:18px;
    color:#555;
    max-width:800px;
    margin:0 auto 35px auto;
    line-height:1.6;
    text-align:center;
}

.znacky-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
    gap:25px;
    align-items:stretch;
}

.znacka-item{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:20px;
    min-height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.3s;
}

.znacka-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.znacky-grid img{
    width:100%;
    max-width:140px;
    height:70px;
    object-fit:contain;
    display:block;
    margin:0 auto;
}

/* footer */
.footer{
    background:#000;
    color:white;
    text-align:center;
    padding:60px 20px;
    font-size:16px;
    line-height:1.8;
    margin-top:80px;
    border-top:1px solid #333;
}

.footer a{
    color:#ff2a2a;
    text-decoration:none;
    font-weight:bold;
}

.footer a:hover{
    text-decoration:underline;
}

.footer .copyright{
    margin-top:20px;
}

/* mobil */
@media (max-width:768px){

    .hornipruh{
        left:0;
        width:100%;
        position:relative;
        height:auto;
    }

    .logo{
        position:relative;
        display:block;
        margin:0 auto;
        left:auto;
        top:auto;
    }

    .sedypruh{
        flex-direction:column;
        gap:10px;
        height:auto;
        padding:15px;
        text-align:center;
    }

    .kontakt{
        flex-direction:column;
        gap:10px;
    }

    .social{
        margin-right:0;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
        height:auto;
        padding:15px;
    }

    .menu a{
        height:auto;
        padding:12px 16px;
        font-size:18px;
    }

    .pribeh-obsah{
        padding:40px 20px 60px 20px;
    }

    .pribeh-obsah h1{
        font-size:36px;
    }

    .pribeh-obsah h2{
        font-size:28px;
    }

    .pribeh-obsah p{
        font-size:18px;
    }

    .pribeh-foto{
        max-width:100%;
    }

    .znacky h2{
        font-size:28px;
    }

    .znacky-grid{
        grid-template-columns:1fr 1fr;
    }
}