body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #000000;
      color: #ffffff;
      padding-top: 70px;
    }

    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

    .team-title {
      font-family: 'Anton', sans-serif;
      font-size: 100px;
      color: #F97A00;
      margin-bottom: 20px;
    }

    .main-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    section {
      margin-bottom: 80px;
    }

    @media (max-width: 600px) {
        section {
            margin-bottom: 50px;
        }
    }

    .section-title {
      font-size: 35px;
      font-weight: bold;
      border-bottom: 2px solid #F97A00;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .intro-text {
      font-size: 18px;
      line-height: 1.7;
    }

    .activities ul {
      list-style-type: none;
      padding: 0;
    }

    .activities li {
      margin: 10px 0;
      font-size: 16px;
    }

    .social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icons .section-title {
  margin-bottom: 16px;

}
    .social-icons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  text-decoration: none;
  color: #F97A00;
  margin: 0 12px;
  transition: opacity 0.2s;
}


    .social-icons a:hover {
        opacity: 0.8;
    }

    .icon-img {
        height: 24px;
        width: 24px;
        object-fit: contain;
    }


    footer {
      font-size: 14px;
      color: #888888;
      margin-top: 40px;
    }

    @media (max-width: 600px) {
      header h1 {
        font-size: 40px;
      }
    }

    .team-cards .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: #1e1e1e;
  border: 2px solid #F97A00;
  border-radius: 12px;
  width: 180px;
  padding: 20px;
  box-shadow: 2px 4px 8px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  margin: 0;
  font-size: 20px;
  color: #F97A00;
}

.card h3,
.section-title {
  color: #F97A00;
}

.card p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.card .role {
  font-size: 14px;
  color: #888;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.95); /* 약간 투명한 검은색 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;      /* 가로 정렬 */
  flex-direction: row;  /* 명시해줘도 좋음 */
  gap: 39px;          /* 간격 */
  align-items: center;
}


.nav-left a,
.nav-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #F97A00;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: #F97A00;
  text-decoration: none;
}

.logo-left {
  display: flex;
  align-items: center;
}


.logo-img {
  height: 40px;        /* 로고 이미지의 최대 높이 제한 */
  object-fit: contain; /* 비율 유지하면서 딱 맞게 */
  display: block;
}


html {
  scroll-behavior: smooth;
}

#about, #team {
  scroll-margin-top: 80px;  /* 헤더 높이만큼 여유 줌 */
}

.typing {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 100px;
  color: #F97A00;
  border-right: 5px solid #F97A00;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2.5s steps(15) forwards, blink 0.7s step-end 2.5s 5,
  hide-cursor 0.1s linear 6s forwards;
}

@keyframes typing {
  from { width: 0 }
  to { width: 15ch }
}

@keyframes blink {
  50% { border-color: transparent }
  100% { border-color: #F97A00 }
}
@keyframes hide-cursor {
  to { border-right: none; }
}

.main-image-slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 60px;
  border-radius: 16px;
  overflow: hidden;
  
}

.slider {
  position: relative;
  width: 100%;
  height: 500px; /* 원하는 슬라이더 높이 */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000; /* 사진 주변 여백 생기면 어색하지 않도록 */

  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  border-radius: 16px; /* 모서리 둥글게 */
}

.slide.active {
  opacity: 1;
}
