*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.web-container{
    width: 100%;
    height: auto;
    overflow: hidden;
    /* background-color: black; */
}
.navbanner-container{
    width: 100%;
    height: 100vh;
    /* background-color: aqua; */
    background-image: url(luxoria-images/view-futuristic-light-lamp-design.jpg);
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
    background-position: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
}
.navbanner-container:is(:hover, :focus, :active) {
    animation-play-state: running;
}
@keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* .............navbar...................... */

.navbar-container{
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    /* background-color: black; */
}
.navlogo-section{
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: blue; */
}
.navlogo-section img{
    width: 200px;
    height: 100px;
}

.navbar-container label {
    display: none;

}
#checking{
    display: none;
}
.navbar-container label {
    display: none;
}

.nav-items {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav-items a{
    font-size: 18px;
    font-family: monospace;
    font-weight: 500;
    color: whitesmoke;
    text-decoration: none;
}

/* ...............banner....................... */
.banner-container{
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  padding-left: 23%;
}
.banner-container h1{
  color:whitesmoke;
  font-size: 70px;
  margin-bottom: 12%;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* .............contact.................... */

.contacts-section {
    width: 100%;
    height: 100vh;
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contacts-section p {
    margin-top: 8%;
    margin-bottom: 5%;
    font-family: sans-serif;
    font-size: 26px;
    color: rgb(245,132,31);

  }
  .contacts-grid {
    width: 90%;
    height: 50%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* background-color: aqua; */
  }
  .contact-card {
    width: 90%;
    display: flex;
    flex-direction: column;
    background-color: black;
    color: #ff7f32;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 3px 10px 5px rgba(240, 233, 233, 0.3);
  }
  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 5%;

  }
  .contact-card p {
    margin-bottom: 2%;
    font-size: 18px;
    color: white;
    text-align: left;
    font-family: sans-serif;
  }
  .contact-card a{
    text-decoration: none;
    color: white;
    margin-bottom: 5%;
    font-family: sans-serif;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  .social-icons a {
    display: inline-block;
    color: #ff7f32;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
  }
  .social-icons a:hover {
    background-color: #ff944c;
  }

  iframe{
    width: 100%;
    height: 50vh;
  }

  /* ................footer............................... */

.footer-container{
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(18,18,18);
}
.footer-content{
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: rgb(18,18,18); */
    border-bottom: 1px solid white;
}
.footer-content img{
    margin-left: 5%;
}
.footer-contact{
    width: 20%;
    height: 100%;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-around;
    align-items: center;
    /* background-color: rgb(42, 30, 174); */
}
.footer-contact img{
    width: 50px;
}
.footer-bottom{
    width: 100%;
    height: 20%;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    align-items: center;
    justify-content: center;
    /* background-color: aqua;   */
}







@media (max-width:769px){
    
  /* nav */
  .nav-items {
      display: block;
      position: fixed;
      top: 0;
      right: -100%;
      background: rgba(255, 255, 255, 0.1); /* Transparent background */
      backdrop-filter: blur(10px); /* Frosted glass effect */
      -webkit-backdrop-filter: blur(10px); /* For Safari */
      border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
      border-radius: 15px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      width: 60%;
      height: 50vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      z-index: 99;
      overflow: hidden;
    }

  .nav-items a {
      line-height: 10px;
  }

  .nav-items label {
      position: absolute;
      top: -1%;
      right: 5%;
  }
  .nav-items label img{
      margin-top: 50%;
  }
  .nav-items input {
      display: block;
  }

  #checking:checked~.nav-items {
      right: 0;
  }


  .navbar-container label {
      display: block;
      display: flex;
      align-items: center;
      justify-content: center;
      
  }
  .navbar-container label img{
      width: 60%;
  
  }

}

@media (max-width:426px){
  .navbanner-container{
    height: 70vh;
  }
  /* ..............nav....................... */
  .navlogo-section img{
      width: 100px;
      height: 80px;
  }
  .menu-icon{
    padding: 5%;
  }
  /* ...............banner..................... */
      .banner-container{
        padding-left: 17%;
    }
    .banner-container h1{
        font-size: 24px;
        margin-bottom: 25%;
    }
  /* ..................contact............... */
  .contacts-section{
    height: 200vh;
  }
  .contacts-section h2 {
    font-size: 40px;
  }
  .contacts-section p{
    font-size: 18px;
    padding: 5%;
    text-align: center;
  }
  .contacts-grid {
    height: 80%;
    gap: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-card{
    height: 30%;
  }
   /* ..............footer.................. */
      .footer-content img{
        width: 120px;
    }
    .footer-contact{
       display: flex;
       justify-content: space-evenly;
       flex-direction: column;
    }
    .footer-contact img{
        width: 30px;
    }
    .footer-bottom{
        font-size: 16px;
    }
}

@media (max-width:376px){

  .contacts-section p{
    font-size: 16px;
    padding: 5%;
    text-align: center;
  }
    /* ..............footer.................. */
    .footer-bottom{
      font-size: 12px;
  }

}



@media (max-width:321px){
  .navlogo-section img{
    padding: 5%;
  }
  .menu-icon{
    padding: 7%;
  }
  .contacts-section{
    height: 170vh;
  }
  .contacts-section p{
    font-size: 14px;
  }
}