/* ============================================================
   COMPONENTS - Redesign
   ============================================================ */

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  line-height: 1;
}

.btn-lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--mint);
  color: var(--purple-deep);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary-dark {
  background: var(--black);
  color: var(--white);
}

.btn-primary-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* Button variants for dark sections / hero */
.hero .btn-outline,
.section-dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.hero .btn-outline:hover,
.section-dark .btn-outline:hover {
  background: var(--white);
  color: var(--purple-deep);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.7;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 6vw;
  font-size: 3rem;
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── Countdown Component ────────────────────────────────── */
.countdown-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  font-family: inherit;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 16px;
  min-width: 80px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.section-light .countdown-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.countdown-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.section-light .countdown-value {
  color: var(--black);
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.section-light .countdown-label {
  color: var(--mid-grey);
}

.countdown-separator {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.5;
  padding-top: 0.5rem;
}

.section-light .countdown-separator {
  color: var(--black);
}

@media (max-width: 480px) {
  .countdown-wrapper {
    gap: 0.5rem;
  }
  .countdown-item {
    min-width: 60px;
    padding: 0.75rem;
  }
  .countdown-value {
    font-size: 1.8rem;
  }
  .countdown-separator {
    font-size: 1.8rem;
    padding-top: 0.25rem;
  }
}

