.header {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .logo {
  margin-bottom: 15px;
}
.header .logo a {
  text-decoration: none;
  color: #111111;
  font-size: 24px;
  font-weight: bold;
}
.header .navigation {
  display: flex;
  gap: 20px;
}
.header .navigation a {
  text-decoration: none;
  color: #333333;
  font-size: 14px;
}
.header .navigation a:hover {
  color: #777777;
}

.footer {
  background-color: #222222;
  color: white;
  text-align: center;
  padding: 30px 20px;
}
.footer p {
  margin: 0;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111111;
}

/* HERO */
.hero {
  background-color: #f5f5f5;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
}
.hero .hero-text {
  order: 1;
}
.hero .hero-text .small-title {
  font-size: 14px;
  letter-spacing: 3px;
  color: #777777;
  font-weight: bold;
}
.hero .hero-text h1 {
  font-size: 48px;
  margin: 15px 0;
}
.hero .hero-text p {
  line-height: 1.6;
}
.hero .hero-image {
  order: 2;
  margin-top: 40px;
}
.hero .hero-image img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 25px;
  background-color: #111111;
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
}
.button:hover {
  background-color: #777777;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
}
.about .about-image img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}
.about .about-text {
  margin-top: 35px;
}
.about .about-text .small-title {
  color: #777777;
  letter-spacing: 3px;
  font-weight: bold;
}
.about .about-text h2 {
  font-size: 36px;
}
.about .about-text p {
  line-height: 1.7;
}

/* SKILLS */
.skills {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
}
.skills .small-title {
  color: #777777;
  letter-spacing: 3px;
  font-weight: bold;
}
.skills h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.skills .skill-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.skills .skill {
  background-color: white;
  padding: 30px;
}
.skills .skill h3 {
  font-size: 24px;
}
.skills .skill p {
  line-height: 1.6;
}

/* CONTACT */
.contact {
  padding: 70px 20px;
  text-align: center;
}
.contact .small-title {
  color: #777777;
  letter-spacing: 3px;
  font-weight: bold;
}
.contact h2 {
  font-size: 36px;
}
.contact p {
  line-height: 1.6;
}

/* TABLET */
@media screen and (min-width: 600px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 25px 50px;
  }
  .header .logo {
    margin-bottom: 0;
  }
  .hero {
    padding: 80px 50px;
  }
  .hero .hero-text h1 {
    font-size: 60px;
  }
  .about {
    padding: 80px 50px;
  }
  .skills {
    padding: 80px 50px;
  }
  .skills .skill-list {
    flex-direction: row;
  }
  .skills .skill {
    flex: 1;
  }
}
/* DESKTOP */
@media screen and (min-width: 900px) {
  .hero {
    min-height: 700px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
  }
  .hero .hero-text {
    width: 45%;
  }
  .hero .hero-text h1 {
    font-size: 70px;
  }
  .hero .hero-image {
    width: 45%;
    margin-top: 0;
  }
  .hero .hero-image img {
    max-width: 500px;
  }
  .about {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
  }
  .about .about-image {
    width: 45%;
  }
  .about .about-text {
    width: 55%;
    margin-top: 0;
  }
  .skills {
    padding: 100px 10%;
  }
  .contact {
    padding: 100px 10%;
  }
}
/* ANIMATIONS */
/* Hero text comes in from the left */
.hero-text {
  animation: slideInLeft 1s ease-out;
}

/* Hero image comes in from the right */
.hero-image {
  animation: slideInRight 1s ease-out;
}

/* Buttons grow slightly when hovered */
.button {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.button:hover {
  transform: translateY(-5px);
}

/* Skill boxes lift when hovered */
.skill {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Profile image gently zooms when hovered */
.hero-image img,
.about-image img {
  transition: transform 0.4s ease;
}
.hero-image img:hover,
.about-image img:hover {
  transform: scale(1.05);
}

/* ANIMATION KEYFRAMES */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
&:hover {
  transform: translateY(-5px);
}

/* POP-UP ANIMATIONS */
/* Hero text pops up */
.hero-text {
  animation: popUp 0.8s ease-out;
}

/* About text pops up */
.about-text {
  animation: popUp 0.8s ease-out;
}

/* Section headings pop up */
.skills h2,
.contact h2 {
  animation: popUp 0.8s ease-out;
}

/* Small titles pop up */
.small-title {
  animation: popUp 0.8s ease-out;
}

/* Buttons pop up */
.button {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.button:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Skill boxes pop up when you hover */
.skill {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* POP-UP KEYFRAME */
@keyframes popUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=style.css.map */
