@import url('https://fonts.googleapis.com/css2?family=Joan&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500&family=Joan&family=Cinzel:wght@400;500&family=Montserrat:wght@300;400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

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

  body {
    margin: 0;
    /* font-family: 'Joan','Arial', sans-serif !important; */
    background-color: rgb(239,239,239) !important;
    color: #1e1e3f !important;
  }

/* Search Container */
.search-container {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: auto;
  max-width: none;
  letter-spacing: 2px !important;
  z-index: 3;
  animation: slideInLeft 0.6s ease-out 0.7s both;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 2px 10px;
  width: 100%;
  max-width: 400px;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Search Input */
.search-input {
  flex: 1;
  border: none !important;
  outline: none;
  padding: 10px 0;
  font-size: 1rem;
  background: transparent !important;
  color: white !important;
  letter-spacing: 1px !important;
}

/* Search Input Placeholder */
.search-input::placeholder {
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.8);
}

/* Search Icon */
.search-icon {
  color: white;
  cursor: pointer;
}

/* Hotel Card Section */
.hotel-card-section {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 12px;
  margin: 60px auto;
  margin-top: 10px !important;
  max-width: 1200px;
}

/* Error Message */
.no-results-message {
  display: none;
  text-align: center;
  padding: 50px;
  margin: 60px auto;
  max-width: 600px;
  background: #f9f5ef;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.no-results-message h3 {
  color: #b09359;
  font-family: 'Joan', serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.no-results-message p {
  color: #555;
  font-family: 'Raleway', serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Hotel Card Wrapper */
.hotel-card-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  background: #f9f5ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Hotel Tag Section */
.hotel-tag-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 25px 40px;
  margin: 40px auto;
  max-width: 1400px;
  background: #f9f5ef;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Individual Tag Button */
.hotel-tag {
  background-color: #CFC5B4;
  color: #333;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect */
.hotel-tag:hover {
  background-color: #b09359;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Active/Clicked effect */
.hotel-tag:active {
  transform: scale(0.96);
}

/* Responsive styles */
@media (max-width: 768px) {
  .hotel-tag-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 14px;
    padding: 15px;
    max-width: 100%;
  }

  .hotel-tag {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
    white-space: normal;
  }
}


@media (max-width: 480px) {
  .hotel-tag-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
    padding: 15px;
    max-width: 100%;
  }

  .hotel-tag {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
    white-space: normal;
  }
}



/* Hotel */
.hotel {
  position: relative;
  flex: 2;
  overflow: hidden;
  min-height: 400px;
  background-color: #f9f5ef;
}

/* Slider Track */
.slider-track {
  display: flex;
  width: 100%;
  background-color: #f9f5ef;
}

/* Slider Track Images */
.slider-track img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  flex: 0 0 100%;
  cursor: pointer;
  background-color: #f9f5ef;
  display: block;
}

.slider-track img.clone {
  pointer-events: none;
}

/* Hotel Button */
.hotel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hotel:hover .hotel-btn {
  opacity: 1;
  pointer-events: auto;
  background: transparent !important;
}

.hotel-btn.prev {
  left: 10px;
}

.hotel-btn.next {
  right: 10px;
}

/* Hotel Card Content */
.hotel-card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Joan', serif;
}

/* Location */
.location {
  color: #b09359;
  font-weight: 500 !important;
  margin-bottom: 5px;
  font-size: 20px;
  cursor: default;
}

/* Hotel Title */
.hotel-title {
  font-size: 30px !important;
  margin: 5px 0 15px;
  font-weight: 500 !important;
  cursor: pointer;
}

/* Hotel Description */
.hotel-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'Raleway', serif !important;
  cursor: default !important;
}

/* Details More */
.details-more {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

/* More Button */
.more-btn {
  background-color: #b09359;
  color: white;
  font-family: 'Raleway', serif !important;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-btn:hover {
  background-color: #8a703e;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .search-container {
    bottom: 20px;
    right: 20px;
    font-family: 'Raleway', serif;
    width: auto;
    max-width: none;
    letter-spacing: 2px !important;
  }

  .search-bar {
    max-width: 280px !important;
    padding: 2px 8px !important;
  }

  .search-input {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .hotel-card-section {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px !important;
  }

  .hotel-card-wrapper {
    flex-direction: column;
    margin: 10px;
    margin-top: 50px !important;
  }

  .hotel {
    min-height: 200px;
  }

  .slider-track img {
    height: 200px;
  }

  .hotel-card-content {
    padding: 15px;
  }

  .hotel-title {
    font-size: 22px;
  }

  .hotel-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .details-more {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .more-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .hotel-btn {
    font-size: 20px;
    padding: 8px 12px;
  }
}