.logo-container,
.nav-links,
.cart {
  display: flex;
}

.cart {
  flex: 1;
  justify-content: flex-end;
}

.presentation {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 85vh;
  align-items: center;
}
.introduction {
  flex: 1;
}

.intro-text p {
  margin-top: 15px;
  color: var(--white);
  font-size: 19px;
  text-align: center;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta {
  padding: 50px 0px 0px 0px;
}
.cta-select {
  border: 2px solid var(--sea-green-light);
  background: transparent;
  color: var(--sea-green-light);
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cta-select:hover {
  background: var(--sea-green-light);
  color: var(--white);
  transform: translateY(-2px);
}
.cta-add {
  background: linear-gradient(135deg, var(--sea-green), var(--ocean-blue));
  width: 150px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  border: none;
  color: var(--white);
  margin: 30px 0px 0px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.cta-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.cover {
  flex: 1;
  display: flex;
  justify-content: center;
  height: 70vh;

  margin-top: 2rem;
}
.cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.big-circle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  opacity: 0.5;
  height: 80%;
}
.medium-circle {
  position: absolute;
  top: 30%;
  right: 30%;
  z-index: -1;
  height: 60%;
  opacity: 0.4;
}
.small-circle {
  position: absolute;
  bottom: 0%;
  left: 20%;
  z-index: -1;
}

.laptop-select {
  width: 15%;
  display: flex;
  justify-content: space-around;
  position: absolute;
  right: 20%;
}

@keyframes drop {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media screen and (max-width: 1024px) {
  .presentation {
    flex-direction: column;
  }
  .introduction {
    margin-top: 5vh;
    text-align: center;
  }
  .intro-text h1 {
    font-size: 30px;
  }
  .intro-text p {
    font-size: 18px;
  }
  .cta {
    padding: 10px 0px 0px 0px;
  }
  .laptop-select {
    bottom: 5%;
    right: 50%;
    width: 50%;
    transform: translate(50%, 5%);
  }
  .cover img {
    height: 80%;
  }
  .small-circle,
  .medium-circle,
  .big-circle {
    opacity: 0.2;
  }
}

.details {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
