* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a1a1a;
  padding: 18px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: lab(86.72% -74.25 42.93);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: lab(86.72% -74.25 42.93);
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: #1a1a1a;
  }
}

.btn {
  background-color: lab(86.72% -74.25 42.93);
  color: #1a1a1a !important;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background-color: #e0a92b;
}



.booking {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.booking h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}




.destinations {
  margin-top: 20px;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.destinations h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #333;
}

.destinations p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0 5px;
  font-size: 20px;
  color: #222;
}

.card p {
  font-size: 14px;
  color: #555;
  padding: 0 15px 20px;
}



.about {
  padding: 70px 20px;
  background: #f5f5f5;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.learn-btn {
  background: #f8c146;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-btn:hover {
  background: #e0a92b;
}

.about-img {
  flex: 1 1 400px;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #333;
}

.contact p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
  justify-content: center;
}

.contact-form {
  flex: 1 1 500px;
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.send-btn {
  background: #f8c146;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background: #e0a92b;
}

.contact-info {
  flex: 1 1 300px;
  text-align: left;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.contact-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }
}
