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

:root {
  --primary-gray: #f5f5f5;
  --secondary-beige: #f8f3e9;
  --light-taupe: #e8dfd0;
  --accent-gold: #d4af37;
  --rose-gold: #b76e79;
  --mist-blue: #a8b5c5;
  --dusty-pink: #d4a5a5;
  --sage-green: #b5c4a1;
  --text-dark: #2d2d2d;
  --text-light: #666666;
  --border-color: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif SC', serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.hero-section {
  margin-top: 80px;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.slideshow {
  width: 100%;
  height: 90vh;
  position: relative;
}

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

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 5%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: white;
}

.slide-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.slide-overlay p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 5rem 5%;
  background: white;
}

.section:nth-child(even) {
  background: var(--secondary-beige);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.fashion-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.fashion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.fashion-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fashion-card:hover img {
  transform: scale(1.08);
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.philosophy-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}

.philosophy-section p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-light);
}

.color-palette {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

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

.color-swatch {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.color-swatch:hover {
  transform: scale(1.1);
}

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

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

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

.timeline-content {
  width: 45%;
  padding: 2rem;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline-image {
  width: 45%;
}

.timeline-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-text {
  padding: 1rem;
}

.story-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.story-text p {
  font-size: 1rem;
  line-height: 1.8;
}

footer {
  background: var(--text-dark);
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .main-nav {
    gap: 1.5rem;
    padding: 1rem 3%;
  }
  
  .main-nav a {
    font-size: 0.9rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }
  
  .section {
    padding: 3rem 3%;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fashion-card img {
    height: 300px;
  }
  
  .timeline::before {
    left: 0;
  }
  
  .timeline-item {
    flex-direction: column !important;
  }
  
  .timeline-content,
  .timeline-image {
    width: 100%;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .slide-overlay h2 {
    font-size: 1.8rem;
  }
  
  .slide-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-nav {
    gap: 1rem;
  }
  
  .main-nav a {
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .philosophy-section p {
    font-size: 1rem;
  }
  
  .color-swatch {
    width: 80px;
    height: 80px;
  }
}