/* About Us Section */
.about-section {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #fff5f9, #f8f0ff);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Background Decoration */
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 141, 199, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.about-section::before {
  top: -200px;
  left: -200px;
}

.about-section::after {
  bottom: -200px;
  right: -200px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  padding-top: 3rem;
}

.about-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Content */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.about-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(182, 140, 255, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.8;
  word-break: keep-all;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

.value-item {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(182, 140, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-purple-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(182, 140, 255, 0.25);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.value-item p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
}

.value-item i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(182, 140, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(182, 140, 255, 0.2);
  border-color: rgba(255, 141, 199, 0.3);
}

.feature-item i {
  font-size: 2rem;
  color: #ff8dc7;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 1.2rem 0;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.5px;
}

.feature-item p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  font-family: "Noto Sans KR", sans-serif;
  font-weight: 300;
}

/* Team Section */
.team-section {
  margin-top: 6rem;
  text-align: center;
}

.team-section h3 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(182, 140, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(182, 140, 255, 0.2);
  border-color: rgba(255, 141, 199, 0.3);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(182, 140, 255, 0.2);
}

.team-member h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: #ff8dc7;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #ff6bac;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-content {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-text {
    padding: 1rem;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    background: linear-gradient(135deg, #fff5f9, #f8f0ff);
  }

  .site-container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .about-section {
    padding: 8rem 1.5rem 3rem;
  }

  .about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .value-item {
    padding: 1.5rem;
  }

  .value-item h4 {
    font-size: 1.2rem;
  }

  .value-item p {
    font-size: 0.95rem;
  }

  .header {
    background: transparent;
    box-shadow: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-section h3 {
    font-size: 1.8rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-content {
  animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.feature-item {
  animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.team-member {
  animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.team-member:nth-child(1) {
  animation-delay: 0.2s;
}
.team-member:nth-child(2) {
  animation-delay: 0.4s;
}
.team-member:nth-child(3) {
  animation-delay: 0.6s;
}
.team-member:nth-child(4) {
  animation-delay: 0.8s;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  opacity: 0.9;
  position: relative;
}
