:root {
  --max-width: 920px;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.75);
}

* {
  box-sizing: border-box;
}

/* Page background + centering */
body{
  margin: 0;
  min-height: 100vh;

  display: flex;
  justify-content: flex-start; /* not middle */
  align-items: center;         /* keep centered horizontally */
  flex-direction: column;

  padding-top: 70px;           /* controls how high the content sits */

  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("assets/bg.jpg");
  background-size: cover;
  background-position: center;

  color: rgba(255,255,255,0.92);
}



/* Main centered content block */
.wrap{
  width: 100%;
  max-width: 900px;
  padding: 0 22px 60px;
  text-align: center;
}

/* Logo at top */
.logo {
  display: block;
  margin: 0 auto 10px;
  max-width: 600px;
  width: 100%;
  height: auto;
}

.divider{
  width: 260px;                /* line length */
  height: 2px;                 /* line thickness */
  background: rgba(255,255,255,0.85);
  margin: 26px auto 34px;      /* space above + below */
}

.hero{
  margin: 0 auto 26px;
  max-width: 900px;

  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  line-height: 1.08;

  /* responsive size like that example */
  font-size: clamp(26px, 4.2vw, 60px);
}

.copy{
  margin: 0 auto 16px;
  max-width: 820px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Main paragraph text */
.copy {
  margin: 0 auto 18px;
  max-width: 980px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.7;
}

/* Contact block */
.contact {
  margin-top: 28px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

/* Small legal / footer text */
.small {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

a:hover {
  opacity: 0.8;
}

/* If screen height is short, avoid over-centering */
@media (max-height: 700px) {
  body {
    align-items: flex-start;
  }
  .wrap {
    padding-top: 12px;
    padding-bottom: 36px;
  }
}
