/*================================================
Fonts
================================================*/

@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");

/* Start Variables */
:root {

}
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
  font-family: 'Jost', sans-serif;
  padding: 0;
  margin: 0;
  background-color: fbf8cc;
    background-color: #FBF8CC;
    height: 2500px;
  }
}

html {
  scroll-behavior: smooth;
}

/* Start Nav */
.hover-underline {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;              
  width: 100%;
  height: 3px;              
  background-color: #03045E; 
  transform: scaleX(0);     
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hover-underline:hover::after {
  transform: scaleX(1);    
}
/* End Nav */


/* Start Home */
.home {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 100px 50px; 
}

.home .content {
  color: #03045E;
  padding-top: 30px;
  max-width: 600px; 
}

.home .content h1 {
  font-size: 4rem; 
  font-weight: 900;
  margin: 0;
}

.home .content p {
  font-size: 1.8rem; 
  font-weight: 500;
  margin: 10px 0;
}

.home .content button {
  width: 140px;
  height: 60px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #F5EE84;
  border: none;
  border-radius: 25px;
  transition: 0.3s;
}

.home .content button:hover {
  background-color: #e6dc74;
  transform: translateY(-5px);
}

.home img {
  border-radius: 100%;
  height: 380px;
  width: 340px;
}
/* End Home */

/* Start About */
.about .head-section h1,
.work .head-section h1,
.contact .head-section h1
{
    font-size: 4rem;
    color: #F7F197;
    font-weight: 900;
    margin-bottom: 15px; 
  }
  .about, .work , .contact{
    padding-left: 80px;
}
.about .head-section p,
.work .head-section p{
  color: #03045E;
  width: 645px;
  word-spacing: 5px;
}
.about .content-about{
  padding-left: 80px;
  padding-top: 50px;
  color: #03045E;
}
.about .content-about .content-about-items p{
  padding-left: 20px;
  width: 547px;
  word-spacing: 5px;
}
/* End About */

/* Start work */
.work .wrapper{
  display: flex;
  justify-content: center;
  justify-content: space-around;
  padding-top: 80px;
  color: #03045E;
}
.work .wrapper .work-card p{
  width: 424px;
}

.work .wrapper .work-card h5{
  font-weight: 900; 
  font-size: 1.5rem;
  margin: 10px 0; 
}
.work .wrapper .work-card img{
  width: 416px;
  height: 270px;
}
.work .wrapper .work-card span{
  font-size: smaller;
}
/* End work */

/* Start Contact */
  .contact .contact-wrapper img{
    width: 271px;
    height: 178px;
  }
  .contact .contact-wrapper {
    color: #03045E;
    display: flex;
    gap: 80px;
  }
  .contact .contact-wrapper p{
    width: 390px;
    word-spacing: 5px;
  }
/* End Contact */