/* ===== RESPONSIVE NAVIGATION ===== */
@media (max-width: 768px) {
  nav ul {
    display: none; /* hide menu on small screens */
  }
  .menu-toggle {
    display: block; /* show hamburger menu */
  }
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  height: 6cm;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ccc;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Call-to-action button inside hero */
.hero-button {
  position: absolute;
  bottom: 18%;       /* vertical positioning */
  left: 67%;         /* horizontal positioning */
  transform: translateX(-50%);
  width: 210px;
  height: 35px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

/* ===== SEARCH FIELD AND AUTOSUGGEST ===== */

/* Focus state of search input */
#search-input:focus {
  border-color: #666;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

/* Dropdown suggestion list */
.suggestions-list {
  position: absolute;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
}
