/*
 * UnderConstructionPage
 * CS Dichiu Moroeni - tema personalizata
 * csdmoroeni.ro
 * Culori: Verde #15462b | Galben #ebcd2e
 */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background-color: #080f0a;
  background-image:
    linear-gradient(rgba(21, 70, 43, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 70, 43, 0.35) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ===== PAGE CONTAINER ===== */
.uc-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 16px;
}

/* ===== LOGO ===== */
.uc-logo-wrap {
  margin-bottom: 28px;
  animation: logoIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  filter: drop-shadow(0 0 22px rgba(235, 205, 46, 0.28));
}

.uc-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== BADGE ===== */
.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(235, 205, 46, 0.1);
  border: 1px solid rgba(235, 205, 46, 0.4);
  color: #ebcd2e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.uc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ebcd2e;
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.65); }
}

/* ===== TITLU ===== */
.uc-title {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #f5f5f0;
  margin-bottom: 10px;
}

.uc-title strong,
.uc-title span {
  color: #ebcd2e;
  font-weight: 400;
}

/* ===== SUBTITLE PILL ===== */
.uc-subtitle-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #0a1f13;
  background: #ebcd2e;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== DIVIDER ===== */
.uc-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #15462b, #ebcd2e);
  border-radius: 2px;
  margin: 0 auto 22px;
}

/* ===== CONTENT TEXT ===== */
.uc-content {
  color: #96b8a2;
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 28px;
}

/* ===== PROGRESS BAR ===== */
.uc-progress-wrap {
  width: 100%;
  max-width: 420px;
  margin-bottom: 32px;
}

.uc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #5a8f6a;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.uc-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  overflow: hidden;
}

.uc-progress-fill {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, #15462b 0%, #ebcd2e 100%);
  border-radius: 999px;
  animation: fillIn 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

@keyframes fillIn {
  from { width: 0%; }
  to   { width: 75%; }
}

/* ===== SOCIAL BUTTONS ===== */
.uc-socials {
  display: flex;
  gap: 7px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}

.uc-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(21, 70, 43, 0.45);
  border: 1px solid rgba(21, 70, 43, 0.9);
  color: #b8d9c4;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.uc-social-btn svg {
  flex-shrink: 0;
}

.uc-social-btn:hover {
  background: rgba(235, 205, 46, 0.13);
  border-color: rgba(235, 205, 46, 0.55);
  color: #ebcd2e;
}

/* ===== SLOGAN ===== */
.uc-slogan {
  font-size: 13px;
  font-weight: 700;
  color: #ebcd2e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .uc-title {
    font-size: 38px;
  }

  .uc-socials {
    flex-wrap: wrap;
    gap: 8px;
  }

  .uc-social-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .uc-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 400px) {
  .uc-title {
    font-size: 32px;
  }

  .uc-socials {
    flex-wrap: wrap;
  }
}
