/* 全局样式 - 极简时尚女装网站 */

/* 字体导入 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.loli.net/css2?family=Noto+Serif+SC:wght@300;400;500;600&display=swap');

/* 全局重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Serif SC', 'Inter', serif;
  background-color: #FFFFFF;
  color: #333333;
  line-height: 1.8;
  overflow-x: hidden;
}

/* 导航栏 */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}

.logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo svg {
  width: 100%;
  height: 100%;
  stroke: #333333;
  stroke-width: 1.5;
}

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

.nav-links a {
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
  font-family: 'Noto Serif SC', serif;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* 主内容区域 */
main {
  margin-top: 80px;
  min-height: calc(100vh - 160px);
}

/* Hero区域 */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #F5F5F5;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-family: 'Noto Serif SC', serif;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.95;
  font-family: 'Inter', sans-serif;
}

/* 精选系列 */
.collection {
  padding: 8rem 5%;
  background-color: #FFFFFF;
}

.collection-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 5rem;
  color: #333333;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: #F5F5F5;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.collection-label {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #333333;
  font-weight: 400;
}

/* 设计哲学页面 */
.philosophy-header {
  text-align: center;
  padding: 6rem 5% 4rem;
  background-color: #F5F5F5;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: #333333;
}

.page-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #666666;
}

.philosophy-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 5%;
}

.philosophy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 8rem;
  align-items: center;
}

.philosophy-section:last-child {
  margin-bottom: 0;
}

.philosophy-section.reverse {
  direction: rtl;
}

.philosophy-section.reverse > * {
  direction: ltr;
}

.philosophy-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background-color: #F5F5F5;
}

.philosophy-text h3 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: #333333;
}

.philosophy-text p {
  font-size: 1rem;
  line-height: 2;
  color: #666666;
  letter-spacing: 0.5px;
}

/* 风尚叙事页面 */
.stories-header {
  text-align: center;
  padding: 6rem 5% 3rem;
  background-color: #F5F5F5;
}

.stories-theme {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: #333333;
}

.stories-container {
  background-color: #FFFFFF;
}

.story-scene {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-caption {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  font-family: 'Noto Serif SC', serif;
}

/* 页脚 */
footer {
  text-align: center;
  padding: 3rem 5%;
  background-color: #F5F5F5;
  color: #333333;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .collection-grid {
    gap: 3rem 2rem;
  }

  .philosophy-section {
    gap: 3rem;
    margin-bottom: 5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .collection {
    padding: 5rem 5%;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .philosophy-section.reverse {
    direction: ltr;
  }

  .page-title {
    font-size: 2rem;
  }

  .stories-theme {
    font-size: 2rem;
  }

  .story-caption {
    font-size: 1.5rem;
  }
}