
body {
  min-width: 320px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  color: #000;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  background-color: #222;
  padding: 24px 0;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0, 0, 0, 0); 
  white-space: nowrap; 
  border: 0;
}
.container {
  width: 90%;
  max-width: 1280;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  max-width: 100%;
  display: block;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-image: url('hero-sndwchs.jpg');
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.1); /* softened */
  z-index: 1;
}

.hero .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1em;
  height: 100%; /* this fixes vertical centering */
  z-index: 2;
  position: relative;
}

.hero-text-bg {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1em 1.5em;
  border-radius: 12px;
  display: block;
  max-width: 90%;
  margin: 0 auto;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.pickup {
  text-align: center;
  padding: 40px 20px;
}

footer {
  background-color: #222;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

footer .container {
  flex-direction: column;
}

footer a {
  color: #a9d6ff;
  text-decoration: none;
  margin: 0 10px;
}

footer .social a {
  margin: 0 10px;
  color: #a9d6ff;
}

footer .social a:hover {
  color: #fff;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  nav ul {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: 2.2rem;
    padding: 0 10px;
  }

  .pickup h2 {
    font-size: 1.6rem;
    padding: 0 15px;
  }

  .pickup p {
    padding: 0 15px;
    font-size: 1rem;
  }

  footer .container {
    text-align: center;
  }

  footer .address,
  footer .social {
    margin-bottom: 20px;
  }
}

nav .only-icon {
  font-size: 1.2rem;
  margin-right: 7px;
}

nav .nav-label {
  display: inline;
}

@media (max-width: 768px) {
  nav .nav-label {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-text-bg {
    padding: 1em;
    max-width: 95%;
    margin: 0 auto;
  }
}
@media (max-width: 540px) {
  header .container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
  }

  .logo {
    margin: 0 auto 20px auto;
    display: block;
  }
}
