/* RESET */
html, body{
    width:100%;
    min-height:100%;
    margin:0;
    padding:0;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    box-sizing:border-box;
    min-height:100vh;
}

body.moto-stranka{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

/* GLOBAL BOX */
*,
*::before,
*::after{
    box-sizing:inherit;
}

/* BADGE */
.badge{
    display:inline-block;
    background:#ff2a2a;
    color:white;
    font-size:13px;
    font-weight:bold;
    padding:6px 12px;
    border-radius:6px;
    margin:0 0 14px 0;
}

/* ZVÝRAZNĚNÁ KARTA */
.highlight{
    transform:scale(1.03);
    border-top:4px solid #ff2a2a;
    box-shadow:0 15px 40px rgba(255,0,0,0.25);
}

.cenik-karta.highlight:hover{
    transform:translateY(-8px) scale(1.03);
    box-shadow:0 18px 45px rgba(255,0,0,0.28);
}

/* LOGO */
.logo{
    width:204px;
    position:absolute;
    top:0;
    left:0;
    z-index:10;
    cursor:pointer;
    transition:0.3s;
    filter:drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.logo:hover{
    transform:scale(1.05);
    filter:brightness(1.2);
}

/* HORNÍ PRUH */
.hornipruh{
    position:absolute;
    top:0;
    left:200px;
    width:calc(100% - 200px);
    height:115px;
    background-color:black;
    z-index:5;
}

/* ŠEDÝ PRUH */
.sedypruh{
    width:100%;
    height:35px;
    background-color:#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;
    font-weight:bold;
}

/* KONTAKT */
.kontakt{
    display:flex;
    align-items:center;
    gap:40px;
}

.kontakt a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

/* SOCIAL */
.social{
    display:flex;
    align-items:center;
    gap:20px;
    margin-right:20px;
}

.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;
    justify-content:center;
    transition:0.3s;
}

.menu a:hover,
.menu a.aktivni{
    background-color:#ff2a2a;
    color:white;
}

/* BACKGROUND */
.moto-stranka{
    background-image:url("images/moto.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    background-repeat:no-repeat;
    position:relative;
}

.moto-stranka::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:-1;
}

/* OBSAH */
.moto-obsah{
    padding:140px 8% 80px 8%;
    color:white;
    flex:1;
    width:100%;
}

/* SEKCE */
.sekce{
    margin-top:60px;
}

.sekce:first-child{
    margin-top:0;
}

/* NADPIS SEKCE */
.sekce-nadpis{
    text-align:center;
    font-size:40px;
    margin:0 0 12px 0;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* POPIS SEKCE */
.sekce-popis{
    text-align:center;
    font-size:18px;
    max-width:760px;
    margin:0 auto 40px auto;
    color:#ddd;
    line-height:1.6;
}

/* GRID KARET */
.cenik-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
    max-width:1300px;
    margin:0 auto;
    align-items:stretch;
}

/* KARTA */
.cenik-karta{
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(4px);
    border:1px solid rgba(255,255,255,0.15);
    border-top:4px solid #ff2a2a;
    border-radius:12px;
    padding:24px;
    box-shadow:0 8px 25px rgba(0,0,0,0.35);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
}

.cenik-karta:hover{
    transform:translateY(-8px);
    box-shadow:0 14px 35px rgba(0,0,0,0.45);
}

.cenik-karta h3{
    font-size:24px;
    margin:0 0 12px 0;
    line-height:1.35;
    color:white;
}

.cena{
    font-size:30px;
    font-weight:bold;
    color:#ff2a2a;
    margin-bottom:18px;
}

.cenik-karta ul{
    list-style:none;
    padding:0;
    margin:0;
    flex-grow:1;
}

.cenik-karta li{
    font-size:16px;
    line-height:1.6;
    margin-bottom:10px;
    padding-left:24px;
    position:relative;
    color:white;
}

.cenik-karta li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#ff2a2a;
    font-weight:bold;
}

.upozorneni{
    margin-top:12px;
    font-size:14px;
    color:#ffb3b3;
    line-height:1.4;
}

/* FOOTER - stejně čistě jako u kontaktů, ale drží dole */
.footer{
    width:100%;
    margin-top:auto;
    background:#000;
    color:white;
    text-align:center;
    padding:60px 20px;
    font-size:16px;
    line-height:1.8;
    border-top:1px solid #333;
}

.footer a{
    color:#ff2a2a;
    text-decoration:none;
    font-weight:bold;
}

.footer a:hover{
    text-decoration:underline;
}


.image-section{
    width:100%;
    margin:60px 0;
    display:flex;
    justify-content:center;
}

.image-section img{
    width:100%;
    max-width:1200px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.4);
}




/* TABLET */
@media (max-width:1024px){

    .logo{
        width:160px;
    }

    .hornipruh{
        left:160px;
        width:calc(100% - 160px);
        height:auto;
        min-height:115px;
    }

    .menu{
        gap:30px;
        flex-wrap:wrap;
        padding-left:20px;
        padding-right:20px;
        height:auto;
        min-height:80px;
    }

    .menu a{
        font-size:18px;
        height:60px;
        padding:0 12px;
    }

    .moto-obsah{
        padding:150px 30px 70px 30px;
    }

    .cenik-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

/* MOBIL */
@media (max-width:768px){

    .logo{
        position:relative;
        display:block;
        width:140px;
        margin:0 auto;
        left:auto;
        top:auto;
        padding:10px 0;
    }

    .hornipruh{
        position:relative;
        left:auto;
        top:auto;
        width:100%;
        height:auto;
        min-height:auto;
    }

    .sedypruh{
        flex-direction:column;
        gap:12px;
        padding:12px 15px;
        text-align:center;
        height:auto;
        font-size:13px;
    }

    .kontakt{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .kontakt a{
        word-break:break-word;
    }

    .social{
        margin-right:0;
        justify-content:center;
    }

    .menu{
        flex-wrap:wrap;
        padding:0;
        gap:0;
        width:100%;
        height:auto;
    }

    .menu a{
        width:50%;
        height:55px;
        justify-content:center;
        font-size:17px;
        border-top:1px solid rgba(255,255,255,0.08);
        box-sizing:border-box;
        padding:0;
    }

    .moto-stranka{
        background-attachment:scroll;
    }

    .moto-obsah{
        padding:40px 20px 60px 20px;
    }

    .cenik-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .highlight{
        transform:none;
    }

    .cenik-karta.highlight:hover{
        transform:translateY(-8px);
    }

    .sekce{
        margin-top:40px;
    }

    .sekce-nadpis{
        font-size:28px;
        line-height:1.3;
    }

    .sekce-popis{
        font-size:16px;
        margin-bottom:30px;
        padding:0 10px;
    }

    .cenik-karta{
        padding:20px;
    }

    .cenik-karta h3{
        font-size:21px;
    }

    .cena{
        font-size:26px;
    }

    .cenik-karta li{
        font-size:15px;
        line-height:1.5;
    }

    .upozorneni{
        font-size:15px;
    }

    .footer{
        padding:30px 20px;
        font-size:15px;
        line-height:1.7;
    }
}

/* MALÉ MOBILY */
@media (max-width:480px){

    .menu a{
        width:100%;
    }

    .sekce-nadpis{
        font-size:24px;
    }

    .sekce-popis{
        font-size:15px;
    }

    .cena{
        font-size:24px;
    }

    .cenik-karta h3{
        font-size:20px;
    }
}