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

:root {
  --bg: #0a0a0a;
  --text: #e8e4df;
  --accent: #c9b99a;
  --muted: #6b6560;
  --card-bg: #141414;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s;
}

.logo {
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* Sections */
.section {
  padding: 6rem 2rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Blue Moon Series — full-width scroll */
.bluemoon-gallery {
  max-width: 1000px;
  margin: 0 auto;
}

.bm-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6rem;
}

.bm-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bm-image img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.bm-info {
  text-align: center;
  margin-top: 1.5rem;
}

.bm-number {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.bm-info h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

/* Text-only slide (We Leave) */
.bm-text-only {
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bm-text-only .bm-number {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.bm-text-only h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
}

/* Gallery — Full-page scroll (matches Blue Moon) */
.gallery-scroll {
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6rem;
}

.gallery-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.gallery-image img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.gallery-info {
  text-align: center;
  margin-top: 1.5rem;
}

.gallery-info h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.gallery-info p {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

/* About & Contact */
#about, #contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.info-content {
  max-width: 600px;
  text-align: center;
  padding: 2rem;
}

.info-content h2 {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.info-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--text);
}

footer {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 2rem;
  text-align: center;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 0.8rem 1.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .logo {
    font-size: 0.9rem;
  }

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

  .section {
    padding: 4rem 1rem 3rem;
  }

  .bm-slide {
    margin-bottom: 4rem;
  }

  .bm-image img {
    max-height: 55vh;
  }

  .gallery-slide {
    margin-bottom: 4rem;
  }

  .gallery-image img {
    max-height: 55vh;
  }
}
