/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: left; /* Zarovnání textu na stránce doleva */
}

header {
    position: relative;
    width: 100%; /* Nastaveno na celou šířku */
    margin: 0 auto; /* Centrum hlavičky na stránce */
    text-align: left; /* Zarovnání textu v hlavičce doleva */
}

header img {
    width: 100%;
    height: 100%; /* Roztahuje obrázek, aby zabíral celou šířku */
    object-fit: cover; /* Udržuje roztahování obrázku bez dodržení poměru stran */
    display: block;
}

header .header-text {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    padding-top: 20px; /* Výškové zarovnání textu v hlavičce */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    color: white; /* Text v hlavičce vrácen na bílou */
}

header .header-text h1 {
    font-size: 3rem;
    margin: 0;
}

header .header-text p {
    font-size: 1.5rem;
}

/* New section for introductory text below header */
#intro-text {
    padding: 20px;
    background-color: #f4f4f4;
    text-align: left; /* Zarovnání textu doleva */
}

#intro-text p {
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #333;
    text-align: left; /* Zarovnání menu doleva */
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px;
}

nav ul li a:hover {
    background-color: #555;
}

/* Sections */
section {
    padding: 40px;
    text-align: left; /* Zarovnání textu sekcí doleva */
    background-color: #f4f4f4;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section ul {
    list-style-type: none;
    padding: 0;
}

section ul li {
    margin-bottom: 20px;
}

section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Form styles (for contact section) */
form {
    display: none; /* Zrušení vyplňovacích polí */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
}
