/** ======== HERO WRAPPER TWO ======== **/
.hero-wrapper-two {
  background: linear-gradient(#01050d, #0e1e42);
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  margin: -26px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/** ======== INFO SECTION ======== **/
.info-section {
  max-width: 1300px;
  min-height: 100vh;
  margin: 0 auto;
  padding-top: calc(80px + 10px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/** ======== GRID CONTAINER ======== **/
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.aboutme {
  width: 100%;
  max-width: 850px;
  height: 300px;
  margin-bottom: 50px;
  padding: 0 20px;
  user-select: none;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: border 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #d68910;
}

.aboutme:hover {
  border: 1px solid #d68910;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.aboutme span {
  font-size: 32px;
  color: #d68910;
}

.aboutme p {
  font-size: 16px;
  color: #d3d9e3;
}

.card {
  width: 100%;
  max-height: 520px;
  height: 100%;
  padding: 30px 25px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #d68910;
  opacity: 1;
  position: relative;
  overflow: hidden;
  user-select: none;
  display: inline-block;
  transition: transform 0.6s ease, background 0.6s ease, box-shadow 0.6s ease;
}

.card:hover {
  border: 1px solid #d68910;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stone_een {
  transition: 0.7s;
}

.card:hover .stone_een {
  fill: #a7b3c9;
}

svg {
  width: 100%;
  text-align: center;
  fill: #bdbbbb;
}

.card h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #d68910;
  text-align: center;
}

.card span {
  font-size: 16px;
  opacity: 0.8;
  color: #faf8f0;
  display: flex;
  flex-direction: column;
}

.card strong {
  font-size: 18px;
  opacity: 0.5;
  color: #faf8f0;
}

.span-text {
  font-size: 16px;
  opacity: 0.8;
  color: #faf8f0;
}

.card ul {
  padding-left: 0;
  list-style: none;
}

.card ul li {
  margin-bottom: 8px;
}

.skills-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.skills-icons img {
  width: 300px;
  height: 270px;
}

/** ======== MEDIA QUERIES ======== **/
@media (max-width: 1300px) {
  .grid-container {
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
  }
  .card {
    max-height: 500px;
  }
}

@media (max-width: 850px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .card {
    max-height: 600px;
    max-width: 400px !important;
    width: 100% !important;
    height: auto !important;
    padding: 15px 12px;
    font-size: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .card h2 {
    font-size: 22px !important;
  }

  .card span,
  .card strong {
    font-size: 18px !important;
  }

  .aboutme {
    max-width: 700px;
    width: 100%;
    height: auto;
    padding: 15px 12px;
    gap: 15px;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 350px) {
  .grid-container {
    grid-template-columns: 1fr !important;
    width: 100%;
    padding: 0 10px;
    gap: 15px;
    justify-content: center;
  }

  .card {
    max-width: 320px !important;
    width: 100% !important;
    height: auto !important;
    padding: 15px 12px;
    font-size: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .card h2 {
    font-size: 20px !important;
  }

  .card span,
  strong {
    font-size: 14px !important;
  }

  .skills-icons img {
    width: 150px !important;
    height: auto !important;
  }

  .aboutme {
    max-width: 320px;
    width: 100%;
    height: auto;
    padding: 15px 12px;
    gap: 15px;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .aboutme span {
    font-size: 24px;
  }

  .aboutme p {
    font-size: 14px;
  }

  .img-computer-skills {
    background-color: #0a1938;
  }
}

@media (max-width: 310px) {
   .card {
    max-width: 320px !important;
    width: 100% !important;
    height: auto !important;
    padding: 15px 12px;
    font-size: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .card h2 {
    font-size: 18px !important;
  }

  .card span {
    font-size: 12px !important;
  }
  .card strong{
     font-size: 16px !important;
  }
}
