/*
Theme Name: Mills Fleet Coming Soon
Theme URI: https://example.com/
Author: OpenAI
Description: A single-page coming soon theme for Mills Fleet featuring Government Fleet and Commercial Fleet contact information.
Version: 1.0
Text Domain: mills-fleet-coming-soon
*/

:root {
  --bg: #070a0d;
  --text: #ffffff;
  --muted: #c9d1d8;
  --blue: #178fe5;
  --gold: #f2b33f;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; background: var(--bg); }
body { font-family: Arial, Helvetica, sans-serif; color: var(--text); }

a { color: inherit; text-decoration: none; }

.mf-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #05070a;
}

.mf-hero {
  position: relative;
  min-height: calc(100vh - 132px);
  background-image: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.18)), url('hero.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mf-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.mf-contactbar {
  width: 100%;
  background: rgba(3, 6, 9, .96);
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 36px;
  padding: 24px 6vw 26px;
}

.mf-divider {
  width: 1px;
  height: 68px;
  background: rgba(255,255,255,.35);
}

.mf-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mf-contact.government { justify-content: flex-end; text-align: right; }
.mf-contact.commercial { justify-content: flex-start; text-align: left; }

.mf-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  border: 2px solid currentColor;
}
.government .mf-icon, .government .mf-label { color: var(--blue); }
.commercial .mf-icon, .commercial .mf-label { color: var(--gold); }

.mf-label {
  font-size: 14px;
  letter-spacing: .14em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.mf-phone {
  display: inline-block;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .03em;
}

.mf-phone:hover { opacity: .82; }

@media (max-width: 900px) {
  .mf-hero {
    min-height: 74vh;
    background-position: center top;
  }
  .mf-contactbar {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 24px 28px;
  }
  .mf-divider { width: 100%; height: 1px; }
  .mf-contact,
  .mf-contact.government,
  .mf-contact.commercial {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .mf-hero {
    min-height: 62vh;
    background-size: cover;
    background-position: center center;
  }
  .mf-contact { gap: 12px; }
  .mf-icon { width: 48px; height: 48px; flex-basis: 48px; font-size: 16px; }
  .mf-label { font-size: 12px; }
  .mf-phone { font-size: 25px; }
}
