/*
Theme Name: Maintenance Mode
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A modern, sleek black maintenance page theme for WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: maintenance-mode
Tags: one-column, custom-colors, full-width-template, maintenance
*/

:root {
  --background: #0d0d0d;
  --foreground: #fafafa;
  --muted-foreground: #8a8a8a;
  --accent: #4adecc;
  --primary: #5ec5e0;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-5: rgba(255, 255, 255, 0.05);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.maintenance-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated background gradient */
.bg-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.bg-orb-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(74, 222, 204, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 3s ease-in-out infinite;
}

.bg-orb-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 384px;
  height: 384px;
  background: radial-gradient(circle, rgba(94, 197, 224, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

/* Main content */
.content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp 1s ease-out forwards;
}

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

/* Logo */
.logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.logo-box {
  width: 64px;
  height: 64px;
  border: 2px solid var(--white-20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.logo-inner {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #fff, var(--muted-foreground));
  border-radius: 4px;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 9999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeInScale 0.7s ease-out 0.3s forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
  from {
    opacity: 0;
    transform: scale(0.95);
  }
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-text {
  font-size: 0.875rem;
  font-family: "Courier New", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* Main heading */
.main-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.5s forwards;
}

.heading-accent {
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .main-heading {
    font-size: 4.5rem;
  }
}

/* Description */
.description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 0.7s forwards;
}

@media (min-width: 768px) {
  .description {
    font-size: 1.25rem;
  }
}

/* Progress indicator */
.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease-out 1s forwards;
}

.progress-bar {
  width: 16rem;
  height: 4px;
  background-color: var(--white-10);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, #fff, var(--accent));
  border-radius: 9999px;
  animation: progressSlide 2s ease-in-out infinite;
}

@keyframes progressSlide {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(400%);
  }
}

.progress-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: "Courier New", monospace;
}

/* Contact section */
.contact-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-10);
  opacity: 0;
  animation: fadeIn 0.7s ease-out 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.contact-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: "Courier New", monospace;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-icon {
  width: 20px;
  height: 20px;
}

/* Bottom decorative line */
.bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--white-20), transparent);
}
