@import url('https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap');

/* General Styles */
body {
  font-family: "New Amsterdam", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  background: #921A40;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600; /* Orange */
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.btn:hover {
  background-color: #cc5200; /* Darker Orange */
}

/* Hero Section */
.hero-section {
  background-image: url('/tourist-location-img/Thar-desert.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 58px;
  margin-bottom: 20px;
}

.cta-buttons .btn {
  margin: 10px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: slateblue; /* Black */
  padding: 10px 20px;
  position: sticky;
  top: 5px;
  padding-bottom:5px;
  z-index: 1000;
  border-radius: 10px;
}

.navbar .logo {
  color: #ff6600; /* Orange */
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff6600; /* Orange */
}

/* Featured Hotels */
.featured-hotels {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
}

.featured-hotels h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6600; /* Orange */
}

.hotel-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hotel-card {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.hotel-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.hotel-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hotel-card p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #666;
}

/* More Hotels Button */
.more-hotels-btn {
  text-align: center;
  margin-top: 20px;
}

.more-hotels-btn .btn {
  background-color: #ff6600; /* Orange */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.more-hotels-btn .btn:hover {
  background-color: #cc5200; /* Darker Orange */
}


/* Popular Destinations Section */
.popular-destinations {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.popular-destinations h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ff6600; /* Orange */
}

.destination-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.destination-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  margin-bottom: 20px;
}

.destination-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.destination-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.destination-card p {
  font-size: 16px;
  margin-bottom: 15px;
}

.destination-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.destination-card .btn:hover {
  background-color: #e65c00;
}

.more-hotels-btn {
  margin-top: 20px;
}

.more-hotels-btn .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: orangered;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.more-hotels-btn .btn:hover {
  background-color: orange;
}

/* Car Rental Services */
.car-rental-services {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.car-rental-services h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff6600; /* Orange */
}

.car-rental-services p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

.car-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.car-item {
  width: 280px;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.car-item img {
  width: 250px;
  height: 180px;
  transition: transform 0.3s ease;
}

.car-item:hover img {
  transform: scale(1.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 400px;
  border-radius: 10px;
  text-align: center;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ff6600; /* Orange */
}

.modal-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #666;
}

/* Book Now Button in Modal */
.modal-content .btn {
  background-color: #ff6600; /* Orange */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.modal-content .btn:hover {
  background-color: #cc5200; /* Darker Orange */
}
/* Footer */
.footer {
  padding: 20px;
  background-color: #333;
  color: white;
  text-align: center;
}

.footer .container {
  max-width: 800px;
  margin: 0 auto;
}

.footer p {
  margin-bottom: 10px;
}

.footer .social-icons {
  margin-top: 10px;
}

.footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.footer .social-icons a:hover {
  color: #ff6600; /* Orange color on hover */
}




.new-amsterdam-regular {
  font-family: "New Amsterdam", sans-serif;
  font-weight: 400;
  font-style: normal;
}







/* About Us Section */
.about-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.about-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 36px;
  color: #ff6600; /* Orange */
  margin-bottom: 20px;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.about-section .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
}

.about-section .btn:hover {
  background-color: #e65c00;
}





/* Contact Us Section */
.contact-section {
  background-color: slateblue;
  color: white;
  padding: 60px 20px;
  position: relative;
  text-align: center;
  border-radius: 10px;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFF5E4;
  background-repeat: repeat-x;
  z-index: 1;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: slateblue;
  background-repeat: repeat-x;
  z-index: 1;
}

.contact-section .container {
  max-width: 600px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  border-radius: 10px;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
}

.contact-form label {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
}

.checkbox-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 5px;
}

.checkbox-group label {
  font-size: 18px;
  cursor: pointer;
}

.contact-form .btn {
  padding: 10px 20px;
  background-color: white;
  color: slateblue;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.contact-form .btn:hover {
  background-color: #fff1f0;
}
