/* Global Styles */
body {
  background-color: #060b1f;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
}

/* Navigation */
.navigation {
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  width: 50px;
  height: 50px;
}

.navlinks {
  display: flex;
  gap: 16px;
}

.navlinks > a {
  color: white;
  text-decoration: none;
  margin: 0 16px;
  font-size: 18px;
}

.navlinks > a:hover {
  color: #850885;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  object-fit: cover;
  margin-top: 1cm;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 70px;
}

.hero-content h1 {
  font-size: 40px;
  margin: 0;
}

.hero-content p {
  font-family: "Times New Roman", Times, serif;
  font-size: 25px;
  color: rgb(10, 10, 10);
}

.hero-content button {
  background-color: #850885;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
}

.hero-content button:hover {
  background-color: #a52;
}

/* Search Section */
.search {
  margin: 20px auto;
  width: 80%;
  display: flex;
  justify-content: center;
}

.search > input {
  width: 80%;
  padding: 10px;
  border-radius: 9999px;
  font-size: 16px;
}

.search > button {
  padding: 10px 20px;
  border-radius: 9999px;
  background-color: #850885;
  font-size: 15px;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 10px;
}

.search > button:hover {
  background-color: #a52;
}

/* Destinations Section */
.destination {
  width: 70%;
  margin: 40px auto;
}

h1 {
  font-size: 30px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  margin-bottom: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.column {
  flex: 1;
  max-width: 25%;
  padding: 4px;
}

.column > img {
  width: 100%;
  vertical-align: middle;
  border-radius: 10px;
  margin-top: 10px;
}

/* Header for Booking Section */
header {
  background-color: #060b1f;
  color: white;
  text-align: center;
  padding: 0.5rem;
  margin-top: 50px;
}

header h1 {
  font-size: 30px;
}

/* Booking Cards Section */
.booking-cards {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: auto;
  margin-top: 50px;
}

/* Individual Card Styles */
.card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card > img {
  width: 100%;
  height: 100%; /* Set a fixed height */
  object-fit: cover; /* Ensures the image covers the entire space */
  display: block;
}


.card-content {
  padding: 1rem;
  text-align: center;
}

.card-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 24px;
}

.card-content > p {
  margin: 8px 0;
  font-size: 18px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4CAF50;
}

.card-content > button {
  margin: 8px 0;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  color: white;
  background-color: #850885;
  cursor: pointer;
  border-radius: 9999px;
}

.card-content > button:hover {
  background-color: #a52;
}

/* Footer Section */
footer {
  color: white;
  font-size: 12px;
  text-align: center;
  padding: 20px 0;
}

footer hr {
  border: 1px solid #ddd;
  width: 90%;
  margin: 20px auto;
}