/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Navbar ───────────────────────────────────────── */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-logo-text { transition: color 0.4s ease; }
#navbar.scrolled .nav-logo-text { color: #1f1f27; }

.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b6b;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Menu ──────────────────────────────────── */
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu.closed { opacity: 0; pointer-events: none; }
.mobile-link { transition: transform 0.3s ease, opacity 0.3s ease; }

/* ── Buttons ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff6b6b;
  color: #fff;
  border-radius: 9999px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  background: #f05252;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,107,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 9999px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ── Tags ─────────────────────────────────────────── */
.tag-coral {
  display: inline-block;
  background: rgba(255,107,107,0.12);
  color: #ff6b6b;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-charcoal {
  display: inline-block;
  background: rgba(31,31,39,0.08);
  color: #40404a;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Inputs ───────────────────────────────────────── */
.input-field {
  border: 1.5px solid #e5e5e8;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #2a2a33;
  background: #fefdf8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
.input-field::placeholder { color: #a2a2ac; }
.input-field:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

/* ── Hero ─────────────────────────────────────────── */
.hero-gradient {
  background: linear-gradient(135deg, #1f1f27 0%, #40404a 30%, #737380 55%, #ff9b91 80%, #ff6b6b 100%);
}
.hero-blob { will-change: transform; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -25px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}
.animate-float { animation: float 8s ease-in-out infinite; }

.hero-title {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}
.hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}
.hero-badge {
  opacity: 0;
  animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}
.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator { animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ── Scroll Reveal ────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Collection Cards ─────────────────────────────── */
.collection-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

/* ── Experience Cards ─────────────────────────────── */
.experience-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

/* ── Gallery Strip ────────────────────────────────── */
#gallery-strip {
  display: flex;
  gap: 1.5rem;
  animation: scrollGallery 30s linear infinite;
}
#gallery-strip:hover { animation-play-state: paused; }
.gallery-img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-416px * 3 - 24px)); }
}

/* ── Utility ──────────────────────────────────────── */
@media (max-width: 640px) {
  .gallery-img { height: 180px; }
}
