*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Nunito', sans-serif;
}
body{
  background:#FBEFEF;
  color:#000;
  line-height:1.7;
  font-family:'Nunito', sans-serif;
}

/* HEADER */
header{
  position:absolute;
  top:0;
  width:100%;
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#C5B3D3;
  z-index:1000;
}
nav.navbar a{
text-decoration: none;
padding:1em;
display:row-flexbox;
color: #000;
font-size:18px;
}
nav.navbar a:hover{
text-decoration:none;
padding:1em;
display:inline-flexbox;
color: #ffffff;
font-size: 20px;
}

.logo{
  font-size:28px;
  font-weight:700;
}
.menu a{
  font-size:36px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}

/* SECTIONS */
section {
  padding:120px 22px 80px;
  max-width:900px;
  margin:auto;
  opacity:1;
  transform:translateY(40px);
  transition:0.8s ease;
}
.blog{
  padding:10px 22px 80px;
  max-width:900px;
  margin:auto;
  margin-left: 10px;
  padding: top 10px;;
  opacity:1;
  transform:translateY(40px);
  transition:0.8s ease;
}
.careers{
  padding:10px 22px 80px;
  max-width:900px;
  margin:auto;
  opacity:1;
  transform:translateY(40px);
  transition:0.8s ease;
}
.contact{
  padding:10px 22px 80px;
  max-width:900px;
  margin:auto;
  opacity:1;
  transform:translateY(40px);
  transition:0.8s ease;
}


h1{
  font-size:52px;
  margin-bottom:30px;
  font-weight:700;
}

p{
  font-size:18px;
  color:#000000;
}

/* HOME */
.home h1{
  font-size:56px;
}

.founder{
  margin-top:50px;
  display:flex;
  gap:16px;
  align-items:center;
}

.profile-container {
  width: 160px;
  height: 160px;
  border-radius: 50%; /* Makes the container a circle */
  overflow: hidden;   /* Hides image corners */
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* This is the magic: it crops the image without distorting it */
  object-position: center;
  transition: transform 0.3s ease;
}

/* Optional Hover Effect */
.profile-container:hover .profile-pic {
  transform: scale(1.1); /* Subtle zoom on hover */
}


/* CAREERS */
ul{
  margin-top:20px;
  padding-left:20px;
}

li{
  margin-bottom:12px;
}

/* BLOG */
.badge{
  display:inline-block;
  background:#FF9E20;
  padding:10px 20px;
  border-radius:20px;
  font-weight:600;
  margin:20px 0;
}

/* CONTACT */
form{
  margin-top:35px;
}

input, textarea{
  width:100%;
  padding:18px 20px;
  border-radius:26px;
  border:none;
  background:#efefef;
  font-size:16px;
  margin-bottom:16px;
}

textarea{
  height:130px;
  resize:none;
}

button{
  padding:14px 36px;
  border:none;
  border-radius:24px;
  background:#000;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  opacity:0.8;
}

/* FOOTER */
footer{
  padding:40px 20px;
  text-align:center;
}

.socials{
  display:flex;
  justify-content:center;
  gap:22px;
  font-size:24px;
  margin-bottom:12px;
}

.socials a{
  color:#000;
  transition:0.3s;
}

.socials a:hover{
  transform:translateY(-4px);
}

/* ANIMATION */
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}
.work-link {
  color: #000;
  font-weight: 700;
  text-decoration:underline;
  cursor: pointer;
}
.work-link:hover {
  opacity: 0.7;
}
/* MOBILE */
@media(max-width:600px){
  h1{font-size:42px;}
  .home h1{font-size:44px;}
  .menu a{font-size:30px;}
}

