/* Variables CSS reprenant les couleurs de DigitEdge */
:root {
  --primary: #6a1b9a;
  --primary-dark: #38006b;
  --secondary: rgba(106, 27, 154, 0.66);
  --accent: #ff5e5e;
  --dark: #333333;
  --light: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--light);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Container principal */
.maintenance-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.7;
  }
}

/* Content principal */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 30px 0;
  text-align: center;
}

.logo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  }
}

/* Main content */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.maintenance-content {
  width: 100%;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon */
.maintenance-icon {
  margin-bottom: 30px;
  color: var(--accent);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Title */
.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress Bar */
.progress-container {
  margin-bottom: 40px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff8a8a);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 94, 94, 0.5);
  animation: pulse-progress 2s ease-in-out infinite;
}

@keyframes pulse-progress {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 94, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 94, 94, 0.8);
  }
}

.progress-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* Time Container */
.time-container {
  margin-bottom: 40px;
}

.time-info {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.time-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 160px;
}

.time-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.time-value {
  font-size: 1.1rem;
  color: var(--light);
  font-weight: 600;
}

/* Features Container */
.features-container {
  margin-bottom: 40px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.features-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--light);
}

.features-list {
  list-style: none;
  display: grid;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Styles de notification supprimés car non utilisés */

/* Contact Container */
.contact-container {
  margin-bottom: 30px;
}

.contact-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ff4444;
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    padding: 0 15px;
  }
  
  .title {
    font-size: 2.2rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .logo h1 {
    font-size: 2rem;
  }
  
  .time-info {
    flex-direction: column;
    align-items: center;
  }
  
  .time-item {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }
  
  /* Styles de formulaire supprimés */
}

@media (max-width: 480px) {
  .title {
    font-size: 1.8rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .features-container {
    text-align: center;
  }
  
  .feature-item {
    justify-content: center;
    text-align: center;
  }
} 