body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  color: #000000;
  z-index: 1000;
 
}

.logo {
  flex: 1; 
}

.logo img {
  max-height: 40px;
  width: auto; 
}

.menu {
  flex: 1; 
  display: flex;
  justify-content: flex-end;
  padding-right: 200px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex; 
}

.menu ul li {
  margin-left: 30px;
}

.menu ul li:first-child {
  margin-left: 0;
}

.menu ul li a {
  color: #000000;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .menu {
    justify-content: 30px; 
    flex: 100%; 
  }

  .menu ul li {
    margin: 0 10px; 
    
  }
}


.hero {
  background-image: url('hero-image.png');
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  text-align: center;
  height: 100vh;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.hero-content h1 {
  font-size: 7rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.search-bar {
  margin-left: 0px;
  margin-right: 30px;
  position: relative;
}

.search-bar input {
  padding: 15px;
  height: 30px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.search-bar input::placeholder {
  font-size: 16px;
}

.search-bar .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0%, 5%);
  padding: 15px;
  border-radius: 50%;
  background-color: red;
  border: none;

}

.search-bar .search-btn img {
  width: 15px;
  height: 15px;
  display: block;
  margin: 0 auto;
  
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: black;
  background-color: white;
  font-size: 1rem;
}

.hero-buttons .view-check-ins {
  background-color: red;
  color: white;
}

.hero-buttons .log-out {
  margin-top: 50px;
  background-color: red;
  color: white;
}

@media screen and (max-width: 768px) {
  .menu ul li {
    margin-left: 10px;
  }

  .hero-content h1 {
    font-size: 5rem;
  }

  .search-bar .search-btn {
    padding: 10px;
  }

  .hero-buttons button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}
