/* Reset default margins and padding */
body,
html {
  margin: 0;
  padding: 0;
}

/* Container for the form */
.container-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: black;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

/* Form rows */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  margin-top: 10px;
}

/* Form groups within a row */
.form-group {
  flex: 1; /* Each group takes equal width */
  margin-right: 10px;
  margin-bottom: 10px; /* Space between form groups */
}

/* Label styles */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Input fields and textareas */
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='number'],
input[type='date'],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Travel Dates section */
.travel-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.travel-dates > * {
  margin-right: 10px; /* Space between date inputs */
}

/* Preferences  */
.Preferences {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Four equal columns */
  gap: 10px; /* Spacing between items */
}

label {
  display: block; /* Each checkbox label as a block element */
}

/* Preferred Accommodations section */
.accommodations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal-width columns */
  gap: 10px; /* Space between items */
}

.accommodations-grid label {
  display: block; /* Each label on a new line */
}

/* Submit button */
button {
  background-color: #007bff;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* Responsive Styles for Mobile Devices */
@media (max-width: 600px) {
  .form-group {
    flex: 0 0 100%; /* Full width for each form group on small screens */
    margin-right: 0; /* No margin between form groups */
    margin-bottom: 10px; /* Space between rows */
  }

  .travel-dates > * {
    margin-right: 0; /* Remove margin between date inputs on small screens */
    margin-bottom: 10px; /* Space between date inputs */
  }

  .accommodations label {
    width: 100%; /* Two checkboxes per row on small screens */
    margin-right: 0; /* No margin between checkboxes */
    margin-bottom: 10px; /* Space between checkboxes */
  }

  .Preferences label {
    width: 100%; /* Two checkboxes per row on small screens */
    margin-right: 0; /* No margin between checkboxes */
    margin-bottom: 10px; /* Space between checkboxes */
  }
}

/* contact us page contact form css */

.container-form-1 {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: black;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.destination-image {
  padding-top: 100px;
}

/* Style for the hint */

/* Optional: Styling for the textarea */
/* Style for the textarea */
textarea {
  width: 100%; /* Full width of the container */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical; /* Allow vertical resizing */
}

/* Style for the hint-textarea */
.hint-textarea::placeholder {
  font-style: italic;
  color: #999;
  font-size: 14px;
}

.my-tooltip {
  background-color: white;
  color: #212121;
  border-radius: 4px;
  border: 1px solid #dde5f8;
  padding: 10px;
  margin: 10px;
  max-width: 150px;
  transition: all 0.3s ease;
}

/* Recommneded places */

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

/* body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: 'open-sans', sans-serif;
  background-color: #000000;
} */

.container-carousel {
  color: #eeff00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

/* .title {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 500;
} */

.description {
  width: 60%;
  text-align: center;
  color: white;
  font-size: 18px;
}

@media (max-width: 767px) {
  .description {
    font-size: 16px;
  }
  .slide {
    display: flex;
  }

  .burger-slider {
    height: 200px;
  }
}

.burger-slider {
  overflow: hidden;
  background-color: rgba(128, 128, 128, 0.3);
  width: 100vw;
  height: 200px;
  position: relative;
}

.burger-slider::after,
.burger-slider::before {
  position: absolute;
  width: 50px;
  height: 100%;
  content: '';
  background: linear-gradient(to right, black 0%, rgba(246, 242, 239, 0) 100%);
}

.burger-slider::before {
  left: 0;
  top: 0;
  z-index: 2;
}

.burger-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider-wrapper {
  height: 100%;
  width: calc(300px * 18);
  display: flex;
  animation: slide 35s linear infinite;
}
.slider-wrapper:hover {
  animation-play-state: paused;
}

.slide {
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slide:has(:hover) > .img-container > .burger-info {
  opacity: 1;
}

.img-container {
  width: 90%;
  height: 80%;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #eeff00;
  padding: 50px 50px;
  border-radius: 5px;
}

.overlay .icon {
  font-size: 20px;
}

.overlay .overlay-text {
  font-size: 20px;
}

.burger-image {
  object-fit: cover;
  width: 300px;
}

.burger-info {
  opacity: 0;
  position: absolute;
  top: 0;
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  transition: all 500ms ease;
}

.burger-title {
  font-weight: 500;
  text-align: center;
}

.burger-description {
  font-size: 12px;
  text-align: center;
}

.add-to-cart {
  width: 100%;
  height: 40px;
  border: none;
  background: #eeff00;
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  text-transform: propercase;
  transition: transform 300ms ease;
  cursor: pointer;
  border-radius: 5px;

  &:hover {
    transform: scale(1.1);
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-300px * 9));
  }
}

.img-container {
  position: relative;
}

.overlay {
  position: absolute;
  bottom: 10px; /* Adjust based on your design */
  left: 10px; /* Adjust based on your design */
  display: flex;
  align-items: center;
}

.overlay .iconzz {
  margin: -30px;
  display: flex;
  align-items: center;
  margin-right: 10px; /* Space between icon and text */
}

.overlay .overlay-iconzz {
  width: 60px;
  height: 50px;
}

.overlay .overlay-text {
  font-size: 18px; /* Adjust font size as needed */
  line-height: 1; /* Align text with icon */
}
