/* ================================================
   RELLA Company Page Styles
   회사 소개 페이지 전용 스타일
   ================================================ */

/* ================================================
   COMPANY HERO
   ================================================ */

.company-hero {
  width: 100%;
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 253, 240, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.company-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.company-hero-title .highlight {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .company-hero {
    padding: 80px 0 50px;
  }

  .company-hero-title {
    font-size: 36px;
  }

  .company-hero-subtitle {
    font-size: 18px;
  }
}

/* ================================================
   COMPANY SECTIONS
   ================================================ */

.company-section {
  width: 100%;
  padding: 80px 0;
}

.company-section.alt-bg {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.section-title.text-center {
  text-align: center;
}

.section-body {
  margin-top: var(--spacing-lg);
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 20px 0;
}

.section-text:last-of-type {
  margin-bottom: 0;
}

.ceo-signature {
  margin-top: 40px;
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .company-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
  }
}

/* ================================================
   SCROLL BEHAVIOR
   ================================================ */

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

/* ================================================
   ANIMATIONS
   ================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-hero,
.company-section {
  animation: fadeIn 0.6s ease-out;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
