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

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

:root {
  --primary-dark: #1a1a1a;
  --secondary-dark: #2d3748;
  --accent-blue: #2c5282;
  --text-light: #f7fafc;
  --text-muted: #a0aec0;
  --border-color: #e2e8f0;
}

body {
  font-family: 'Noto Sans SC', 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: var(--primary-dark);
  line-height: 1.8;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

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

.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-light);
  z-index: 10;
}

.grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.grid-item:hover {
  transform: translateY(-8px);
}

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

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.grid-item:hover .grid-overlay {
  transform: translateY(0);
}

.scene-card {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.scene-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.btn-primary {
  background: var(--secondary-dark);
  color: var(--text-light);
  padding: 0.875rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
}

.inspiration-block {
  background: #f8f9fa;
  padding: 3rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--accent-blue);
}

.quote-section {
  font-size: 1.75rem;
  font-weight: 300;
  font-style: italic;
  color: var(--secondary-dark);
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

footer {
  background: var(--primary-dark);
  color: var(--text-light);
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

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

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

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
  
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .inspiration-block {
    padding: 2rem 1.5rem;
  }
  
  .quote-section {
    font-size: 1.25rem;
    padding: 2rem 1rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }
}