/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.riolasvegas.com/_next/image?url=https%3A%2F%2Friolv.wpengine.com%2Fwp-content%2Fuploads%2F2024%2F04%2FPool-Image-Horizontal-for-Expedia-Lightened-Up-1800x1200.png&w=1920&q=75');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1.5s ease-out;
}

.hero h1 {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

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

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.about-text .btn {
  margin-top: 10px;
}

/* Experience Section */
.experience-section {
  padding: 80px 0;
  background-color: var(--bg-off-white);
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.experience-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.experience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.experience-card p {
  color: var(--text-muted);
}

/* Destinations Section */
.destinations-section {
  padding: 80px 0;
}

.destination-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.destination-slider::-webkit-scrollbar {
  display: none;
}

.destination-card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed);
}

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

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--text-light);
  transform: translateY(0);
  transition: transform var(--transition-speed);
}

.destination-card:hover .destination-info {
  transform: translateY(-10px);
}

.destination-info h3 {
  color: var(--text-light);
  margin-bottom: 5px;
}

.destination-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.destination-link {
  color: var(--accent-color);
  font-weight: 600;
  transition: color var(--transition-speed);
  display: inline-flex;
  align-items: center;
}

.destination-link i {
  margin-left: 5px;
  transition: transform var(--transition-speed);
}

.destination-link:hover {
  color: var(--text-light);
}

.destination-link:hover i {
  transform: translateX(5px);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--accent-color);
}

/* Hotels Section */
.hotels-section {
  padding: 80px 0;
  background-color: var(--bg-off-white);
}

.hotel-card {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hotel-card.reverse {
  flex-direction: row-reverse;
}

.hotel-image {
  flex: 1 1 400px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-info {
  flex: 1 1 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hotel-location {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 15px;
}

.hotel-rating {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1rem;
}

.hotel-info p {
  margin-bottom: 25px;
  color: var(--text-color);
}

.hotel-info .btn {
  align-self: flex-start;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-content,
  .hotel-card,
  .hotel-card.reverse {
    flex-direction: column;
  }
  
  .hotel-image,
  .hotel-info {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .experience-card {
    padding: 20px;
  }
  
  .destination-card {
    flex: 0 0 85%;
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 500px;
  }
  
  .about-section,
  .experience-section,
  .destinations-section,
  .hotels-section {
    padding: 60px 0;
  }
  
  .hotel-info {
    padding: 30px 20px;
  }
  
  .hotel-name {
    font-size: 1.5rem;
  }
}