/* RESET STYLŮ – ať není bordel v prohlížečích */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* HLAVIČKA */
header {
    background-color: #222;
    color: white;
    padding: 30px 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

.moto {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffcc00;
}

/* NAVIGACE */
nav {
    background-color: #444;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1em;
    transition: 0.3s;
}

nav a:hover {
    color: #ffcc00;
}

/* OBSAH STRÁNEK */
section {
    background: white;
    padding: 40px 20px;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* OBRÁZEK NA HLAVNÍ STRÁNCE */
.hlavni-obrazek {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* NABÍDKA – SEZNAM SLUŽEB */
.nabidka-list {
    list-style: none;
    padding: 0;
}

.nabidka-list li {
    margin: 10px 0;
}

.nabidka-list a {
    display: block;
    padding: 12px;
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}

.nabidka-list a:hover {
    background-color: #ff9900;
    color: white;
}

/* FORMULÁŘ */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 150px;
}

/* TLAČÍTKO */
button, .tlacitko {
    background-color: #ffcc00;
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

button:hover, .tlacitko:hover {
    background-color: #ff9900;
}

/* VIDEO PŘEHRÁVAČ */
.video-player {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* CELÁ STRÁNKA – flexbox, aby patička byla dole */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* OBSAH STRÁNKY – roztáhne se tak, aby patička byla dole */
main {
    flex: 1;
}

/* PATIČKA – vždy dole */
footer {
    background: #222;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: auto;
    width: 100%;
}
}
