* {
  margin: 0px;
  padding: 0px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial,
    Noto Sans, Apple Color Emoji, Segoe UI Emoji, sans-serif;
  box-sizing: border-box;
}
.container {
  background-color: #f7f7f7;
  height: 310px;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
}

#search-icon {
  margin-left: 10px;
}
.nav-list {
  list-style: none;
  display: flex;
}

.nav-list a {
  text-decoration: none;
  color: black;
  padding: 18px;
}

.nav-list a:hover {
  background-color: #ededed;
}

.save {
  padding-left: 30px;
  padding-top: 40px;
  margin-left: 230px;
}
.search-bar form {
  display: flex;
  align-items: center;
  margin: auto;
  margin-top: 40px;
  width: 1000px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

.search-bar input {
  display: flex;
  justify-content: space-between;
  border: none;
  outline: none;
}

#search-icon {
  color: black;
}

#search,
#date,
#guest,
#submit {
  border: none;
  background: none;
  display: flex;
  padding: 20px 20px;
  border-left: 1px solid #ccc;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}
#search {
  width: 360px;
  border: none;
  outline: none;
}

#date {
  display: flex;
  width: 240px;
}

#guest {
  display: flex;
  width: 250px;
}

#submit {
  background-color: #0078e7;
  font-weight: bold;
  color: white;
  border-radius: 8px;
  padding: 12px 30px;
  width: 110px;
  border: none;
  cursor: pointer;
}

#search:hover,
#date:hover,
#guest:hover {
  background-color: #ededed;
  border-radius: 12px;
}

#submit:hover {
  background-color: #005bb5;
}

#search:focus,
#date:focus,
#guest:focus {
  border: #0177bb solid 2.5px;
  border-radius: 12px;
}
#submit:focus {
  border: #005bb5 solid 2.5px;
  border-radius: 12px;
}

.partners {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  list-style: none;
  text-decoration: none;
}

#more-deals {
  text-decoration: none;
}

.bg {
  max-width: 1000px;
  height: 500px;
  margin: auto;
  padding-top: 20px;
}

.bg-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  gap: 20px;
  padding: 0px 10px;
  flex-wrap: wrap;
}

#more-deals {
  color: #0078e7;
  font-weight: 700;
  font-size: 14px;
}

#more-deals:hover {
  color: #0c4363;
}

/* cards */

.card {
  border: 1px solid #ccc;
  width: 280px;
  height: 400px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease;
}
.card:hover {
  border: 1px solid #000;
}

.card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}
.card-img img:hover {
  transform: scale(1.1);
  filter: brightness(70%);
}
.card-content li {
  list-style: none;
  display: flex;
  align-items: center;
}

#head {
  padding-left: 5px;
}

.rating {
  display: flex;
  justify-content: space-around;
}

#dis {
  background-color: #b4183a;
  display: flex;
  margin-top: 23px;
  margin-left: 55px;
  margin-right: 55px;
  justify-content: center;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px;
  border-radius: 4px;
  position: relative;
  z-index: 4;
}

.border {
  border: 1px solid #444;
  border-radius: 10px;
  height: 130px;
  width: 90%;
  padding: 10px;
  padding-top: 15px;
  margin: 12px;
  transform: translate(0, -23px);
}

.border:hover {
  background-color: #ebebeb;
}
.breakfast {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 400;
}

.border li {
  list-style: none;
}

.border ul {
  display: flex;
  justify-content: space-between;
}

#deal {
  margin: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 70px;
  padding-right: 70px;
  font-weight: 600;
  background-color: #0078e7;
  color: white;
  border: none;
  border-radius: 8px;
  text-align: center;
}

#deal:hover {
  background-color: #005bb5;
  cursor: pointer;
}
