/* hero section start */

.hero {
  display: flex;
  gap: 20px;
}

.hero-container {
  /* min-height: 495px;
  padding: 40px; */
  border-radius: 20px;
}

.left-holder {
  flex: 1;
  background-color: var(--base-grey);
  align-content: center;
}

.left-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--dark-blue);
}

.greetings-text {
  color: var(--dark-blue);
}

.greetings-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-content small {
  font-size: 24px;
  font-weight: 200;
  display: block;
  margin-bottom: -10px;
}

.left-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.left-buttons>* {
  min-width: fit-content;
  flex: 1;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  padding: 15px 20px;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-radius: 10px;
  font-size: 20px;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:active {
  box-shadow: 2px 2px 5px black;
}

.btn:focus {
  box-shadow: 2px 2px 5px black;
}

.left-buttons .btn-resume {
  background-color: var(--dark-blue);
  color: white;
}

.left-buttons .btn-resume:hover {
  background-color: white;
  color: var(--dark-blue);
  opacity: 0.9;
}

.left-buttons .btn-contact {
  background-color: white;
  color: var(--dark-blue);
}

.left-buttons .btn-contact:hover {
  background-color: var(--gold);
  color: var(--dark-blue);
  opacity: 0.9;
}

.right-holder {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  background-color: var(--gold);
}

.right-holder img {
  margin-top: -40px;
  max-width: 317px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

/* hero section end */

/* about-skills start */
.about-skills {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.about {
  flex: 1;
  background-color: var(--dark-blue);
  border-radius: 20px;
}

.about-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
  padding: 20px;
  color: white;
}

.about-text-paragraths {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 20px;
}

.skills {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  color: white;
}

.skills-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
  overflow: auto;
  border-radius: 4px;
  padding: 16px;
  background-color: white;
}

.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-blue);

  svg {
    width: auto;
    height: 32px;
  }
}

/* Compact skills icons */
.skills-icons-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease;
}

.skill-icon:hover {
  transform: scale(1.15);
}

.skill-icon svg {
  width: 100%;
  height: 100%;
}

/* about-skills end */