body{
    padding: 0;
    margin: 0;
}

.header{
    width: 100%;
    background-color: rgb(27, 51, 75);
    position: fixed;
    z-index: 2;
}
.header-inner{
    width: 95%;
    margin: 0 auto;
}

.header-socials-con{
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2%;
}

.header-social a{
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: white;
}
.header-social-icon{
    width: 25px;
    height: 25px;
}

.header-content{
    width: 100%;
    display: flex;
    flex-direction: row;
}


.header-logo-con{
    width: 10%;
    display: flex;
    justify-content: center;
}
.header-logo{
    width: 5rem;
    height: 5.2rem;
}

.header-options{
    width: 44%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.header-option a{
    text-decoration: none;
    color: white;
}

.header-emergency-button{
    width: 46%;
    display: flex;
    align-items: center;
}

.header-emergency-button a{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    text-decoration: none;
    color: white;
}

.header-small-screen-options{
    display: flex;
    justify-content: flex-end;
    align-self: center;
    display: none;
}
.header-small-screen-options a{
    color: white;
    text-decoration: none;

}
.header-small-screen-emergency{
    display: none;
}






  .burger {
    width: 30px;
    cursor: pointer;
  }
  
  .line {
    width: 100%;
    height: 3px;
    background-color: white;
    margin: 5px 0;
  }
  
  /* Menu styling */
  .menu {
    position: fixed;
    top: 5rem;
    right: -250px; /* hidden off-screen */
    width: 250px;
    height: 100%;
    background-color: rgb(27, 51, 75);
    color: white;
    font-weight: bold;
    transition: right 0.3s ease; /* smooth slide */
    padding-top: 60px;
  }
  
  .menu ul {
    list-style: none;
    padding: 0;
  }
  
  .menu ul li {
    padding: 15px;
    text-align: center;
  }
  
  .menu ul li a {
    color: white;
    text-decoration: none;
  }
  
  .menu.open {
    right: 0; /* slides in */
  }







@media (max-width: 860px) {
    .header-socials-con {
        display: none;
    }
}

@media (max-width: 630px) {
    .header-option{
        display: none;
    }
    .header-emergency-button{
        display: none;
    }
    .header-small-screen-emergency{
        display: block;
        color: white;
    }
    .header-content{
        position: relative;
    }
    .header-small-screen-options {
        display: flex;
        position: absolute;
        right: 0%;
        top: 30%;
    }
}