/* ============================================
   AIM GRATING LTD. — Under Construction Page
   Static, no JS. Single stylesheet.
   ============================================ */

:root {
  --yellow: #f2c14e;
  --white: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--white);
  min-height: 100vh;

  /* Swap bg.jpg for the client's real background photo.
     Recommended: 1920x1280+ landscape image, subject matter
     centered or lower-frame so the top stays clear for the logo. */
  background-image:
    linear-gradient(var(--overlay-dark), var(--overlay-dark)),
    url("bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ---------- Header / Wordmark ---------- */

.site-header {
  padding: 40px 24px 20px;
  text-align: center;
}

.logo-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

/* Real h1 kept in the DOM for SEO/semantics, hidden visually since
   the logo image conveys the business name */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ---------- Hero / Main content ---------- */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 60px;
}

.notice h2 {
  color: var(--yellow);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  max-width: 900px;
}

.subhead {
  margin-top: 12px;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

/* ---------- Contact info ---------- */

.contact-info {
  margin-top: 56px;
}

.contact-info address {
  font-style: normal;
  font-size: 19px;
  line-height: 1.6;
}

.address-block {
  margin-bottom: 22px;
}

.address-block .label {
  font-weight: 600;
}

.phone {
  margin-bottom: 22px;
  font-size: 20px;
}

.phone a,
.email-line a {
  color: var(--yellow);
  text-decoration: none;
}

.phone a:hover,
.email-line a:hover {
  text-decoration: underline;
}

.email-line {
  font-size: 19px;
}

.email-line a {
  display: inline-block;
  margin-top: 4px;
  font-size: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Responsive ---------- */

@media (max-width: 480px) {
  .site-header {
    padding: 28px 16px 12px;
  }
  .hero {
    padding: 24px 16px 40px;
  }
  .contact-info {
    margin-top: 40px;
  }
}
