/* ==========================================================================
   AIZOME ARCHIVE — COMING SOON LANDING PAGE
   Quiet Luxury, Minimalist, Archive-Inspired Aesthetics
   ========================================================================== */

/* 1. DESIGN TOKENS */
:root {
  /* Color Palette */
  --bg-dark-center: #1a1b1e;
  --bg-dark-edge: #0c0c0e;
  
  /* Silver Metallic Accents */
  --silver-light: #f3f4f6;
  --silver-mid: #9ca3af;
  --silver-dark: #4b5563;
  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-hairline-hover: rgba(255, 255, 255, 0.25);
  
  /* WhatsApp Identity */
  --whatsapp-green: #25D366;
  
  /* Typography Colors */
  --text-primary: #e5e7eb;
  --text-muted: #8c929c;
  --text-dim: #5c6168;

  /* Transitions */
  --transition-normal: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. RESET & GLOBAL STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-color: var(--bg-dark-edge);
  /* Rich three-dimensional radial gradient */
  background: radial-gradient(circle at center, var(--bg-dark-center) 0%, var(--bg-dark-edge) 100%);
  color: var(--text-primary);
  font-family: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Drag Prevention */
img {
  -webkit-user-drag: none;
  user-drag: none;
  max-width: 100%;
  height: auto;
}

/* Focus States for Accessibility */
a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
}

/* 3. BACKGROUND EFFECTS */
.ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 550px);
  height: min(80vw, 550px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  animation: pulse-glow 10s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* 4. LAYOUT STRUCTURE */
.main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  padding: clamp(2rem, 6vh, 4rem) 2rem;
  z-index: 2;
  position: relative;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* 5. LOGO */
.logo-box {
  margin-bottom: clamp(1.2rem, 2.5vh, 2rem);
  opacity: 0;
  transform: translateY(24px);
  animation: fade-in-up 1.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo {
  max-width: clamp(140px, 24vw, 190px);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-normal);
}

.brand-logo:hover {
  transform: scale(1.025);
}

/* 6. TYPOGRAPHY & BRANDING */
.brand-name {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.48em;
  text-indent: 0.48em; /* Offsets trailing letter-spacing to align text perfectly */
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #a2a8b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 1.4s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-description {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  max-width: 44ch;
  margin: 0 auto clamp(2.5rem, 5vh, 4rem);
  opacity: 0;
  transform: translateY(16px);
  animation: fade-in-up 1.4s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* 7. CONTACT CTAs */
.cta-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-in-up 1.4s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border: 1px solid var(--border-hairline);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: 
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    color var(--transition-fast);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}

.contact-icon {
  fill: none;
  transition: transform var(--transition-fast), fill var(--transition-fast), stroke var(--transition-fast);
  flex-shrink: 0;
}

.btn-contact:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hairline-hover);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(255, 255, 255, 0.01);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-contact:active {
  transform: translateY(0);
}

/* WhatsApp Specific */
.btn-whatsapp:hover .whatsapp-icon {
  transform: scale(1.1);
  fill: var(--whatsapp-green);
}
.btn-whatsapp .whatsapp-icon {
  fill: currentColor;
}

/* Email Specific */
.btn-email {
  letter-spacing: 0.1rem;
  text-transform: none;
}
.btn-email:hover .email-icon {
  transform: scale(1.1);
  stroke: #60a5fa;
}

/* 8. FOOTER */
.site-footer {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  text-align: center;
  opacity: 0;
  animation: fade-in 2s 1.2s forwards ease;
  width: 100%;
}

/* 9. ANIMATION TIMINGS */
@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

/* 10. RESPONSIVE OPTIMIZATIONS */
@media (max-height: 550px) {
  .main-wrapper {
    padding: 1.5rem 1rem;
  }
  .logo-box {
    margin-bottom: 1rem;
  }
  .brand-logo {
    max-width: 150px;
  }
  .brand-description {
    margin-bottom: 1.5rem;
  }
}
