:root{
    --background-color:#e6e7eb;
    --button-color:#ff5861;
    --container-color:#fae4f2;
    --primary-font:'Playfair Display',serif;
    --secondary-font:'Poppins',sans-serif;
    --greeting-color-font:#272142;
    
}
body{
    background-color: var(--background-color);
    font-family: var(--secondary-font);
}
h1,h2,h3,h4,h5,h6{
    color:black;
    font-weight: bold;
    font-family: var(--primary-font);
}

p{
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
}
.container{
    background:var(--container-color);
    text-align: center;
    padding: 160px 20px;
}
.container p{
    font-size: 36px;
    margin: 0;
    font-weight: bold;
    color: var(--greeting-color-font);
    
}
.container h1{
    font-size: 96px;
    line-height: 1.5;

}

.container h2{
    line-height: 1.5;
    font-family: var(--secondary-font);
    font-weight:normal;
    font-size: 24px;

}
h2{
    font-size:64px ;
}
.btn-container{
    padding: 0;
}
.content h1{
    font-size: 64px;
    line-height:80px;
}
.content h2 {
    font-size: 18px;
    font-family:var(--secondary-font);
}
.content h3{
    font-size: 24px;
    font-family: var(--secondary-font);
    line-height: 2;
    margin-top: 20px 0 0;
}
.content p{
font-size: 16px;
font-weight: normal;
}
.content{
    padding: 160px 20px;
}
.information{
    margin:30px;
}



.btn-hero{
padding:15px 30px;
font-size: 18px;
line-height:27px;
color:#fff;
border-radius:8px;
background-color:var(--button-color);
text-decoration:none;

}

.btn-project{
    color: var(--button-color);
    border: 1px solid var(--button-color);
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    line-height: 27px;
}

.project-description{
padding: 120px 60px;
}
.logo{
    max-height: 40px;
    margin-right: 16px;
}

.navbar-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav{
    padding: 20px 0;
    align-items: center;
}

nav ul{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    align-items: center;
}

nav li{
    display: block;
    list-style: none;
    line-height: 42px;
    margin: 0;
}

nav a{
    text-decoration: none;
    color: rgb(68, 67, 67);
    transition: all 100ms ease-in-out;
}
nav a:hover, nav li.active a{
    color: var(--button-color);
}

footer{
    margin: 60px 0;
    padding: 0 80px ;
}

footer .contact-box{
background-color: var(--container-color);
padding: 20px;
border-radius: 8px;

}

footer .email-link{
    text-decoration: none;
    color: #0a0a0a;
    font-size: 24px;

}

footer .email-link:hover{
    color: var(--button-color);
}
footer .social-icons a{
    margin: 0 20px;
    color: var(--button-color);
    background-color: #e9e7e7;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 18px;
     border-radius: 50%;
     transition: all 90ms ease-in-out;
}
footer .social-icons a:hover{
    background-color: var(--button-color);
    color: #fff;
}


@media (max-width:900px){
    
      .container h1{
    font-size: 44px;
    line-height: 2;
}
 h2{
        font-size: 44px;
    }
  
    .container{
        padding: 80px 20px;
    }
    
    h3{
        font-size: 26px;
    }
.description{
    font-size: 18px;
}

    .project-description{
        padding:10px;
        text-align: center;
    }
    .content h1 {
        text-align: center;
        padding: 0;
    }
    
    /* Make navbar padding a bit larger on small screens and reduce gaps */
    .navbar-container{
        padding: 0 24px;
    }
    nav ul{
        gap: 14px;
    }
    .logo{
        margin-right: 12px;
    }
    .btn{
        font-size: 26px;
    }
    
}