/**
 * Construction Banner Component
 * A simple but effective banner for the Eternal Roam website
 */

.construction-banner {
  position: relative;
  width: 100%;
  background-color: #0c4c8a; /* Traditional Catholic blue */
  color: #ffffff;
  padding: 12px 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.construction-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-banner-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.construction-banner-text strong {
  font-weight: 700;
}

/* Responsive design */
@media (max-width: 768px) {
  .construction-banner {
    padding: 10px 0;
  }
  
  .construction-banner-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .construction-banner-text {
    font-size: var(--er-fs-floor);
  }
}