/*GENERAL*/
body {
  font-family: 'Lora', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/*HEADER*/
.header {
  background-image: url('orange\ and\ pink.jpg');
  background-size: cover;
  background-position: center;
  height: 100px;
  padding: 60px;
  text-align: center;
  font-size: 20px;
}

/*TOP NAV*/
.topnav {
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.topnav a {
  color: #000000;
  text-align: center;
  padding: 20px 22px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #fff3f0;
  color: black;
}

.topnav a.active {
  background-color: #fff3f0;
  color: black;
}

/* HOME PAGE HEADERS */
.heading h1 {
  font-family: 'Croissant One', cursive;
  font-size: 32px;
  font-weight: normal;
  color: #e76e70;
  text-align: center;
}

/* EXPERIENCE */
.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  margin: 0px auto;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0px 0px 20px #ffcbcc;
  transition: box-shadow 0.3s ease-in-out;
  max-width: 800px;
}

.portfolio-item:hover {
  box-shadow: 0px 0px 40px #ffcbcc;
}

.portfolio-item img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.portfolio-item h2 {
  margin: 10px 0px;
  text-align: center;
}

.portfolio-item p {
  text-align: justify;
}

@media (min-width: 768px) {
  .portfolio-item {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .portfolio-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .portfolio-item img {
    margin: 0px 20px;
  }
}

/* FOOTER */
.footer {
  background-color: #ffcbcc;
  color: black;
  text-align: center;
  padding: 20px 0;
  position: relative;
  margin-top: auto;
}

/* Social Icons Container */
.social-icons {
  position: absolute;
  bottom: 10px;
  left: 20px;
  display: flex;
  gap: 20px;
}

/* Footer Icons */
.footer-icon {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.footer-icon:hover {
  transform: scale(1.2);
}
