.no-scroll{
    overflow: hidden;
}
*{
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us{
    background: rgb(243, 249, 255);
    background-image: url(../images/axureal-site-bg.png);
    background-size: cover;
    padding: 10vh 5vw;
}

.about-us article{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
}

.about-us h2{
    font-size: 40px;
    font-family: "Poppins", serif;
    font-weight: 400;
    text-align: left;
}

.about-us article p{
    font-size: 20px;
    text-align: justify;
    font-weight: 200;
    width: 100%;
}

.about-us article img{
    width: 100%;
    border-radius: 15px;
    align-self: center;
    margin-bottom: 10px;
    transition: all 0.5s ease;
}

.about-us .text-section{
    width: clamp(300px, 90%, 700px);
}

.text-section div{
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}

.additional-infos{
    width: clamp(300px, 90%, 400px);
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    height: 100%;
    gap: 50px;
}

.additional-infos .section{
    display: flex;
    align-items: center;
    gap: 20px;
}

.additional-infos div img{
    width: 50px;
    align-self: center;
}

.services{
    padding-bottom: 10vh;
}
.services h1{
    text-align: left;
    margin-left: 10%;
    font-weight: 400;
    font-size: clamp(40px, 10vw, 50px);
    margin-bottom: 0;
}

.services-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: stretch; /* Všetky články budú rovnako vysoké */
}

.services article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Začína hore, obrázok pôjde dole */
    align-items: center;
    color: rgb(0, 0, 0);
    width: clamp(300px, 90%, 400px);
    text-align: center;
    border-radius: 15px;
    padding: 20px;
    min-height: 100%; /* Každý článok má rovnakú výšku */
}


.services-container h2{
    text-align: left;
    font-weight: 400;
    width: 100%;
}

.services img {
    width: 80%;
    border-radius: 15px;
    margin-top: auto; /* Toto ho zatlačí na spodok */
    box-shadow: 20px 20px 40px 10px rgba(123, 123, 123, 0.541);
    transition: all 0.5s ease;
}

.services img:hover {
    transform: scale(1.05);
    border-radius: 0;
}


.services p{
    text-align: justify;
    margin: 0 10% 5%;
}

.fleet{
    padding: 10vh 5vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    flex-wrap: wrap;
    background-image: url(../images/axureal-site-bg.png);
    background-size: cover;
}

.fleet h1{
    font-weight: 400;
    font-size: clamp(30px, 20vw, 60px);
    margin: 0;
}

ul{
    line-height: 2;
}

.fleet li{
    font-size: 18px;
    text-align: justify;
}

.fleet article{
    width: clamp(250px, 80%, 600px);
}

.fleet img{
    width: clamp(250px, 80%, 600px);
    border-radius: 25px;
    align-self: center;
}

.image-gallery {
    padding: 5% 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden; /* Zabráni posúvaniu celej galérie */
}

.gallery-container {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Umožní hladký posun obrázkov bez ovplyvnenia stránky */
    scroll-behavior: smooth; /* Pre hladké posúvanie */
}

.thumbnail {
    width: 250px; /* Nastavte veľkosť miniatúry */
    margin: 0 5px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.2s ease;
    scroll-snap-align: center; /* Určí, že každý obrázok sa zarovná na stred */
}

.thumbnail:hover {
    transform: scale(1.1); /* Zväčšenie obrázku pri hover */
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Šípky pre modal */
.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 101;
}

.modal-prev {
    left: 10px;
}

.modal-next {
    right: 10px;
}


.counters{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10vh 0 0;
}

.counters h1{
    font-size: 30px;
    margin: 0;
    font-weight: 500;
}

.counters h2{
    margin: 0;
    font-weight: 300;
}

.counters article{
    width: 250px;
    height: 250px;
    margin-bottom: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border: 5px solid rgba(0, 0, 0, 0.42);
    border-radius: 50px;
}


.collaborations{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: max-content;
    padding: 10% 0;
    background: rgb(243, 249, 255);
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    background-size: cover;
}

.collaborations img{
    height: clamp(40px, 50px, 60px);
    align-self: center;
}

.map{
    width: 100%;
}

.interested{
    width: 100%;
    text-align: center;
    padding: 80px 0px;
    background-image: url(../images/axureal-site-bg.png);
    background-size: cover;
}

.interested h1{
    text-align: center;
    font-size: clamp(30px, 10vw, 40px);
    margin: 0;
    font-weight: 500;
}

.interested a div{
    color: white;
    width: max-content;
    margin: 10px auto;
    background: var(--blue);
    padding: 20px 40px;
    font-size: 20px;
    border-radius: 50px;
    padding-inline: 40px;
    transition: padding-inline 0.25s;
}

.interested a div:hover{
    padding-inline: 60px;
    transition: padding 0.25s;
}

.contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
    padding:  10vh 0;

    background-image: url(../images/axureal-site-bg.png);
    background-size: cover;
}

.contact article{
    width: clamp(300px, 80%, 500px);
    margin-left: 10%;   
}

.contact h2 span{
    color: var(--blue);
}

.contact h2{
    font-size: 50px;
    font-weight: 500;
    margin: 0;
}

.contact form div{
    display: flex;
    flex-direction: column;
}

.contact article:nth-child(2){
    padding: 2% 5%;
    border-radius: 10px 20px;
    color: rgb(0, 0, 0);
    background: rgb(255, 255, 255);
}

.contact form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact textarea{
    width: 100%;
    height: 150px;
    border-radius: 20px;
    padding: 10px;
}

.contact form input .name{
    border: 0.5px solid black;
    border-radius: 5px;
    width: 50%;
    height: 25px;
    padding: 5px;

}

#send-button{
    width: min-content;
    background: var(--blue);
    color: white;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0 0 0 auto;
    border-radius: 5px;
    border: none;
}