@import url(https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family:"Exo 2", sans-serif;
}

html{
    font-size: 62.5%;
}

body{
    width: 100%;
    overflow-x: hidden;
    color: black;
    background: #f8f9f4;
}


header{
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 100;
}

footer{
    background-color: rgba(75, 74, 77, 0.2);
    position: relative;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    bottom: 0px;
    font-size: larger;
}

.contact-container {
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-bottom: 20px;
    gap: 10px;
    font-size: larger;
}

.contact-container a {
 color: white;
}

.contact-header {
    align-items: center;
    padding-left: 40px;
    padding-top: 10px;

}

.Adresa {
    padding-top: 18px;
}

.copy {
    padding-left: 150rem;
    font-size: larger;
}

.copy a {
    color: white;
}

.contact {
    padding-right: 3%;
}






.map {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    width: 15%;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.logo{
    transition: 0.5s ease;
    width: 10%;
    padding-top: 0px;
    margin-top: -50px;
}



nav a{
    font-size: 1.8rem;
    color: black;
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover{
    color: #2aafac;
    border-bottom: 3px solid #2aafac;
}

nav a.active{
    color: #2aafac;
    border-bottom: 3px solid #2aafac;
}



section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8rem;
    margin-top: -200px;
    padding-top: -200px;
}

.home img{
    width: 15%;
    padding: 20px;
}

.wing1 {
    transition: transform 0.1s linear;
}

.wing2 {
    transition: transform 0.1s linear;
}

.halo {
    transition: transform 0.1s linear;
}

.home .home-content h1{
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}

span{
    color:#2aafac;
}

.home-content h3{
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.nadpis {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2aafac;
    text-align: center;
    padding-bottom: 50px;
}

.home-content p{
    font-size: 1.6rem;
}




.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #2aafac;
    font-size: 2rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: #2aafac;
}

.social-icons a:hover{
    color: #2aafac;
    transform: scale(1.3) translateY(-5px);
    background-color: white;
    box-shadow: 0 0 25px #2aafac;
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: #f8f9f4;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #2aafac;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #2aafac;
    transition: 0.3s ease;
    cursor: pointer;
    margin-top: 3rem;
}

.btn:hover{
    transform: scale(1.1);
    background-color: #2aafac;
    color: #f8f9f4;
    box-shadow: 0 0 20px #2aafac;
}

.bg-bars{
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.bg-bars::before,
.bg-bars::after{
  content:""; position:absolute; top:0; bottom:0;
  width: 20vw;
  background: rgba(51, 255, 238, 0.295);
}

/* levý pilíř */
.bg-bars::before{
  left: -10vw;
  transform: skewX(10deg);
}

/* pravý pilíř */
.bg-bars::after{
  right: -10vw;
  transform: skewX(-10deg);
}


@media(max-width: 1000px){
    .home{
        gap: 4rem;
    }
}

@media(max-width: 995px){
    .home{
        flex-direction: column;
        margin: 5rem 4rem;
    }

    .home img{
        width: 100%;
    }

    .home .home-content h3{
        font-size: 2rem;
    }

    .home .home-content h1{
        font-size: 2.5rem;
    }

    .home-img img{
        width: 50vw;
        margin-top: 4rem;
    }
}








/* Základ hamburger ikonky */
.menu-toggle {
  display: none;
  font-size: 3rem;
  color: #2aafac;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.2);
}

/* Mobilní verze */
@media (max-width: 995px) {
  .menu-toggle {
    display: block;
    z-index: 200;
    position: fixed;
    right: 20px;
  }

  nav {
    position: fixed;
    top: 0;
    padding-top: 10rem;
    right: -100%; /* skryté mimo obraz */
    width: 50%;
    height: 100%;
    background-color:  rgba(75, 74, 77, 0.9);
    border-left: 3px solid #2aafac;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 3rem;
    transition: right 0.4s ease;
  }

  nav.active {
    right: 0; /* vysunutí */
  }

  nav a {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
  }

  nav a:hover,
  nav a.active {
    color: #2aafac;
    border-bottom: 2px solid #2aafac;
  }

  .logo{
    width: 30%;
    margin-left: -50px;
    margin-top: -30px;
  }

 .paralax{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
 }

  .home{
    margin-top: -100px;
  }

  footer{
    display: flex;
    font-size: x-small;
  }

  .copy{
    padding-left: 10%;
  }

  .map{
    display: none;
  }

}



section{
    margin-top: 20px;
}

header{
    position: relative;
}