/* GLOBAL */
html {
  background: url('../images/index.jpg') no-repeat center center;
  background-size: cover;
  min-height: 100%;

  font-family: "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100%;
  margin: 0;
  background: none;
}

/* MAIN */
main {
  text-align: center;
}

.hero {
  margin-top: 220px;
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
  font-family: 'FuturaLT-Light', "Helvetica Neue", Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0.7); /* White background with 60% opacity */
  display: inline-block; /* Ensures the background wraps only the text, not the full screen width */
  padding: 15px 30px; /* Adds space around the text so it doesn't touch the edges */
  border-radius: 8px; /* Optional: Makes the corners slightly rounded */
}

.logo-date {
  font-size: 14px;
  /* Ensure the date also has some space if it's inside the hero block */
  margin-top: 5px; 
  display: block; 
}

/* FOOTER */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 17px 0;
  color: #fff;
  background: rgba(0,0,0,.55);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer a,
.footer a:visited,
.footer a:focus {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.links {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact {
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 767px) {
  .hero {
    margin-top: 100px;
    /* On mobile, you might want slightly less padding */
    padding: 10px 20px; 
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .links {
    justify-content: center;
  }
}