/* ABOUT PAGE */

.about-hero {
  min-height: 100vh;

  max-width: 1500px;

  margin: auto;

  padding: 120px 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 120px;
}

.about-left {
  flex: 1;
}

.small-label {
  color: #b89f9f;

  letter-spacing: 4px;

  margin-bottom: 25px;
}

.about-left h1 {
  font-size: 65px;

  line-height: 1;

  margin-bottom: 30px;

  color: #f1f1f1;
}

.about-intro {
  font-size: 28px;

  line-height: 1.8;

  max-width: 700px;

  color: #cfcfcf;
}

.about-right img {
  width: 500px;
  height: 700px;

  object-fit: cover;

  border-radius: 35px;

  box-shadow:
    0 0 50px rgba(0,0,0,0.4);
}

.about-section {
  max-width: 1400px;

  margin: auto;

  padding: 120px 40px;
}

.about-section h2 {
  font-size: 60px;

  margin-bottom: 40px;
}

.skills-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 35px;
}

.skill-card {
  background: #232330;

  padding: 50px;

  border-radius: 30px;

  transition: 0.25s ease;
}

.skill-card:hover {
  transform: translateY(-6px);

  background: #2b2b39;
}

.skill-card h3 {
  font-size: 34px;

  margin-bottom: 20px;
}

.skill-card p {
  font-size: 22px;

  line-height: 1.6;
}

.current-work {
  background: linear-gradient(
    135deg,
    #232330,
    #1d1d28
  );

  padding: 100px;

  border-radius: 40px;
}

.current-work h2 {
  margin-top: 20px;

  font-size: 54px;

  line-height: 1.3;
}

.about-contact {
  text-align: center;

  padding: 180px 40px;
}

.about-contact h2 {
  font-size: 90px;

  margin-bottom: 40px;
}

.about-contact p {
  font-size: 36px;

  color: #d6b0b0;
}