h1,
h2,
h3,
h4,
div,
p {
  margin: 0;
}
a {
  display: flex;
  color: #ffe6c7;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  color: #ff6000;
}
p {
  font-size: 1.2rem;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #322b2b;
  color: #ffe6c7;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
  font-family: "Bruno Ace", cursive;
  padding: 50px;
}
.button-style {
  font-size: 1.2rem;
  color: #ffe6c7;
  background-color: unset;
  border-radius: 4px;
  border-style: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Bruno Ace", cursive;
  margin: 0;
  max-width: none;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
}

.button-style:hover {
  color: #ff6000;
}

.show {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0);
}
.presentation-container {
  height: 100vh;
}
.presentation {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.presentation-btn-container {
  padding-top: 7%;
  width: 90%;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
.presentation-content {
  height: 30%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
h1 {
  font-size: 3rem;
}
.FF6000-color {
  color: #ff6000;
}
.presentation-content p {
  font-size: 1.5rem;
}

.arrow {
  transform: translate(-50%, -50%);
  cursor: pointer;
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 5px solid white;
  border-right: 5px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

/* Timeline Section */
.timeline-container {
  width: 100%;
}
.timeline-container h2 {
  margin-bottom: 60px;
}
.timeline {
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 3px;
  background: #ff6000;
}
.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
  transition: 0.3s;
  cursor: pointer;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-marker {
  position: absolute;
  left: -10px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #322b2b;
  border: 3px solid #ff6000;
  transition: 0.3s;
}
.timeline-item:hover .timeline-marker {
  background: #ff6000;
  transform: scale(1.2);
  transition: 0.3s;
}
.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 25px;
  border-radius: 8px;
  text-align: left;
}
.timeline-content:hover {
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s ease-in-out;
}
.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #ff6000;
}
.timeline-date {
  display: block;
  font-size: 0.9rem;
  color: #ffe6c7;
  opacity: 0.8;
  margin-bottom: 5px;
}
.timeline-company {
  display: block;
  font-size: 1.1rem;
  color: #ffe6c7;
  margin-bottom: 10px;
  font-weight: bold;
}
.timeline-content p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* LinkedIn Section */
.linkedin-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.linkedin-container h2 {
  margin-bottom: 10px;
}
.linkedin-container > p {
  opacity: 0.8;
  margin-bottom: 20px;
}
.linkedin-container iframe {
  width: 100%;
  max-width: 700px;
  min-width: 300px;
  border-radius: 8px;
}
.linkedin-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #0077b5;
  border-radius: 10px;
  font-size: 1.2rem;
}
.linkedin-card:hover {
  background: #0077b5;
  transform: scale(1.05);
  color: #fff;
}
.linkedin-card i {
  font-size: 2rem;
  color: #0077b5;
}
.linkedin-card:hover i {
  color: #fff;
}
.about-me-container {
  padding-top: 4%;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-content {
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-content p {
  width: 65%;
}
.about-content > img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid #ff6000;
  padding: 10px;
}
.about-content a {
  margin: auto;
  text-align: center;
  text-decoration: none;
  animation: resume-animate 2s infinite;
}
.about-content a:hover {
  background-color: coral;
}
.contact-me-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact-me-icons {
  width: 20%;
  height: 10vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.contact-me-icons a {
  font-size: 40px;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  body {
    padding: 20px;
  }
  .presentation {
    justify-content: space-around;
  }
  .presentation-btn-container {
    padding-top: 20%;
  }

  .presentation-content p {
    font-size: 1.2rem;
  }
  .arrow {
    width: 4vw;
    height: 4vw;
  }
  /* Timeline Mobile */

  .timeline-content h3 {
    font-size: 1.2rem;
  }
  .timeline-content p {
    font-size: 0.9rem;
  }

  .linkedin-container iframe {
    max-width: 400px;
    min-width: unset;
  }
  .linkedin-card {
    padding: 15px 25px;
    font-size: 1rem;
  }
  .about-me-container {
    padding-top: 30%;
    height: auto;
  }
  .about-content {
    width: 87%;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-content img {
    width: 70%;
  }
  .about-content p {
    text-align: justify;
    font-size: 1rem;
    width: auto;
  }
  .about-content :nth-child(3) {
    order: -4;
  }

  .contact-me-container p {
    width: 84%;
    font-size: 1rem;
  }

  .contact-me-icons {
    width: 100%;
  }
}
