@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
  --color-gray: #4A4A4A;
  --color-cream: #F9F7F5;
  --color-pink: #E8D3D1;
  --color-taupe: #D4C4B0;
  --color-dark-red: #8B575C;
  --color-dark-blue: #3A506B;
  --color-text-dark: #2C2C2C;
  --color-text-light: #7A7A7A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(249, 247, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-gray);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-dark-red);
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out;
}

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

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-gray);
  letter-spacing: 3px;
}

.section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 4rem;
  letter-spacing: 1px;
}

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

.style-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.style-card:hover {
  transform: translateY(-10px);
}

.style-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.style-card:hover img {
  transform: scale(1.1);
}

.style-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem;
  color: white;
  transition: opacity 0.3s ease;
}

.style-name {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.style-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.season-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.season-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.season-info {
  padding: 2rem;
}

.season-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-gray);
  letter-spacing: 2px;
}

.season-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.editor-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pick-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
}

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

.pick-info {
  padding: 1.5rem;
}

.pick-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--color-gray);
}

.pick-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--color-pink);
  color: var(--color-gray);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.outfit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.outfit-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

.outfit-details {
  padding: 1.5rem;
}

.outfit-style {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.outfit-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-gray);
}

.outfit-keywords {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.keyword {
  font-size: 0.8rem;
  color: var(--color-dark-red);
  border: 1px solid var(--color-dark-red);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.content-block {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 3rem;
  background: white;
  border-radius: 4px;
}

.content-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-gray);
  text-align: center;
  letter-spacing: 2px;
}

.content-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--color-text-dark);
  text-align: justify;
  letter-spacing: 0.5px;
}

.fabric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fabric-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--color-dark-red);
}

.fabric-name {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-gray);
}

.fabric-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

.color-item {
  text-align: center;
}

.color-box {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.color-name {
  font-size: 0.9rem;
  color: var(--color-gray);
  font-weight: 500;
}

.footer {
  background: var(--color-gray);
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .style-grid,
  .season-grid,
  .editor-picks {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .outfit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .style-grid,
  .season-grid,
  .editor-picks,
  .outfit-grid,
  .fabric-grid,
  .color-palette {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}