/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  font-family: "Roboto", Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 20px 40px;
}

.header-left .logo {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.header-right nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.header-right nav ul li {
  margin-left: 20px;
}

.header-right nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.header-right nav ul li a:hover {
  color: #ff6347;
}

/* Destinations Section */
.destinations {
  padding: 40px 20px;
  text-align: center;
}

.destinations h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* Card Section */
.cards-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 30%;
  width: 100%;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.card-title {
  font-size: 24px;
  margin: 15px 0;
}

.card-text {
  font-size: 16px;
  color: #666;
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .header-right nav ul {
    flex-direction: column;
  }

  .header-right nav ul li {
    margin-left: 0;
    margin-top: 10px;
  }

  .cards-section {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 90%; /* Increased max-width for better view on smaller screens */
    margin-bottom: 20px;
  }
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.page_open{
  text-decoration: none;
  color: black;
}
