/*
Theme Name: MCS Equipment Coming Soon
Theme URI: https://mcsequipment.com/
Author: Quantum Edge Group
Description: A simple under construction / coming soon landing page for MCS Equipment.
Version: 1.0.1
License: GPL-2.0-or-later
Text Domain: mcs-coming-soon
*/

:root {
  --mcs-navy: #112a38;
  --mcs-blue: #1f8fd1;
  --mcs-light-blue: #b9ecff;
  --mcs-white: #ffffff;
  --mcs-muted: #d7eef8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--mcs-white);
  background: radial-gradient(circle at 50% 35%, rgba(47, 153, 213, 0.48), transparent 34%),
              linear-gradient(135deg, #0b1d28 0%, #18394b 45%, #456678 100%);
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.mcs-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  position: relative;
}

.mcs-card {
  width: min(960px, 100%);
  text-align: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(185, 236, 255, 0.36);
  border-radius: 28px;
  background: rgba(7, 28, 40, 0.52);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.mcs-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(460px, 88%);
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 35px rgba(0,0,0,0.22);
}

.mcs-logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.mcs-kicker {
  margin: 34px 0 10px;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mcs-light-blue);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(28, 159, 228, 0.45);
}

.mcs-subhead {
  margin: 22px auto 0;
  max-width: 720px;
  font-size: clamp(18px, 2.6vw, 25px);
  line-height: 1.45;
  color: var(--mcs-muted);
}

.mcs-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.mcs-services li {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(185, 236, 255, 0.28);
  background: rgba(255,255,255,0.08);
  color: #effaff;
  font-size: 14px;
}


.mcs-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 34px auto 0;
}

.mcs-contact a,
.mcs-contact span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(185, 236, 255, 0.30);
  background: rgba(255,255,255,0.09);
  color: #effaff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.mcs-contact a:hover {
  background: rgba(185, 236, 255, 0.16);
}

.mcs-footer {
  margin-top: 34px;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}

.mcs-footer a {
  color: var(--mcs-light-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(185,236,255,0.45);
}

@media (max-width: 640px) {
  .mcs-card { border-radius: 20px; }
  .mcs-logo-wrap { width: min(340px, 96%); }
  .mcs-services li { width: 100%; }
  .mcs-contact { grid-template-columns: 1fr; }
}
