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

:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F5;
  --bg-accent: #E8DED2;
  --text-primary: #333333;
  --text-secondary: #666666;
  --accent-gold: #A68A64;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif SC', 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.hover-scale {
  transition: var(--transition-smooth);
}

.hover-scale:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.section-spacing {
  padding: 5rem 1rem;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 3rem 1rem;
  }
}

.text-gold {
  color: var(--accent-gold);
}

.bg-cream {
  background-color: var(--bg-accent);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
  margin: 3rem 0;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.lazy-load.loaded {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}