@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');



:root {
  --nav-height: 100px; /*80%*/
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html {
    scroll-behavior: smooth; 
}

body {
  min-height: 100vh;
  width: 100%;
  font-size: 12px;
  }


.floating-btn {
  position: fixed;
  bottom: 3.5vh;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: yellow;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, hsla(0,0%,0%,0.5));
  cursor: pointer;
  margin-right: 1rem;
  border: 1px solid #000;
}

.show-btn {
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  background-color: #000;
 
}


/*Srcollbar*/

::-webkit-scrollbar{
  width: 15px;
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: yellow;
  border-radius: 10px;
  border: 1px solid black;
}

::-webkit-scrollbar-thumb:active {
  background: orangered;
}

/*LIGHTBOX*/

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0); 
  color: #000;
  z-index: 10;
  font-size: 20px;
}

.l-box-card {
  width: 60%; /*70%*/
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  box-shadow: 0 0 10px black;
  background-color: #000;
  color: unset;
  transform: scale(0);
  transition: all 0.8s ease;
  transform: translateY(-1500);
  border: 3px solid  #fdcd3b;
  
}

.lightbox:target {
  transform: scale(1); 
}

.lightbox:target .l-box-card {
  transform: scale(1);
}

.lightboxbtn {
  background-color: #fdcd3b;
  color: #000;
  width: fit-content;
  text-decoration: none;
  border: 2px solid #000;
  text-transform: uppercase;
  padding: 10px;
  font-size: 20px;
  font-style: bold;
  transition: all 0.3s linear;
}

.lightboxbtn:hover {
  background-color: #000;
  color: #fdcd3b;
  transform: scale(1.3);
}

#impul {
  list-style: none;
  line-height: 2rem;
  font-size: 14px;
  color: #fff;
}

#impul, #GDPR, #cookie {
  list-style: none;
  line-height: 2rem;
  font-size: 14px;
  color: #fff;
}

#impressum h2, #cookie h2, #GDPR h2 {
  color: #fff;
  font-size: 20px;
}

/*LIGHTBOX CSS*/


/*NAV*/

nav {
  display: flex; 
  width: min(90%, 1200px);
  height: inherit; 
  justify-content: flex-start;
  margin-inline: unset;
  display: flex;
  align-items: center;
  font-size: 20px;
  left: 2.5rem;
  gap: 1rem;
  margin-top: -1.5rem;
  margin-left: 3rem;
}


nav a {
  max-height: var(--nav-height); 
  align-items: center; 
  margin-inline: auto; 
  font-size: 20px;
  position: relative;
  height: 100%;
}

nav ul {
  display: flex; 
  gap: 1rem;
  width: 100%;
  list-style: none;
  margin-top: 3rem;
  
}

.nav-item a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  height: 100%;
  padding: 10px;
  
}

.nav-item a::before,
.nav-item a::after {
  content: '';
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all .35s ease;
  opacity: 0;
}

nav a::before {
  content: '';
  right: 0;
  top: 0;
  border-top: 3px solid #ffed4b;
  border-right: 3px solid #fdcd3b;
  transform: translate(-100%, 50%); /*-100%, 50%*/
}

.nav-item a:after {
  content: '';
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #fdcd3b;
  border-left: 3px solid #ffed4b;
  transform: translate(100%, -50%);  /*100%, -50%*/
}

.nav-item a:hover:before,
.nav-item a:hover:after{
  transform: translate(0,0);
  opacity: 1;
}



.nav-item a:hover {
  color:yellow;
}

.container{
    min-height: 100vh;
    width: 99.vw;
    background: #08071d;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("assets/images/mainpage/106811484-1608045351058-gettyimages-1126750618-dsc_1540.jpeg") no-repeat center center/cover;
   
}

.container form{
    width: 670px; /*670px*/
    height: 500px;
    display: flex;
    justify-content: center;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    overflow-x: hidden;
}

.container form h1{
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    width: 500px;
    text-align: center;
}

.container form input{
    width: 290px;
    height: 40px;
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 25px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
}

.container form input::placeholder{
    color: #ddd;
}

.container form #lastName,
.container form #mobile{
    margin-left: 20px;
}

.container form h4{
    color: #fff;
    font-weight: 300;
    width: 600px;
    margin-top: 20px;
}

.container form textarea{
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-weight: 200;
    font-size: 25px;
    padding: 10px;
    outline: none;
    min-width: 600px;
    max-width: 600px;
    min-height: 80px;
    max-height: 80px;
}



.contactus {
  font-size: 18px;
}



input[type="text"]:focus, input[type="email"]:focus, #texti:focus {
  border-bottom: 3px solid #fdcd3b;
  color: #fff;
}


textarea::-webkit-scrollbar{
    width: 1em;
}

textarea::-webkit-scrollbar-thumb{
    background-color: rgba(194,194,194,0.713);
}

.container form #button{
    border: 1px solid;
    background: transparent;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    width: 100px;
    padding: 0;
    margin-right: 500px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.container form #button:hover{
    cursor: pointer;
    opacity: 0.9;
    transform: scale(1.2);
    background-color: black;
    color: yellow;
}

/*CHECKBOX BUTTON*/

.chkbox-container {
  margin-top: 1rem;
  line-height: 1rem;
  color: #fff;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.chkbox-container p {
  margin-left: 2rem;
}



.custom-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:1rem;
}

input[type='checkbox'] {
 
  width: unset;
  height: unset;
  border: 1px solid #ffe81f;
  display: grid;
  place-content: center;
  cursor:pointer;
  border-radius: 100%;
  accent-color: orangered;
}



