/* =========================================================
   DONATE PAGE — UNDER CONSTRUCTION
   File name: donate.css
   Put this file in the same folder as styles.css.
   ========================================================= */

.donate-main {
  background: #ffffff;
}

.donate-under-construction {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px 145px;
  background:
    linear-gradient(180deg, rgba(4, 22, 44, 0.88), rgba(4, 22, 44, 0.94)),
    url("assets/under-construction-bg.jpg"),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #04162c, #071d38 58%, #04162c);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.donate-under-construction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.construction-card {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 6vw, 92px) clamp(42px, 5.5vw, 64px);
  text-align: center;
  color: #071d38;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 149, 34, 0.06), transparent 36%),
    #ffffff;
  border: 1px solid rgba(201, 149, 34, 0.42);
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
}

.construction-mark {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
  gap: 20px;
  max-width: 330px;
  margin: 0 auto 32px;
  color: #c99522;
}

.construction-mark span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 149, 34, 0.7));
}

.construction-mark span:last-child {
  background: linear-gradient(90deg, rgba(201, 149, 34, 0.7), transparent);
}

.construction-mark svg {
  width: 54px;
  height: 54px;
  stroke: #c99522;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.construction-card h1 {
  margin: 0;
  color: #071d38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.2vw, 72px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.construction-subtitle {
  margin: 18px 0 0;
  color: #c99522;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.8vw, 34px);
  line-height: 1.25;
}

.construction-divider {
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  align-items: center;
  gap: 18px;
  width: min(470px, 100%);
  margin: 34px auto 32px;
}

.construction-divider span {
  display: block;
  height: 1px;
  background: rgba(7, 29, 56, 0.18);
}

.construction-divider i {
  display: block;
  width: 8px;
  height: 8px;
  background: #c99522;
  border-radius: 999px;
}

.construction-copy {
  max-width: 580px;
  margin: 0 auto;
  color: #1f2c3f;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.construction-copy strong {
  color: #071d38;
  font-weight: 900;
}

.construction-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 44px;
}

.construction-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.construction-button:hover,
.construction-button:focus-visible {
  transform: translateY(-2px);
}

.construction-button-primary {
  color: #ffffff;
  background: #071d38;
  box-shadow: 0 14px 28px rgba(7, 29, 56, 0.2);
}

.construction-button-primary:hover,
.construction-button-primary:focus-visible {
  background: #04162c;
}

.construction-button-outline {
  color: #071d38;
  background: #ffffff;
  border: 2px solid #071d38;
}

.construction-button-outline:hover,
.construction-button-outline:focus-visible {
  color: #ffffff;
  background: #071d38;
}

.construction-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 136px;
  pointer-events: none;
}

.construction-curve svg {
  width: 100%;
  height: 100%;
}

.construction-curve-gold {
  fill: #c99522;
}

.construction-curve-white {
  fill: #ffffff;
}

/* Launch notification strip above footer */

.launch-notify {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 44px clamp(24px, 8vw, 110px) 54px;
  background: #ffffff;
}

.launch-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.launch-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  color: #c99522;
  background: #071d38;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(7, 29, 56, 0.14);
}

.launch-icon svg {
  width: 38px;
  height: 38px;
  stroke: #c99522;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.launch-copy h2 {
  margin: 0;
  color: #071d38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 500;
}

.launch-copy p {
  margin: 4px 0 0;
  color: #c99522;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
}

.launch-form {
  display: grid;
  grid-template-columns: 1fr 150px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  border: 1px solid rgba(7, 29, 56, 0.14);
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 29, 56, 0.06);
}

.launch-form input,
.launch-form button {
  min-height: 56px;
  border: 0;
  font: inherit;
}

.launch-form input {
  min-width: 0;
  padding: 0 24px;
  color: #101827;
  background: #ffffff;
  outline: none;
}

.launch-form input:focus {
  box-shadow: inset 0 0 0 3px rgba(201, 149, 34, 0.22);
}

.launch-form button {
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #d8aa3b, #c99522);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.launch-form button:hover,
.launch-form button:focus-visible {
  background: #071d38;
}

/* Responsive */

@media (max-width: 820px) {
  .donate-under-construction {
    min-height: 680px;
    padding: 74px 18px 120px;
  }

  .construction-card {
    border-radius: 12px;
  }

  .construction-actions {
    gap: 14px;
  }

  .construction-button {
    width: 100%;
    min-width: 0;
  }

  .launch-notify {
    grid-template-columns: 1fr;
    padding: 38px 24px 46px;
  }

  .launch-form {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .construction-card {
    padding: 38px 22px 34px;
  }

  .construction-mark {
    grid-template-columns: 1fr 46px 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }

  .construction-mark svg {
    width: 46px;
    height: 46px;
  }

  .construction-card h1 {
    font-size: 42px;
  }

  .construction-subtitle {
    font-size: 22px;
  }

  .construction-divider {
    margin: 28px auto 24px;
  }

  .launch-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .launch-form {
    grid-template-columns: 1fr;
  }

  .launch-form button {
    min-height: 52px;
  }
}
