/* =========================
   ZÁKLAD
   ========================= */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: rgba(221, 79, 14, 1);
    margin: 0;
    padding: 0;
}

/* =========================
   NAVIGACE – LOGO VPRAVO
   ========================= */
.navbar {
    background: rgba(160, 55, 10, 1);
    padding: 10px 20px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.nav-links a:hover {
    text-decoration: underline;
}

.logo img {
    height: 36px;        /* cílová výška loga */
    width: auto;         /* zachování poměru stran */
    max-width: 180px;    /* ochrana proti extrémně širokému logu */
    display: block;
}

/* =========================
   HLAVNÍ KONTEJNER
   ========================= */
.container {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* =========================
   TEXTY
   ========================= */
h1 {
    margin-top: 0;
    color: #333;
}

p {
    color: #333;
}

/* =========================
   FORMULÁŘ
   ========================= */
label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
input[type="file"] {
    width: 100%;
    padding: 9px;
    margin-top: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: rgba(221, 79, 14, 1);
}

/* =========================
   TLAČÍTKA
   ========================= */
button {
    width: 100%;
    padding: 12px;
    margin-top: 25px;
    background: rgba(221, 79, 14, 1);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: rgba(180, 60, 10, 1);
}

/* =========================
   GALERIE
   ========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
}

/* =========================
   INFO POD FOTKOU
   ========================= */
.card .info {
    padding: 10px;
    font-size: 14px;
    color: #333;
}

.card .info strong {
    display: block;
    margin-bottom: 5px;
    color: rgba(221, 79, 14, 1);
}

/* =========================
   STATISTIKY
   ========================= */
#stats {
    font-size: 18px;
    font-weight: bold;
    color: rgba(221, 79, 14, 1);
}

/* =========================
   ZPRÁVY / VÝSLEDKY
   ========================= */
#result {
    margin-top: 15px;
    font-weight: bold;
}

/* =========================
   RESPONSIVE (MOBIL)
   ========================= */
@media (max-width: 600px) {
    .nav-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 12px;
    }

    .logo img {
        height: 32px;
    }

    .container {
        margin: 15px;
        padding: 18px;
    }
}

/* =========================
   STATISTIKY – VYLEPŠENÝ VZHLED
   ========================= */
.stats-box {
    text-align: center;
    padding: 30px 10px;
}

.stats-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.stats-value {
    font-size: 42px;
    font-weight: bold;
    color: rgba(221, 79, 14, 1);
    margin-top: 8px;
}

.stats-separator {
    height: 30px;
}
