/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #102a43;
  background: #f7fafc;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER – blue band with Aggrecon logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(19, 42, 61); /* Aggrecon background colour */
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  max-width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 1.5rem; /* keep some right padding */
}

@media (max-width: 800px) {
  .header-content {
    justify-content: center;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo aligns left within container */
  padding: 1.6rem 0;          /* vertical padding only */
}

.brand-link {
  display: flex;
  align-items: center;
}

/* Aggrecon logo sizing */
.logo-svg {
  display: block;
  height: 115px;
  width: auto;
}

/* Make wordmark white in the header for contrast */
.site-header .logo-svg text {
  fill: #ffffff !important;
}

/* MAIN / Coming soon */
.coming-soon {
  min-height: calc(100vh - 150px); /* allow for header+footer */
  display: flex;
  align-items: center;
}

.coming-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 2.5rem;
  padding: 3rem 0;
  align-items: center;
}

/* Em logo */
.em-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.em-logo-svg {
  max-width: 100%;
  height: auto;
}

/* Text block */
.coming-text h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #102a43;
}

.coming-text p {
  margin-bottom: 0.6rem;
  color: #52606d;
}

.coming-contact {
  margin-top: 0.8rem;
  font-weight: 500;
}

.coming-contact a {
  color: #2a83d1;
  text-decoration: none;
}

.coming-contact a:hover {
  text-decoration: underline;
}

/* FOOTER */
.site-footer {
  padding: 1.2rem 0 1.8rem;
  background: #ffffff;
  border-top: 1px solid #e1e8f0;
  font-size: 0.9rem;
  color: #627d98;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive tweaks */
@media (max-width: 800px) {
  .coming-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .em-logo-wrap {
    margin-bottom: 1rem;
  }

  .header-content {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .logo-svg {
    height: 68px;
  }

  .coming-text h1 {
    font-size: 1.8rem;
  }
}
