/* Angus Dylan C. Simbulan
  EF2L
  Exercise 2 */

/* General Reset for easier element placement (removes unncessary inherent padding*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdf5e6; /* softer bisque */
  color: #333;
  line-height: 1.6;
}

/* Navbar */
nav {
  width: 100%;
  background-color: #c28f67;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem 2rem;
  z-index: 1000;
}


.nav_container {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

/*list of buttons*/
nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  gap: 2rem;
}

/*buttons*/
.navbuttons {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.navbuttons:hover {
  color: #ffd9b3;
}

/*just my name*/
.logo {
  color: white;
}

/* Biography */
.biography {
  padding: 8rem 10% 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #c45a31d1, #c28f67d0);
  color: white;
  justify-content: center;
}


/* My Picture */
#picture {
  width: 250px;
  border-radius: 50%;
  border: 5px solid white;
  flex-shrink: 0;
}

/* Short details */
.intro-text {
  max-width: 600px;
} 

/* heading name */
.name {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Emphasize my Name */
.name span {
  color: #ffd9b3;
  font-weight: 600;

}

/* Section about me and my skills */
#about_skills{
  background: linear-gradient(135deg, rgba(250, 240, 233, 0.89), rgb(252, 183, 127));
  height: auto;
  display: flex;
  padding-bottom: 4rem;
}

/* About me text area */
.about{
  width: 50%;
  padding-left: 4rem;
  padding-top: 4rem;
}

/*for About*/
.title {
  align-self: center;
}

/* About me paragraph */
.paragraph {
  text-align: justify;
  padding-right: 2rem;
}

/* Skills text area */
.skills{
  width: 50%;
  padding-left: 4rem;
  padding-top: 4rem;
  
}
/* indiv for the tech icons */
#icon {
  height: 100px;
  width: auto;
}
/* Whole icon board selection */
.logo_board {
  display: flex;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 2rem;

}

/* for the projects */
.projects{
  background: linear-gradient(60deg, rgb(243, 209, 194),  #ffffffd0);
  height: auto;
  padding: 1rem;
}

#project_title{
  text-align: center;
  padding: 1rem 2rem 1.5rem 2rem;
}

/* placed in a grid */
.project_grid{
  display: flex;
  padding-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* individual projects */
.project_card{
  width: 600px;
  min-height: 450px;
  height: auto;
  background: linear-gradient(45deg, #c28f67, rgb(121, 57, 31));
  border: 2px solid white;
  border-radius: 7%;
}

/*footer*/
.footer {
  width: 100%;
  height: 5rem;
  background-color: #c28f67;
  text-align: center;
}

.footer p {
  color:white;
}

.footer_text{
  padding-top: 1rem;
}

/* additional card editing */
.project_card h1 {
  padding: 2rem 2.5rem;
  color: white;
}

.project_card h3 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  color: white;
  font-weight: 400;
}

.project_card p {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 3rem;
  color: white;
  text-align: justify;
}

html{
  scroll-behavior: smooth;
}