/* =========================================================
   RNR Maintenance Styles
   ========================================================= */

:root {
  --color-primary: #e21e26;
  --color-accent: #ffd700;
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-barlow: "Barlow Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.maintenance-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.maintenance-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.maintenance-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) grayscale(0.2);
  transform: scale(1.05);
  animation: ken-burns 20s ease-out forwards;
}

.maintenance-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.maintenance-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  width: 90%;
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slide-up-fade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.maintenance-logo {
  margin-bottom: 2.5rem;
}

.maintenance-logo img {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.maintenance-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: #fff;
}

.maintenance-message {
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.maintenance-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(226, 30, 38, 0.3);
}

.btn-premium:hover {
  background-color: #ff2a33;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(226, 30, 38, 0.4);
}

.maintenance-footer {
  margin-top: 3rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

/* Animations */
@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes slide-up-fade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .maintenance-content {
    padding: 2rem 1.5rem;
  }
}
