/* AluAvila Coming Soon Page - Stylesheet */

:root {
  --primary-rgb: 15, 23, 42; /* Slate 900 */
  --primary: rgb(var(--primary-rgb));
  --accent: #0ea5e9; /* Sky 500 */
  --accent-glow: rgba(14, 165, 233, 0.4);
  --text-primary: #f8fafc; /* Slate 50 */
  --text-secondary: #94a3b8; /* Slate 400 */
  --bg-dark: #070a13; /* Very dark navy */
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.bg-glow-1 {
  width: 400px;
  height: 400px;
  background-color: var(--accent);
  top: -10%;
  left: -10%;
  animation: floatGlow1 25s infinite alternate ease-in-out;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background-color: #0284c7;
  bottom: -15%;
  right: -10%;
  animation: floatGlow2 30s infinite alternate ease-in-out;
}

.bg-glow-3 {
  width: 300px;
  height: 300px;
  background-color: #38bdf8;
  top: 40%;
  left: 60%;
  opacity: 0.25;
  animation: floatGlow3 20s infinite alternate ease-in-out;
}

@keyframes floatGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 50px) scale(1.15); }
}

@keyframes floatGlow2 {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-100px, -60px) scale(0.9); }
}

@keyframes floatGlow3 {
  0% { transform: translate(0, 0) scale(0.8); }
  100% { transform: translate(-50px, 80px) scale(1.2); }
}

/* Floating Particle System in JS */
#particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  pointer-events: none;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) rotate(360deg) scale(1.1);
    opacity: 0;
  }
}

/* Main Container (Glassmorphic Card Wrapper) */
.main-container {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 720px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
  animation: slideUpIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.header {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-svg {
  width: 48px;
  height: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
}

.logo-text .text-accent {
  color: var(--accent);
}

/* Content */
.badge {
  display: inline-block;
  background-color: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.main-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: white;
  background: linear-gradient(135deg, #ffffff 40%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.5rem auto;
}

/* Countdown */
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.time-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 12px var(--accent-glow);
}

.time-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

.countdown-separator {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

/* Contact Card */
.contact-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 1.75rem;
  text-align: center;
  margin-top: 1rem;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.contact-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast, 0.2s);
}

.tel-btn {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.tel-btn:hover {
  background-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.mail-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.mail-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.location-text {
  margin-top: 0.25rem;
  color: #64748b;
}

/* Media Queries */
@media (max-width: 600px) {
  .main-container {
    padding: 2rem 1.5rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .countdown-container {
    gap: 0.5rem;
  }

  .countdown-item {
    min-width: 60px;
  }

  .time-value {
    font-size: 2rem;
  }

  .countdown-separator {
    font-size: 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
