/* COMPANY 페이지 전용 스타일 */

/* 내비게이션 스타일 */
.navbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #000000;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar li {
  margin-top: 4px;
}

.navbar li a {
  text-decoration: none;
  color: rgb(255, 200, 0);
  font-size: 24px;
}

.navbar li a:hover {
  color: white;
}

.navbar li a.active {
  color: white;
  font-weight: bold;
}

.navbar img {
  height: 40px;
  width: auto;
}

/* 컨테이너 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 히어로 섹션 */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 200, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 200, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 200, 0, 0.05) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

@keyframes patternMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -10px) rotate(1deg); }
  50% { transform: translate(10px, -5px) rotate(-1deg); }
  75% { transform: translate(-5px, 10px) rotate(1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  margin-bottom: 30px;
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 200, 0, 0.5));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: 80px;
  color: rgb(255, 200, 0);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 200, 0, 0.5);
  letter-spacing: 3px;
}

@keyframes titleGlow {
  from { text-shadow: 0 0 30px rgba(255, 200, 0, 0.5); }
  to { text-shadow: 0 0 50px rgba(255, 200, 0, 0.8); }
}

.hero-subtitle {
  font-size: 40px;
  color: white;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  animation: subtitleSlide 1s ease-out 0.5s both;
}

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

.hero-description {
  font-size: 24px;
  color: #ccc;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  margin-bottom: 50px;
  animation: descriptionFade 1s ease-out 1s both;
}

@keyframes descriptionFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  animation: statsAppear 1s ease-out 1.5s both;
}

@keyframes statsAppear {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 200, 0, 0.1);
  border: 2px solid rgba(255, 200, 0, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 200, 0, 0.2);
  border-color: rgba(255, 200, 0, 0.6);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: rgb(255, 200, 0);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator span {
  display: block;
  font-size: 12px;
  color: #ccc;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 2px;
  height: 20px;
  background: rgb(255, 200, 0);
  margin: 0 auto;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgb(255, 200, 0);
  border-bottom: 2px solid rgb(255, 200, 0);
  transform: rotate(45deg);
}

/* 섹션 타이틀 */
.section-title {
  text-align: center;
  font-size: 50px;
  color: rgb(255, 200, 0);
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* 회사 소개 섹션 */
.company-intro {
  padding: 100px 0;
  background-color: #000;
  color: white;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h3 {
  font-size: 32px;
  color: rgb(255, 200, 0);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background-color: #111;
  border: 2px solid rgb(255, 200, 0);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: rgb(255, 200, 0);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #ccc;
  text-transform: uppercase;
}

/* 미션 & 비전 섹션 */
.mission-vision {
  padding: 100px 0;
  background-color: #111;
  color: white;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mission-item {
  text-align: center;
  padding: 40px 30px;
  background-color: #000;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-10px);
}

.mission-icon {
  font-size: 60px;
  color: rgb(255, 200, 0);
  margin-bottom: 20px;
}

.mission-item h3 {
  font-size: 28px;
  color: rgb(255, 200, 0);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.mission-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* 팀 섹션 */
.team-section {
  padding: 100px 0;
  background-color: #000;
  color: white;
}

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

.team-member {
  text-align: center;
  background-color: #111;
  border-radius: 15px;
  overflow: hidden;

}

.team-member:hover {
 
}

.member-photo {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 5px solid  rgb(218, 217, 217);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.team-member:hover .member-photo img {
 
}

.member-info {
  padding: 30px 20px;
}

.member-info h3 {
  font-size: 24px;
  color: rgb(255, 200, 0);
  margin-bottom: 10px;
}

.position {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 15px;
  font-weight: bold;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

/* 연혁 섹션 */
.history-section {
  padding: 100px 0;
  background-color: #111;
  color: white;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: rgb(255, 200, 0);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  background-color: rgb(255, 200, 0);
  color: #000;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px;
  min-width: 100px;
  text-align: center;
  z-index: 2;
}

.timeline-content {
  background-color: #000;
  padding: 30px;
  border-radius: 15px;
  margin: 0 40px;
  flex: 1;
  border: 2px solid #333;
}

.timeline-content h3 {
  font-size: 24px;
  color: rgb(255, 200, 0);
  margin-bottom: 15px;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

/* 파트너십 섹션 */
.partnership-section {
  padding: 100px 0;
  background-color: #000;
  color: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
}

.partner-item {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-item img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* 연락처 섹션 */
.contact-section {
  padding: 100px 0;
  background-color: #111;
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: grid;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #000;
  border-radius: 10px;
  border-left: 4px solid rgb(255, 200, 0);
}

.contact-item i {
  font-size: 24px;
  color: rgb(255, 200, 0);
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 20px;
  color: rgb(255, 200, 0);
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.contact-form {
  background-color: #000;
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(255, 200, 0);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: rgb(255, 200, 0);
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 50px;
  }
  
  .hero-subtitle {
    font-size: 25px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-stats {
    grid-template-columns: 1fr;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    margin-left: 40px;
  }
  
  .timeline-content {
    margin: 20px 0 0 0;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 35px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* 초보자 스타일 애니메이션 */
.section-title, .team-member, .timeline-item, .partner-item, .contact-info, .contact-form {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-title.visible, .team-member.visible, .timeline-item.visible, .partner-item.visible, .contact-info.visible, .contact-form.visible {
  opacity: 1;
  transform: translateY(0);
} footer{background-color: #E5A730; padding: 20px 0;}
.footer_inner{display: flex; width: 90%; margin: auto;}
.footer-text{color: white;width: 100%;font-size: 15px; line-height: 25px;}
.sns{width: 100%; text-align: right; display: flex; flex-direction: column; justify-content: center;}
.sns-icon{font-size: 30px;}
.sns-icon i{color: #fff;}