/* --- Base / reset --- */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
img { max-width: 100%; display: block; }

/* --- Full-screen background image on body --- */
body {
  background:
    #000
    url("https://vegetationassurance.com/images/va_background.png")
    center / cover no-repeat;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* --- Centered hero with responsive logo --- */
.va-hero {
  min-height: 100dvh;              /* robust vh on mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 7.5vw;           /* side padding so logo ≈ 85% width on mobile */
  text-align: center;
  position: relative;
  z-index: 1;
}

/* The logo scales down on small screens and caps on desktop */
.va-logo {
  display: block;
  width: 100%;
  max-width: 720px;   /* comfortable cap */
  height: auto;
  margin: 0 auto;
}

/* --- Footer with black bar --- */
.va-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;                      
  background: #121111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
 letter-spacing: 5px;
  color: #b5b5b5;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

@media (max-width: 768px) {
  .va-logo {
    max-width: 400px;   /* about 45% smaller cap */
  }
}

/* Landscape on small/medium devices only (avoid desktops) */
@media (max-width: 1024px) and (orientation: landscape) {
  .va-logo {
    width: auto;
    max-width: none;
    max-height: 40vh;
    margin: 0 auto;
  }
}

@media (orientation: landscape) and (max-height: 500px) {
  .va-logo {
    max-height: 32vh;
  }
}

/* Phones & small tablets (≤768px, portrait) */
@media (max-width: 768px) and (orientation: portrait) {
  .va-footer {
    height: 40px;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 0 8px;
    white-space: nowrap;
  }
}

/* Small/medium devices in landscape */
@media (max-width: 1024px) and (orientation: landscape) {
  .va-footer {
    height: 40px;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
  }
}
