/* ============================================
   Luminix Studio — Coming Soon (Alt)
   Minimal version without countdown, form, socials
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #FF4500;
  --primary-hsl: 16, 100%, 50%;
  --secondary: #FFD700;
  --secondary-hsl: 51, 100%, 50%;
  --accent: #FFFFFF;
  --bg-dark: #050510;
  --bg-navy: #0a0a2e;
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-phoenix {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.6));
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ---------- Particle Canvas ---------- */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Main Layout ---------- */
.main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  gap: 0;
}

/* ---------- Background Glows ---------- */
.bg-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 6s ease-in-out infinite;
}

.bg-glow-secondary {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 8s ease-in-out infinite reverse;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -60%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -60%) scale(1.15); }
}

/* ---------- Logo ---------- */
.logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.25) 0%, rgba(255, 215, 0, 0.1) 40%, transparent 70%);
  animation: glowPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

.phoenix-logo {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.2));
  transition: filter 0.3s ease;
}

.logo-container:hover .phoenix-logo {
  filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.7)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ---------- Typography ---------- */
.title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 1.75rem;
  display: flex;
  gap: 0.6em;
  flex-wrap: wrap;
  justify-content: center;
}

.tagline-word {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.tagline-word:hover {
  transform: translateY(-2px) scale(1.05);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ---------- Description & Services ---------- */
.description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.services {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

/* ---------- Contact ---------- */
.contact {
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-block;
}

.contact-link:hover {
  color: var(--primary);
  border-color: rgba(255, 69, 0, 0.3);
  background: rgba(255, 69, 0, 0.06);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.1);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.5;
  letter-spacing: 0.03em;
}

/* ---------- Reveal Animation ---------- */
.anim-reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .main {
    padding: 2rem 1rem;
  }

  .logo-container {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
  }

  .phoenix-logo {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    width: 120px;
    height: 120px;
  }

  .phoenix-logo {
    width: 90px;
    height: 90px;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(255, 69, 0, 0.3);
  color: var(--accent);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 69, 0, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 69, 0, 0.5);
}
