/* ===================================
   TEMPORARY & EXTRA ELEMENTS
   Construction banner, disclaimers, and temporary UI elements
=================================== */

/* === CONSTRUCTION BANNER === */
.construction-banner {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e72 50%, #ffa366 100%);
  background-attachment: fixed;
  color: white;
  padding: 16px 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4), 0 0 20px rgba(255, 174, 102, 0.2);
  animation: slideDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  will-change: transform;
}

.construction-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite linear;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.construction-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.construction-icon {
  font-size: 24px;
  animation: wobble 2s infinite, pulse 2s infinite;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-8deg) scale(1.05); }
  75% { transform: rotate(8deg) scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.construction-text {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  min-width: 200px;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body {
  padding-top: 0;
}

body.construction-closed {
  padding-top: 0;
}

/* === FOOTER DISCLAIMER === */
.footer-disclaimer {
  background: linear-gradient(135deg, rgba(62, 31, 5, 0.95), rgba(123, 66, 20, 0.95));
  border-top: 1px solid rgba(212, 168, 83, 0.2);
  padding: 1.5rem 5%;
  text-align: center;
  color: rgba(253, 246, 227, 0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.footer-disclaimer p {
  margin: 0.5rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer a {
  color: var(--gold-light);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
  color: var(--gold);
}

/* === WEBSITE STATUS BADGE === */
.status-badge {
  display: inline-block;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin: 0.5rem 0;
}

/* === TEMPORARY NOTIFICATION === */
.temp-notification {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.05));
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.temp-notification-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.temp-notification-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
  margin: 0 0 0.5rem 0;
}

.temp-notification-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .construction-banner {
    padding: 12px 15px;
  }

  .construction-icon {
    font-size: 20px;
  }

  .construction-text {
    font-size: 13px;
  }

  .footer-disclaimer {
    padding: 1rem 5%;
    font-size: 0.8rem;
  }

  .temp-notification {
    flex-direction: column;
    gap: 0.5rem;
  }

  .temp-notification-icon {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .construction-content {
    gap: 10px;
  }

  .construction-text {
    font-size: 12px;
    min-width: 100px;
  }

  .construction-icon {
    font-size: 18px;
  }

  .footer-disclaimer {
    padding: 0.8rem 3%;
    font-size: 0.75rem;
  }

  .temp-notification {
    padding: 1rem;
  }

  .temp-notification-icon {
    font-size: 1.2rem;
  }
}