/*FOOTER*/

footer {
  width: 100%;
  background-color: #000;
  padding-block: 4rem;
  color: white;
  font-size: 20px;
  

}

.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-inline: auto;
  width: min(90%, 1200px);

  
}

.footer-top {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 18px;
  display: flex;
  justify-content: space-around;
}

.footer-top h2 {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.footer-top article div {
  line-height: 2.5rem;
}

.footer-top article div:first-of-type {
  margin-top: 1rem;
}


.footer-top img {
  height: 64px;
}

.text-container p {
  margin-top: 2rem;
}

.text-container ol li {
  line-height: 1.5rem;
  
}
  


/*CONTACT ICONS*/

.cellphone img, .internet img, .headquarter img, .opening-hours img{
  background-color: yellow;
  border-radius: 50px;
  transition: all 0.3s linear;
  
  
}

 footer img:hover {
  background-color: orangered;
  border-radius: 40px;
  transform: rotate(-360deg);
}


.footer-bottom {
  text-align: center;
  margin-top: 2rem;
 
}

span {
  color: yellow;
}


.text-container {
  justify-content: space-between;
  width: 20vw;;
  font-size: 1.6rem;
}

/*POLICIES LINKS*/

.policies {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-transform: uppercase;
}

.policies a {
  color: yellow;
  font-size: 18px;
  line-height: 2rem;
  text-decoration: none;
}

.policies a:hover {
 color: orangered;
}
/*MAP*/

.map {
  margin-inline: auto;
}

/*SOCIAL MEDIA ICONS*/

.social-media-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding:1rem;
  border: 1px black;
  width: 100%;
  height: 100%;
}

.sm-container a {
  text-decoration: none;
}

.sm-container a:active {
  color: yellow;
}

.fa {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
}


.fa-instagram {
  background: #125688;
  color: white;
  padding: 1rem;
}


.fa-skype {
  background: #00aff0;
  color: white;
  padding: 1rem;
  }

.fa-facebook {
  background: #4267B2;
  color: white;
  padding: 1rem;
}

.fa-linkedin {
  background: #3B5998;
  color: white;
  padding: 1rem;
}

.sm-icon {
  transition: all 0.3s linear;
}

.sm-icon:hover {
  transform: scale(1.2);

}

.fa:hover {
 background-color: #fdcd3b;
}


/*MOBILE MENU*/
.mobile-menu {
	display: none;
}

.mobile-menu {
    display: flex;
    width: 100%; /*.line a szülő tehát 40px a width*/
    height: calc(100vh - 80px);
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 80px;
    left: 0;
    background-color: black;
    transform: translate(-100%);
    transition: all 0.4s ease;
    z-index: 100;
  }

  .mobile-menu-on {
    display: flex; /**/
    transform: translate(0);
  }

  .m-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    font-size: 1.4rem;
  }

   /*hamburger icon*/

   .header-right-gap {
    width: 100px;
    margin-left: 2rem;
    
   }
  
   .hamburger {
    display: none;
    position: fixed;
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    top: 0;
    left: 1;
    margin-top: 1.5rem;
   
    
    
  }

  .hamburger:hover {
    border: 6px solid;
    border-color: yellow;
    width: 43px;
    margin-left: 4px;
    transform: scale(1.2);
  }
    .hamburger:hover .line.line-1 {
      /*display: none;*/
      transform: rotate(45deg) translateY(7.5px);
      background-color: yellow;
      
    }
    
    .hamburger:hover .line.line-2 {
      display: none;
      
    }
    
    .hamburger:hover .line.line-3 {
      /*display: none;*/
      transform: rotate(-45deg) translateY(-7.5px);
      background-color: yellow;
      
      
    }
    
    .line {
    transition: all .4s ease;
    width: 40px;
    height: 5px;
    background-color: white;
    margin-block: 5px;
    border-radius: 10px;
  }

/*Media query*/

@media (max-width: 1200px) {
  .hamburger {
    display: block;
  }
  
  #desktop-menu {
    display: none;
  }


}

@media (max-width: 900px) {

  .footer-top {

    display: flex;
     flex-direction: column;
     align-items: center;
   }


	footer nav ul {
    flex-direction: column;
		
	}

  footer nav ul li a {
    font-size: 15px;
      /*padding: 15px;*/
  }
}

@media (max-width: 750px) {
  .footer-container {
    display: flex;
    flex-direction: column;
  }



  footer nav ul li a {
    font-size: 10px;
    padding: 15px;
  }


  .text-container p {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .container form {
    width: 470px;
    
  }

  .container form input {
    width: 160px;
  }

  .container form #button, .container form h4 {
    margin-inline: auto;
  }

.container form textarea {
  min-width: 300px;
  max-width: 300px;
}

.container form h4 {
  display: flex;
  justify-content: center;
    color: #fff;
    font-weight: 300;
    width: 600px;
    margin-top: 20px;
}

.footer-top {

  display: flex;
   flex-direction: column;
   align-items: center;
 }
 
}


@media (max-width: 400px) {

  .container {
    max-width: unset;
    height: 100%;
    overflow: hidden;
   
    
  }

  .container form {
    max-width: 100%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .container form input, h4 {
    text-align: center;
  }

  .container form input {
    width: 160px;
  }

  .container form #button, .container form h4 {
    margin-inline: auto;
  }

.container form textarea {
  align-items: center;
  min-width: 300px;
  max-width: 300px;
}

.text-container {
  width: 70vw;
}

.container form #button {
  display: flex;
  flex-direction: column;
  padding-top: 6px;
  padding-left: 7px;
}

footer {
  width: 400px;
}

}



