
body {
    margin: 0;
    font-family:cursive;
}
.menu{
    display: flex;
    justify-content: center;
    background-color: rgb(178, 228, 234);
    padding: 15px;
  }
  .menu a {
    margin: 20px;
    text-decoration: none;
    color: rgb(61, 160, 132);
    font-weight: bold;
  }
  .menu a:hover{
    text-decoration: underline;
  }

.hero {
    position: relative;
    background: url(https://as2.ftcdn.net/v2/jpg/01/62/31/43/1000_F_162314313_fPaJDa2yUjE1voUTGukTKitdnkDZhNUC.jpg)no-repeat center center/100%;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 100px ;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
}

.search-bar {
    margin-top: 20px;
}

.search-bar input,
.search-bar select,
.search-bar button {
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    border: none;
}

.search-bar button {
    background-color: rgb(45, 86, 85);
    color: white;
    cursor: pointer;
}

.search-bar input[type="date"],
.search-bar input[type="number"] {
    width: 150px;
}


.packages {
    text-align: center;
    padding: 50px 20px;
}

.packages h2 {
    margin-bottom: 40px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package {
    background-color: #c9e9e9;
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(131, 104, 104, 0.1);
}

.package img {
    max-width: 60%;
    border-radius: 10px;
}

.package h3 {
    margin: 10px 0;
    font-size: 22px;
}

.package p {
    color: #000000;
    font-size: 16px;
}
@media only screen and (max-width: 768px) {
    .container {
      flex-direction: column;
      padding: 10px;
    }
  
    .header {
      font-size: 1.5em;
    }
  
    .menu {
      display: block; 
    }
  
    
    .btn {
      width: 100%; 
    }
  }