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

html {
  font-family: 'DM Sans', Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* ---------------------------------------------
   Background + layout
--------------------------------------------- */
.maintenance {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-color: #0d3358;
  background-image: radial-gradient(
    circle at center,
    #016492 0%,
    #0d3358 55%,
    #0d3358 100%
  );
}

/* ---------------------------------------------
   Content
--------------------------------------------- */
.maintenance-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding: 2rem 1.5rem;
}

.maintenance-icon {
  width: clamp(48px, 7vw, 72px);
  height: clamp(48px, 7vw, 72px);
  color: #ffffff;
}

.maintenance-icon svg {
  width: 100%;
  height: 100%;
}

.maintenance-title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.05rem + 2vw, 2.5rem);
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.maintenance-subtitle {
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* ---------------------------------------------
   Breakpoint fine-tuning
--------------------------------------------- */

/* Mobile (default, up to 479px) */
@media (max-width: 479px) {
  .maintenance-content {
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }
}

/* Tablet (480px - 991px) */
@media (min-width: 480px) and (max-width: 991px) {
  .maintenance-content {
    max-width: 560px;
  }
}

/* Small desktop (992px - 1279px) */
@media (min-width: 992px) and (max-width: 1279px) {
  .maintenance-content {
    max-width: 640px;
  }
}

/* Medium desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
  .maintenance-content {
    max-width: 700px;
  }
}

/* Large desktop (1440px+) */
@media (min-width: 1440px) {
  .maintenance-content {
    max-width: 780px;
    gap: 2rem;
  }
}
