/* about.css - 회사소개 페이지 */

.about-main {
  min-height: calc(100vh - 200px);
  padding: 60px 0 0 0;
  background: #f5f5f5;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px 20px;
}

/* 페이지 헤더 */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.page-description {
  font-size: 1.3rem;
  color: var(--brand-color, #A50808);
  font-weight: 600;
}

/* 메인 소개 섹션 */
.intro-section {
  margin-bottom: 80px;
}

.intro-card {
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color, #A50808);
  color: white;
  border-radius: 20px;
  font-size: 3rem;
}

.intro-content {
  flex: 1;
}

.intro-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.4;
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #495057;
}

/* 특징 섹션 */
.features-section {
  margin-bottom: 80px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 50px;
  text-align: center;
}

.section-title i {
  color: var(--brand-color, #A50808);
  font-size: 2.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-color, #A50808);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(var(--brand-color-rgb), 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color, #A50808);
  color: white;
  border-radius: 16px;
  font-size: 2rem;
  margin-bottom: 25px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.4;
}

.feature-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #495057;
}

/* 연락 섹션 */
.contact-section {
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color, #A50808);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 25px;
}

.contact-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-info {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-color, #A50808);
  margin-bottom: 10px;
}

.contact-link {
  color: var(--brand-color, #A50808);
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-link:hover {
  opacity: 0.9;
  text-decoration: underline;
}

.contact-description {
  font-size: 1rem;
  color: #7f8c8d;
}

/* 하단 버튼 */
.about-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-home,
.btn-jobs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-home {
  background: white;
  color: #495057;
  border: 2px solid #dee2e6;
}

.btn-home:hover {
  background: #f8f9fa;
  border-color: var(--brand-color, #A50808);
  color: var(--brand-color, #A50808);
  transform: translateY(-2px);
}

.btn-jobs {
  background: var(--brand-color, #A50808);
  color: white;
  border: 2px solid var(--brand-color, #A50808);
}

.btn-jobs:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* 반응형 */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-main {
    padding: 40px 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-description {
    font-size: 1.1rem;
  }

  .intro-card {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .intro-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .intro-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 10px;
  }

  .feature-card {
    padding: 30px;
  }

  .feature-number {
    font-size: 2rem;
    top: 15px;
    right: 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-description {
    font-size: 1rem;
  }

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

  .about-actions {
    flex-direction: column;
  }

  .btn-home,
  .btn-jobs {
    width: 100%;
    justify-content: center;
  }
}
