@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: "Poppins", sans-serif;
  
}



html{
    scroll-behavior: smooth;
}
p{
    color:rgb(85,85,85);
}
/*  Transition */

a,.btn{
    transition: all 300ms ease;

}

/* Desktop NAV */

nav, .nav-links{
    display: flex;
}

nav{
    justify-content: space-around;
    align-items: center;
    height: 17vh;
}

.nav-links{
    gap: 2rem;
    list-style: none;
    font-size: 1.5erm;
}

a{
    color: black;
    text-decoration: none;
    text-decoration-color: white;
}

a:hover{
    color: grey;
    text-decoration: underline;
    text-underline-offset: 1rem;
    text-decoration-color: rgb(181,181,181);
}

.logo{
    font-size: 2erm;

}

.logo:hover{

    cursor: default;
}

/* Hamburger Menu */

#hamburger-nav{
    display: none;
}

.hamburger-menu{
    position: relative;
    display: inline-block;

}

.hamburger-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon span{
    width: 100%;
    height: 2px;
    background-color: black;
    transition: all 0.3 ease-in-out;
}


.menu-links{
    position: absolute;
    top: 100%;
    right:0;
    background-color: white;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}

.menu-links a{
    display: block;
    padding: block;
    text-align: center;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;

}

.menu-links li{
    list-style: none;
}

.menu-links.open{
    max-height: 300px;
}

.hamburger-icon.open span:first-child{
    transform: rotate(45deg) translate(10px, 5px);
}
.hamburger-icon.open span:nth-child(2){
   opacity: 0;
}
.hamburger-icon.open span:last-child{
    transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child{
   transform: none;
}
.hamburger-icon span:first-child{
   opacity: 1;
}
.hamburger-icon span:first-child{
   transform: none;
}
/* Sections */
section{
    padding-top: 5vh;
    height: 96vh;
    margin: 0 5rem; 
    box-sizing: border-box;
    min-width: fit-content;
}

h1{
    font-size: 50px;
}

.heading-start{
    padding-left: 10px;
    padding-right: 10dp;
    text-align: justify;
    margin: 10px 0;
    letter-spacing: 0.5px;

}
h1, h2, h3, h4 {
    color: #333333;
    padding-top: 10px;
    padding-left: 10px;
    padding-right:10px ;
}

p {
    line-height: 1.6;
    color: #666666;
}

ul {
    padding-left: 20px;
    color: #666666;
}

ul li {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.section-title {
    margin-top: 30px;
}

.last-updated {
    font-size: 0.9em;
    color: #999999;
}

.contact-info {
    margin-top: 20px;
}

.contact-info a {
    display: block;
    margin-bottom: 5px;
}
