/* style.css - GetTimHome Coming Soon Landing Page Styles */

:root {
  --background: 220 15% 8%;
  --foreground: 45 100% 65%;
  --secondary: 220 15% 18%;
  --primary: 45 100% 65%;
  --border: 220 15% 20%;
  
  --text-main: #ffffff;
  --text-muted: #9ca3af;
}

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

body {
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--secondary)), hsl(var(--background)));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: var(--text-main);
  font-family: 'JetBrains Mono', monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows */
.ambient-glows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-top-left {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.05);
  filter: blur(120px);
}

.glow-bottom-right {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.10);
  filter: blur(120px);
}

/* Grid overlay to look like a transit system map / tech background */
.grid-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* Container & Layout */
.container {
  max-width: 800px;
  width: 90%;
  margin: auto;
  z-index: 10;
  position: relative;
  text-align: center;
  padding: 80px 0;
}

/* Logo & Header */
.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: hsl(var(--primary));
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  color: #ffffff;
}

/* Headings & Text */
.main-heading {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 60%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 48px auto;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.tagline .highlight {
  color: #ffffff;
  font-weight: 700;
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 8px;
  background: hsl(var(--primary) / 0.05);
  border: 1px solid hsl(var(--primary) / 0.5);
  color: hsl(var(--primary));
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  animation: 
    fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards,
    pulse-glow 2s ease-in-out infinite;
  opacity: 0;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: hsl(var(--primary));
  box-shadow: 0 0 10px hsl(var(--primary));
  animation: blink 1.5s infinite ease-in-out;
}

/* Footer styling */
footer {
  width: 100%;
  border-top: 1px solid hsl(var(--border) / 0.5);
  padding: 24px 0;
  z-index: 10;
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-content {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Keyframes Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(var(--primary) / 0.15);
    border-color: hsl(var(--primary) / 0.4);
    background: hsl(var(--primary) / 0.03);
  }
  50% {
    box-shadow: 0 0 35px hsl(var(--primary) / 0.35);
    border-color: hsl(var(--primary) / 0.8);
    background: hsl(var(--primary) / 0.08);
  }
}

/* Responsive adjust */
@media (max-width: 768px) {
  .main-heading {
    font-size: 3rem;
  }
  .tagline {
    font-size: 0.95rem;
  }
  .coming-soon-badge {
    font-size: 0.8rem;
    padding: 10px 24px;
  }
}
