header {
  padding: 25px 25px 10px 25px;
}
h1 {
    font-family: var(--font-impact);
    font-size: 3rem;
    color: var(--text-color);
  }
h1 span {
  color: var(--primary-color);
}
header p {
  font-family: var(--font-tertiary);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
}

main {
  display: flex;
  flex-direction: column;
  padding: 0 25px;
  gap: 15px;
  margin-bottom: 60px;
}

main .about-p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.5;
}

hr {
  margin: 20px 0;
}

/* > Values and hobbies sections */
section.values,
section.hobbies {
  display: flex;
  flex-direction: column;
}

section.values, section.hobbies {
  gap: 20px;
}

.hobbies {
  gap: 5px;
}

section.values h2,
.hobbies h2 {
  font-family: var(--font-primary);
  font-size: 1.7rem;
  color: var(--text-color);
}

.values .values-container,
.hobbies .hobbies-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 50px;
}

.values-container .value-item,
.hobbies-container .hobbie {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
  transition: all 0.3s ease;
}

.values-container .value-item:hover,
.hobbies-container .hobbie:hover {
  outline: 2px solid var(--primary-color);
  background-color: var(--background-color);
  box-shadow: 0 4px 10px var(--primary-color);
  transform: translateY(-5px)
}

.value-item h3,
.hobbie h3 {
  font-family: var(--font-tertiary);
  font-size: 1.2rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-item img,
.hobbie img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.value-item p,
.hobbie p {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--text-color-secondary);
  line-height: 1.4;
}

/* > Get in touch section */
section.get-in-touch {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 50px 150px 0 150px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  padding: 30px;
  gap: 15px;
  /* transition: all 0.3s ease; */
}


section.get-in-touch h2 {
  font-family: var(--font-impact);
  font-size: 1.8rem;
  color: var(--text-color);
}

section.get-in-touch p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--text-color-secondary);
}

section .get-in-touch-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

section.get-in-touch a {
  font-family: var(--font-tertiary);
  font-weight: 600;
  font-size: 1rem;
  background-color:  var(--background-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  font-family: var(--font-secondary);
  color: var(--primary-color);
  text-decoration: none;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(118, 74, 213, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(118, 74, 213, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(118, 74, 213, 0);
  }
}

section.get-in-touch a:hover {
  color: var(--text-color);
  transform: scale(110%);
}

@media (max-width: 1000px) {
  section.values .values-container, section.hobbies .hobbies-container {
    flex-direction: column;
    padding: 0 20px;
  }

  h1, h2, header h3, header p, .about-p {
    text-align: center;
  }
  
  section.get-in-touch {
    margin: 30px 20px 0 20px;
  }
}

@media (max-width: 600px) {
  section .get-in-touch-buttons {
    flex-direction: column;
    gap: 20px;
  }
}