* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    box-sizing: border-box;
}
/* Začátek navbaru */
nav {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #051626;
}

.logo img {
    max-height: 50px;
}

.links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.button button {
    padding: 10px 20px;
    background-color: #F7934C;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
}
/* Konec navbaru */
/* Začátek úvodní stránky */
.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #051626;
    color: white;
}
/* Rozložení stránky na dvě části */
.text {
    flex: 1;
}

.text h1 {
    margin-top: 0;
    font-size: 300%;
    font-weight: 900;
    
}

.text p {
    font-size: 120%;
    width: 65%;
}

.image {
    margin-left: auto;
}
/* Úprava obrázku */
.image img {
    max-width: 800px;
    height: auto;
    margin-left: auto;
}
/* Třída pro obarvování textu (hojně používaná :D) */
.Orange {
    color: #F7934C;
}

.aboutUs {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #051626;
    color: white;
}

.aboutUsText {
    text-align: center;
    font-size: 125%;
}

.aboutUsText h3{
    opacity: 0.5;
}

.requirements {
    display: flex;
}
/* Používání Display flex pro zarovnání vedle sebe */
.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    margin: 40px;
}
/* Rozlišení ikon */
.icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.cardText {
    text-align: center;
}

.cardText h2 {
    margin-top: 0;
}

.cardText p {
    margin-bottom: 0;
}

.pozadavky {
    display: flex;
    align-items: center;
    background-color: #051626;
    color: white;
    padding-top: 10%;
    padding-bottom: 7%;
}
/* Rozložení Na pravou část a levou */
.left, .right {
    flex: 1;
    padding: 20px;
    margin-left: 10%;
}

.left h1 {
    font-size: 180%;
}

.right p {
    font-size: 125%;
}
/* Použití čáry mezi texty */
.line {
    width: 2px;
    height: 100px; /* Délka čáry */
    background-color: rgb(255, 255, 255);
}
/* Základní informace co děláme */

.ourService {
    display: flex;
    flex-direction: column;
    color: white;
    background-color: #071f35;
    align-items: center;
}

.ourServiceText {
    max-width: 50%;
    text-align: center;
}

.ourServiceText h1{
    font-size: 260%;
}

.ourServiceText p{
    font-size: 120%;
}

.ourService img {
    max-width: 80%;
}

.weOffer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #051626;
    color: white;
}

.weOfferText {
    flex: 1;
}

.weOfferText  h3{
    opacity: 0.5;
}

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

.weOfferText  p{
    font-size: 120%;
    max-width: 80%;
}

.weOfferObrazek {
    margin-left: auto;
}

.weOfferObrazek img{
    max-width: 800px;
}

.sekceFormularText {
    background-color: #051626;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sekceFormularText h1{
    color: white;
}

.sekceFormularText h2{
    color: white;
    padding-bottom: -20px;
    opacity: 0.5;
}
/* Obarvení okolo formuláře */
.container2 {
    background-color:#051626;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}
/* Nadpis formuláře */
label {
    display: block;
    margin-bottom: 5px;
    color: white;
}
/* Možnosti informací ve formuláři */
input, select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* Tlačítko u formuláře */
button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.footer {
    background-color: #071f35;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 200px; /* Logo bude mít maximální šířku rovnou 100% šířce kontejneru */
    height: auto; /* Automatické zachování poměru stran */
    margin-bottom: 10px;
}

.footer-contact {
    text-align: center;
    color: white;
}

@media screen and (min-width: 768px) {
    .container {
        padding: 40px;
    }
    
    
}



/* Responzivita na telefony */
@media screen and (max-width: 600px) {
    .logo img {
        max-height: 40px;
    }

    .links {
        display: none;
    }

    .button {
        margin-left: auto;
    }

    .card {
        flex-direction: column;
    }

    .weOfferObrazek img{
        max-width: 0px;
    }

    .weOfferText {
        font-size: 100%;
        max-width: 100%;
    }
    .requirements {
        display: block;
    }
    .pozadavky {
        flex-direction: column;
    }
    .line {
        width: 120px;
        height: 2px; /* Délka čáry */
        background-color: rgb(255, 255, 255);
    }
    .image img {
        max-width: 0px;
    }
    .text p {
        font-size: 130%;
        width: 100%;
    }
}
