/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-color: #f9f9f9;
  --text-dark: #333333;
  --text-medium: #999999;
  --text-light: #cccccc;
  --accent: #a0a08b;
  --white: #ffffff;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

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

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text-dark);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 4rem;
}

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

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 10;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  opacity: 0.8;
}

.featured-grid {
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.featured-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.featured-caption {
  padding: 1.5rem;
  background: var(--white);
  text-align: center;
}

.featured-caption p {
  font-size: 1rem;
  color: var(--text-medium);
}

/* Collection Page */
.collection-header {
  padding: 6rem 2rem 2rem;
  text-align: center;
}

.collection-header h1 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Aesthetic Page */
.aesthetic-content {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.text-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.image-section {
  margin-bottom: 6rem;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .featured-grid,
  .gallery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .aesthetic-content {
    padding: 4rem 1rem;
  }
  
  .collection-header h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .featured-caption p,
  .gallery-caption {
    font-size: 0.9rem;
  }
}