.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 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2ecc71;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .nav-menu {
    display: none;
  }
} 
.home-container {
  width: 100%;
}

.hero-section {
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

/* 배경 이미지와 오버레이를 위한 클래스 */
.hero-section-background {
  background-size: 100% auto !important;
}

/* 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;
}

.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-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  padding: 1rem;
  color: #2c3e50;
  font-size: 1.5rem;
}

.project-card p {
  padding: 0 1rem 1rem;
  color: #666;
}

@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;
  }
} 
* {
  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;
} 
