/* RESET */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ZÁKLAD */
html {
    font-size: 16px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f6f9;
    color: #333;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* KONTEJNER */
.container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #004aad, #0077ff);
    color: white;
    text-align: center;
    padding: 40px 15px;
}

header img {
    display: block;
    margin: 0 auto 10px;
    max-width: 100px;
}

h1 {
    font-size: 1.8rem;
}

.subtitle {
    margin-top: 8px;
    font-size: 1rem;
}

/* NAVIGACE */
nav {
    background: #003580;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    display: block;
}

nav a:hover {
    background: #0055cc;
}

/* MENU */
.menu {
    display: flex;
    gap: 5px;
}

.menu-icon {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    padding: 12px 20px;
}

#menu-toggle {
    display: none !important;
}

/* SEKCE */
section {
    background: white;
    margin: 20px auto;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

h2 {
    margin-bottom: 15px;
    color: #004aad;
}

/* OBRÁZKY V SEKCI */
section img {
    display: block;
    margin: 25px auto;
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 10px;
}

/* TABULKA */
.race-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.race-table th,
.race-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.race-table th {
    width: 40%;
    background: #f8f9fb;
    color: #004aad;
}

.race-table td {
    width: 60%;
    word-break: break-word;
}

/* ? LOGA DOLE */
.bottom-logos {
    display: flex;
    justify-content: center;   /* vystředění */
    align-items: center;
    gap: 20px;                /* mezery */
    margin: 30px 0;
    flex-wrap: wrap;          /* pro mobil */
}

.bottom-logos img {
    height: 100px;            /* ?? hlavní požadavek */
    width: auto;
    object-fit: contain;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* MOBIL */
@media (max-width: 768px) {

    nav .container {
        justify-content: space-between;
    }

    .menu-icon {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #003580;
    }

    .menu a {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    #menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }

    .bottom-logos img {
        height: 70px; /* menší na mobilu */
    }
}
.video-container {
    display: flex;
    justify-content: center; /* Horizontální vycentrování */
    align-items: center;     /* Vertikální vycentrování */
  
}

