/* =========================
   HEADER SECTION
========================= */

html,
body,
#page,
.site,
#content,
.site-content,
.content{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    overflow-x: hidden !important;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 12%;
    background: #070217; /* or your preferred color */
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;

}
nav li{
    height: 70px;
}
.pc li a{
    text-decoration: none;
    font-size: 18px;
}
 nav a{
    height: 100%;
    padding: 4px 40px;
    text-decoration:none;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 80px;
    transition: all 0.3s ease;
 }
 nav a:hover{
    color:white;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-decoration-color: darkgreen;
 }
 nav li:first-child{
    text-decoration: none;
    margin-right: auto;
    font-size: 40px;
 }
 .sidebar{
    position: fixed;
    top:0;
    right: 0;
    height: 100vh;
    width: 240px;
    z-index: 999px;
    background-color: rgba(255, 252, 252, 0.202);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
 }
 .sidebar li{
    width:100%;
 }
 .sidebar a{
    width: 100%;
    color: black;
    font-weight: bold;
 }
 .menu-button{
    display: none;
 }
 /*.............Responsiveness..............*/
 @media(max-width:1440px){
    header{
    height: 12%;
}
   nav a{
    padding: 5px 40px;
 }
}
@media(max-width:1024px){
    header{
    height: 12%;
}
   nav a{
    padding: 5px 40px;
 }
}
 
 @media(max-width:992px){
   header{
    height: 12%;
   }
   nav a{
    padding: 4px 30px;
 }

    .hideOnMobile{
        display: none;
    }

    .menu-button{
        display:block;
    }
    #logo{
      font-size: 22px;
    }
 }

 @media(max-width:768px){
   header{
    height: 11%;
}

   nav a{
    padding: 4px 20px;
 }

   h1{
      display: none;
   } 
   .sidebar{
        width:100%;
    }
    
 }
 @media(max-width:425px){
header{
    height: 11%;
}
 
   .sidebar{
        width:100%;
    }
}
@media(max-width:370px){
header{
    height: 11%;
}
 
   .sidebar{
        width:100%;
    }
}
@media(max-width:320px){
header{
    height: 11%;
}
 
   .sidebar{
        width:100%;
    }
}

