/* About page + home section shared styles */
.about-section,
.skills-section,
.cta-section {
  padding: 100px 80px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(40, 40, 60, 0.3) 0%, rgba(20, 20, 30, 0.5) 100%),
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-content h3 {
  color: #000;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-content p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-about {
  padding: 12px 35px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-about:hover {
  background: #111827;
  transform: translateY(-2px);
}

.skills-section {
  background: #fff;
  position: relative;
}

.skills-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(60, 60, 100, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(80, 80, 120, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}

.skills-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.skills-content > p {
  color: #000;
  margin-bottom: 40px;
  line-height: 1.8;
}

.skill-item {
  margin-bottom: 30px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: #111827;
}

.skill-bar {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: #111827;
  transition: width 1s ease;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.stat-label {
  color: #6b7280;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-section {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    radial-gradient(ellipse at center, rgba(50, 50, 70, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, rgba(20, 20, 30, 0.5) 0%, rgba(10, 10, 20, 0.8) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 80px auto;
  max-width: 1100px;
  color: #fff;
}

.cta-section::before {
  content: 'Vohrla';
  position: absolute;
  font-size: clamp(160px, 20vw, 220px);
  font-weight: 800;
  opacity: 0.03;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta-section h3 {
  color: #c7cad1;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.cta-section h2 {
  font-size: 56px;
  margin-bottom: 40px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .about-section,
  .skills-section,
  .cta-section {
    padding: 60px 40px;
  }

  .about-section,
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2,
  .skills-content h2,
  .cta-section h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .about-content h2,
  .skills-content h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .skills-section,
  .cta-section {
    padding: 40px 20px;
  }
}

