/* Dark Luxury Design System - Landing Page */

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #d1d5db;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(156, 163, 175, 0.2);
  background: rgba(45, 45, 45, 0.3);
  backdrop-filter: blur(10px);
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #d4af37;
}

/* Language Toggle */
.lang-switch button {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  color: #9ca3af;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.lang-switch button.active {
  color: #d4af37;
  text-decoration: underline;
}

.lang-switch button:hover {
  color: #d1d5db;
}

/* Hero Section */
.hero {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-content {
  text-align: center;
  max-width: 600px;
  background: rgba(45, 45, 45, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.6s ease-out;
}

/* Typography */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Proof */
.social-proof {
  font-size: 0.9rem;
  color: #10b981;
  margin-bottom: 2rem;
  font-weight: 600;
}

/* CTA Button */
.btn {
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  color: #1a1a1a;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(90deg, #b8941f, #d4af37);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn:active {
  transform: scale(0.98);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  color: #9ca3af;
  font-size: 0.9rem;
  border-top: 1px solid rgba(156, 163, 175, 0.2);
  background: rgba(45, 45, 45, 0.3);
}

footer a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #f4d03f;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility - Focus States */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

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

/* Mobile Optimization */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
  }

  /* Touch Target Enhancement */
  .lang-switch button {
    padding: 0.6rem 1rem;
  }
}
