.language-switch {
  margin-left: 1rem;
}

.language-button {
  background-color: transparent;
  border: 2px solid #2ecc71;
  color: #2ecc71;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.language-button:hover {
  background-color: #2ecc71;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .language-switch {
    margin-left: 0;
  }
} 
/* Header 컨테이너 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem;
}

/* 네비게이션 컨테이너 */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 로고 링크 */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* 로고 컨테이너 */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* 로고 이미지 */
.logo-image {
  height: 40px;
  width: auto;
}

/* 조직 정보 컨테이너 */
.organization-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

/* 회사명 */
.corp-name {
  font-size: 0.75rem;
  color: #2c3e50;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* DBA 명 */
.dba-name {
  font-size: 0.7rem;
  color: #7f8c8d;
  font-weight: 500;
  font-style: italic;
}

/* 모바일 메뉴 버튼 */
.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  color: #2c3e50;
}

.mobile-menu-button:hover {
  color: #2ecc71;
  transition: color 0.3s ease;
}

/* 네비게이션 링크들 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 네비게이션 링크 */
.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2ecc71;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: #2ecc71;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* 후원 버튼 */
.donation-button {
  background: transparent;
  color: #3498db;
  padding: 8px 16px;
  border: 2px solid #3498db;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.donation-button:hover {
  background: #3498db;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}

.donation-button:active {
  transform: translateY(0);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .header {
    padding: 0.8rem 1rem;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    gap: 15px;
  }
  
  .nav-links-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .donation-button {
    margin-top: 10px;
  }
  
  /* 모바일에서 조직 정보 크기 조정 */
  .corp-name {
    font-size: 0.7rem;
  }
  
  .dba-name {
    font-size: 0.65rem;
  }
  
  .logo-image {
    height: 35px;
  }
}

/* 태블릿 사이즈 */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav {
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 15px;
  }
  
  .corp-name {
    font-size: 0.72rem;
  }
  
  .dba-name {
    font-size: 0.68rem;
  }
} 
.home-container {
  width: 100%;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  overflow: hidden;
}

/* 배경 이미지와 오버레이를 위한 클래스 */
.hero-section-background {
  position: relative;
}

/* 슬라이더 관련 스타일 */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-container {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  width: 33.333%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* hero content 내부의 박스 스타일 */
.hero-content-box {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* hero 제목과 부제목 색상 */
.hero-title-white {
  color: #fff !important;
}

.hero-subtitle-white {
  color: #fff !important;
}

.shop-button {
  background-color: #2ecc71;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.shop-button:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Nanum Gothic', 'Noto Sans KR', sans-serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #2ecc71;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #27ae60;
}

.about-section,
.projects-section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2,
.projects-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.5rem;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #666;
}

/* 새로운 프로젝트 카드 레이아웃 */
.project-main-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
  padding: 2rem;
}

.project-poster-section {
  flex: 0 0 400px;
  position: relative;
}

.project-poster-container {
  position: relative;
  transform: rotate(-8deg);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.project-poster-container:hover {
  transform: rotate(-5deg) scale(1.05);
}

.project-poster {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.project-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
  z-index: 10;
}

.project-info-section {
  flex: 1;
  padding-left: 2rem;
}

.project-main-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.project-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-date {
  font-size: 1rem;
  color: #3498db;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid #ecf0f1;
}

.project-description-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}

.project-description-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0;
}

.project-bullet {
  color: #3498db;
  font-size: 1.2rem;
  margin-right: 0.8rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.project-description-text {
  color: #555;
  line-height: 1.4;
  font-size: 1rem;
}

.project-cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.project-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9, #3498db);
}

/* 기존 그리드 스타일 숨김 */
.project-grid {
  display: none;
}

.project-card {
  display: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about-section h2,
  .projects-section h2 {
    font-size: 2rem;
  }

  .project-main-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .project-poster-section {
    flex: none;
    max-width: 300px;
  }

  .project-info-section {
    padding-left: 0;
  }

  .project-main-title {
    font-size: 1.8rem;
  }

  .project-poster-container {
    transform: rotate(-5deg);
  }

  .project-poster-container:hover {
    transform: rotate(-3deg) scale(1.02);
  }

  .past-events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .past-event-item {
    flex-direction: column;
    text-align: center;
  }

  .past-event-poster-section {
    max-width: 250px;
  }

  .past-event-info-section {
    padding-left: 0;
    padding-top: 1rem;
  }
}

/* 지난 이벤트 섹션 스타일 */
.past-events-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fafbfc;
  border-radius: 20px;
  margin-top: 3rem;
}

.past-events-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 600;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.past-event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.past-event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.past-event-poster-section {
  flex: 0 0 200px;
  position: relative;
}

.past-event-poster-container {
  position: relative;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.past-event-poster-container:hover {
  transform: rotate(-2deg) scale(1.05);
}

.past-event-poster {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.past-event-info-section {
  flex: 1;
  padding-left: 1rem;
}

.past-event-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.past-event-date {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.past-event-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.past-event-category {
  display: inline-block;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
} 
/* Resources 페이지 전체 컨테이너 */
.resources-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 100px; /* Header 높이만큼 상단 패딩 추가 */
}

/* MOU 섹션 스타일 */
.mou-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mou-content {
  margin-bottom: 3rem;
}

.mou-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.mou-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
  word-break: keep-all;
}

.mou-benefits {
  margin-left: 2rem;
  line-height: 1.8;
  color: #555;
}

.mou-benefits li {
  margin-bottom: 0.5rem;
}

/* 세계지도 컨테이너 */
.world-map-container {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  overflow: hidden;
  width: 100%;
}

.world-map-image {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0.9;
  margin: 0 auto;
  display: block;
}



/* 회원혜택 그리드 */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* 혜택 카드 */
.benefit-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 300px;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover .click-indicator {
  opacity: 1;
  transform: translateY(0);
}

.benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image {
  transform: scale(1.1);
}

.benefit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.click-indicator {
  font-size: 0.9rem;
  color: #3498db;
  font-weight: 600;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
  .world-map-container {
    padding: 1rem;
    margin: 2rem 0;
  }
  
  .world-map-image {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .resources-container {
    gap: 3rem;
    padding-top: 120px; /* 모바일에서 헤더가 더 높을 수 있으므로 조정 */
  }
  
  .mou-section {
    padding: 2rem;
  }
  
  .mou-title {
    font-size: 1.6rem;
  }
  
  .mou-text {
    font-size: 1rem;
  }
  
  .world-map-container {
    padding: 0.5rem;
    margin: 2rem 0;
  }
  
  .world-map-image {
    min-height: 300px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .benefit-card {
    height: 250px;
  }
  
  .benefit-overlay {
    padding: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.3rem;
  }
  
  .benefit-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .mou-section {
    padding: 1.5rem;
  }
  
  .world-map-container {
    padding: 0.5rem;
    margin: 2rem 0;
  }
  
  .world-map-image {
    min-height: 250px;
  }
  
  .mou-benefits {
    margin-left: 1rem;
  }
} 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-top: 80px; /* Header 높이만큼 padding */
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
} 
