/**
 * GF Site Maintenance page — standalone styles (no Tailwind build required).
 */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Poppins/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Poppins/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Poppins/poppins-v24-latin-700.woff2') format('woff2');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body.gf-maintenance {
  font-family:
    'Poppins',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #171717;
  background-color: #f0f0f0;
}

.gf-maintenance__main {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.gf-maintenance__panel {
  width: 100%;
  max-width: 48rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 8%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.gf-maintenance__logo img {
  display: inline-block;
  width: 100%;
  max-width: 175px;
  height: auto;
  margin-bottom: 2.75rem;
}

.gf-maintenance__headline {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  color: #2b2b2b;
}

.gf-maintenance__headline p {
  margin: 0;
}

.gf-maintenance__message,
.gf-maintenance__richtext {
  margin: 0;
  font-size: 19px;
  color: #2b2b2b;
}

.gf-maintenance__richtext > :first-child {
  margin-top: 0;
}

.gf-maintenance__richtext > :last-child {
  margin-bottom: 0;
}

.gf-maintenance__richtext p {
  margin: 0 0 0.75rem;
  text-wrap: pretty;
}

.gf-maintenance__richtext a {
  font-weight: 700;
  color: #ff6012;
}

.gf-maintenance__links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 19px;
}

.gf-maintenance__links-item + .gf-maintenance__links-item {
  margin-top: 0.75rem;
}

.gf-maintenance__link {
  font-weight: 700;
  color: #ff6012;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.gf-maintenance__link:hover,
.gf-maintenance__link:focus {
  color: #e55510;
}

.gf-maintenance__link:focus {
  outline: 2px solid #171717;
  outline-offset: 2px;
}

@media (min-width: 48rem) {
  .gf-maintenance__panel {
    padding: 3rem 2.5rem;
  }
}
