/* 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}



section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section:nth-child(even) {
    background: #f9f9f9;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

.project {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.project:last-child {
    border-bottom: none;
}

.project h3 {
    margin-bottom: 0.5rem;
}




.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.skills-list li {
    background: #e0e0e0;
    padding: 0.5rem 1rem;
}

.contact-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
} */

* {
scroll-behavior: auto;
}

body {
    font-family: "SN Pro", sans-serif;
     /* font-family: "Roboto", sans-serif; */
    line-height: 1.6;
    color: #333;
    background-color: #F9F4EB;
    /* font-size: 32px; */
}

/* div {
    border: solid; 
}
 */
 

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #F9F4EB;

      padding-bottom: 0rem;

}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: "Odibee Sans", sans-serif;
}

.nav-links {
    display: flex;  
    gap: 0.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
   
}


.nav-links a {
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    color: #333;
    font-size: 1rem;
    background-color: #e5e1d9;
    border-radius: 3px;
    display: inline-block; 
    transition: 
        background-color 0.1s ease,
        color 0.1s ease,
        border-radius 0.1s cubic-bezier(0.68, -0.6, 0.32, 1.4);
    
}

.nav-links a:hover {
    color: #e5e1d9;
    background-color: #333;
    border-radius: 15px;
    animation: bounceIn 0.2s ease-out forwards; 
}

@keyframes bounceIn {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(0.80);
    }
    50% {
        transform: scale(0.90);
    }
    70% {
        transform: scale(.95);
    }
    100% {
        transform: scale(1);
    }
}








.hero {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem;
  padding-top: 0px;
  height: 100svh;

}

.hero-divider {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 800;
  align-items: center;  
  word-spacing: 10px;

}

.hero-divider-right-text, .hero-divider-left-text{
    font-size: 0.8rem;
    align-items: center;
    opacity: 60%;
    font-weight: 400;
}

.hero-title {
  font-size: 13vw;
  font-weight:400;
  text-align: center;
  margin: auto;
   font-family: "Odibee Sans", sans-serif;
    /* font-family: "Gravitas One", serif; */
     /* font-family: "Alfa Slab One", serif; */
}



/* .hero-description {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 50%;
  font-size: 1.4rem;
} */

/* .hero-tag {
  flex-shrink: 0;
  background-color:#333;
  color:  #F9F4EB;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  font-size: 0.8rem;
  
} */

/* .hero-description-text {
  flex: 1;
  margin-top: 3px;
}
 */

/* Responsive Media Queries */

/* Tablet and smaller laptops */
@media (max-width: 1024px) {
  .hero-description {
    max-width: 70%;
    font-size: 1.2rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }

  .hero {
    padding: 1rem;
    padding-top: 0;
  }

  .hero-divider {
    font-size: 1.5rem;
    word-spacing: 5px;
  }

  .hero-divider-right-text, .hero-divider-left-text {
    font-size: 0.7rem;
  }

  .hero-description {
    max-width: 80%;
    font-size: 1.1rem;
  }
}






/* Mobile devices */
@media (max-width: 480px) {
  .navbar {
    display: none;
  }

  

  .hero {
    padding: 0.5rem;
    padding-top: 0;
  }

  .hero-divider {
    font-size: 1rem;
    word-spacing: 3px;
  }

  .hero-divider-left, .hero-divider-right {
    display: none;
  }

  .hero-divider-right-text, .hero-divider-left-text {
    font-size: 0.6rem;
  }

  .hero-title {
    font-size: 15vw;
  }

  .hero-cards {
  height: 45vh;
}

  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}




/* Very small mobile devices */
@media (max-width: 360px) {
  .hero-divider {
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 17vw;
  }

  .hero-description {
    font-size: 0.9rem;
  }
}
