body {
    background-color: rgb(253, 250, 203);
    font-family: Merriweather;
}

header {
    height: 120px;
    background-color: #97324b;
    color: #f1f1f1;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 5%;
   
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 250%; 
}

.logo img {
    margin-left: 20px; /* Mezera mezi názvem a obrázkem */
    max-width: 100px; /* Maximální šířka obrázku */
    height: auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 110%;
}



#burcak {
    height: 300px; /* Minimální výška */
    max-height: 500px; /* Maximální výška */
    background-color: rgb(253, 250, 203);
    text-align: center;
    margin-top: 200px;
    margin-bottom: 60px;
    
}

#burcak .container {
    max-width: 100%; /* Maximální šířka obsahu */
    margin: 0 auto;
}

#burcak .burcak-info {
    max-width: 60%; /* Maximální šířka textu */
    margin: 0 auto;
    padding: 20px;
    background-color: rgb(253, 250, 203);
    font-size: 110%;
    font-weight: 600;
    border-radius: 5px;
    line-height: 1.6;
}

.horizontal-line1 {
    width: 85%; /* Šířka čáry 85% šířky obrazovky */
    height: 2px; /* Výška čáry */
    background-color: rgb(70, 26, 48); /* Barva čáry */
    margin: 0 auto 7px; /* Zarovnání čáry na střed */
}

.horizontal-line2 {
    width: 67%; /* Šířka čáry 67% šířky obrazovky */
    height: 2px; /* Výška čáry */
    background-color: rgb(70, 26, 48); /* Barva čáry */
    margin: 0 auto 3px; /* Zarovnání čáry na střed */
}


.services-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 120px; 
    margin-bottom: 100px; 
}

.image-container {
    width: 30%;
    margin-left: 3%;
}

.image-container img {
    width: 100%;
    height: auto;
}

.text-container {
    width: 60%;
    margin-right: 3%;
}

.text-container p {
    margin-top: 15px;
}

.normal-link {
    text-decoration: none; 
    color: inherit; 
    cursor: pointer; 
}


.owner-section {
    display: flex;
    margin-top: 150px;
    margin-bottom: 150px;
}

.owner-text {
    width: 50%;
    margin-left: 10%;
    display: flex;
    align-items: center; /* Zarovnání textu vertikálně ke středu */
}

.owner-text p {
    margin: 0; /* Odstranění vnitřních okrajů pro odstranění mezery kolem textu */
    margin-right: 10%;
    font-size: 105%;
}

.owner-image {
    width: 30%;
    margin-right: 10%;
}

.owner-image img {
    width: 100%;
    height: auto;
}


.footer {
    height: 300px;
    width: 86.53%;
    color: #f1f1f1;
    background-color: #800020;
    display: flex;
    justify-content: space-between;
    padding: 5% 7%; /* Odstup od horního a dolního okraje footru */
    font-size: 110%;
    
}

.column {
    width: 24%; /* Šířka sloupce */
    margin-right: 7%; /* Mezera mezi sloupci */
}

.column a{
    text-decoration: none; 
    color: inherit; 
    cursor: pointer; 
}

.column img{
    width: 75%;
ˇ}
.column:last-child {
    margin-right: 0; /* Žádná mezera po posledním sloupci */
}

.small-footer {
    text-align: center; /* Zarovnání textu na střed */
    padding: 10px 0; /* Odstup od horního a dolního okraje */
    background-color: #181818; /* Barva pozadí */
    color: #f1f1f1;
    width: 100.5%;
}