 /* styles.css */

.hero {
  background: url('images/ship.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  height: 400px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content h1 {
  font-size: 1.5rem;
  background-color: darkred;


}
.hero-content p {
  font-size: 1.3rem;
  margin-top: 10px;

}
.search-bar {
  background: #880e4f;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  
  border-bottom: .3rem solid whitesmoke;
}
.search-bar form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
   width: 100%;
   max-width: 1180px;
  justify-content: center;
}
.search-bar input,
.search-bar select {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 25%;
}
.search-bar button {
  padding: 10px 20px;
  background-color: #005b96;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 20%;
}
.search-bar button:hover {
  background-color: #003f6b;
}

.packages {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  margin-top: 1rem;
  background-color: whitesmoke;
  border-radius: .5rem;
  box-shadow: .5rem .5rem #880e4f;
}
.packages h2 {
  text-align: center;
  margin-bottom: 1rem;
  background: darkcyan;
  color: lightcyan;
  box-shadow: .2rem .2rem wheat;

}
.cruise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 20px;
}
.cruise-card {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  padding-bottom: 20px;
}
.cruise-card img {
  width: 100%;
  display: block;
}
.cruise-card h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
}
.cruise-card p {
  margin: 0 10px 15px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #005b96;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}
.btn:hover {
  background: #003f6b;
}
.site-footer {
  background: #f4f4f4;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
.footer-nav a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

