/* CSS Document */
/* Reset základných štýlov */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Telo dokumentu */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Kontajner na stred a maximálnu šírku */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hlavička */
header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Prvá časť - horný pruh */
.header-top {
    background-color: #004080;
    height: 30px;
    width: 100%;
}

/* Druhá časť - biela sekcia s logom */
.header-middle {
    background-color: #ffffff;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo v strede */
header .logo img {
    max-height: 140px;
    height: auto;
   }

/* Tretia časť - spodný pruh s odkazmi */
.header-bottom {
    background-color: #004080;
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
}

.header-bottom nav ul {
    list-style: none;
    display: flex;
    justify-content: right;
    width: 100%;
    padding: 0;
    margin: 0;
}

.header-bottom nav ul li {
    margin: 0 15px;
}

.header-bottom nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 30px;
    transition: background 0.3s;
}

.header-bottom nav ul li a:hover {
    background-color: #0066cc;
    border-radius: 4px;
}

/* Hero sekcia (na domovskej) */
.hero {
    background: url('banner.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFFred;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ffa500;
    color: #fff;
    padding: 12px 25px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff8c00;
}

.btn.secondary {
    background-color: #555;
}

.btn.secondary:hover {
    background-color: #333;
}

/* Sekcie */
.section {
    padding: 60px 20px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #004080;
}

/* Služby - zoznam */
ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Kontaktny formulár */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 1em;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    padding: 12px;
    background-color: #004080;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0066cc;
}

/* Pätička */
footer {
    background-color: #004080;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}