/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/home-bg.webp');
  background-size: cover;
  background-position: center;
  color: var(--text);
  padding: 0 2rem;
  margin-top: 0;
}

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

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content h1{
   font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
  line-height: 1.5;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* About Section */
#about-preview {
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  position: relative;
}

.image-container {
  position: relative;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium);
}

.image-container:hover {
  transform: scale(1.02);
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 12, 9, 0.2);
  transition: background-color var(--transition-medium);
  z-index: 1;
}

.image-container:hover::before {
  background-color: rgba(66, 12, 9, 0.1);
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Section */
#services-preview {
  padding: var(--section-spacing) 0;
  background-color: var(--primary);
  color: var(--text);
}

#services-preview .section-header h2 {
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: rgba(250, 240, 230, 0.05);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: all var(--transition-medium);
  border: 1px solid rgba(250, 240, 230, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: rgba(250, 240, 230, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  margin-bottom: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  height: 50px;
  width: auto;
  filter: invert(83%) sepia(16%) saturate(350%) hue-rotate(348deg) brightness(107%) contrast(92%);
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--accent);
  font-size: 0.95rem;
}

.services-cta {
  text-align: center;
}

/* Top Casino Hotel Section */
#top-casino {
  padding: var(--section-spacing) 0;
  background-color: var(--accent);
}

.top-casino-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.top-casino-image {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.top-casino-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

.top-casino-features {
  flex: 1;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature:last-child {
  margin-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 25px;
  height: 25px;
  filter: invert(83%) sepia(16%) saturate(350%) hue-rotate(348deg) brightness(107%) contrast(92%);
}

.feature-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.top-casino-cta {
  text-align: center;
}

/* Entertainment Section */
#entertainment {
  padding: var(--section-spacing) 0;
  background-color: var(--secondary);
  color: var(--text);
}

#entertainment .section-header h2 {
  color: var(--gold);
}

.entertainment-slider {
  margin-bottom: 3rem;
}

.slider-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--text);
}

.slide-caption h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-slide, .next-slide {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 1rem;
  transition: color var(--transition-fast);
}

.prev-slide:hover, .next-slide:hover {
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent);
  opacity: 0.5;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  opacity: 1;
  background-color: var(--gold);
}

.entertainment-cta {
  text-align: center;
}

/* Dining Experience */
#dining-preview {
  padding: var(--section-spacing) 0;
  background-color: var(--accent);
}

.dining-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.dining-text {
  flex: 1;
}

.dining-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.dining-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Spa & Wellness */
#spa-preview {
  padding: var(--section-spacing) 0;
  background-color: var(--primary);
  color: var(--text);
}

#spa-preview .section-header h2 {
  color: var(--gold);
}

.spa-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.spa-image {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spa-image img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

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

.spa-text {
  flex: 1;
}

.spa-text p {
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.spa-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.spa-feature h4 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.spa-feature p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Booking Section */
#booking {
  padding: var(--section-spacing) 0;
  background-color: var(--accent);
}

.booking-content {
  display: flex;
  gap: 4rem;
}

.booking-info {
  flex: 1;
}

.booking-info h3 {
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  margin-left: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.benefits-list li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.booking-form {
  flex: 1;
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

/* Testimonials */
#testimonials {
  padding: var(--section-spacing) 0;
  background-color: var(--secondary);
  color: var(--text);
}

#testimonials .section-header h2 {
  color: var(--gold);
}

.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.8s ease-out;
}

.testimonial-content {
  background-color: rgba(250, 240, 230, 0.05);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  position: relative;
  border: 1px solid rgba(250, 240, 230, 0.1);
}

.quote {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 4rem;
  font-family: var(--heading-font);
  color: var(--gold);
  opacity: 0.3;
  line-height: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--accent);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid var(--gold);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.author-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.rating {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.prev-testimonial, .next-testimonial {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 1rem;
  transition: color var(--transition-fast);
}

.prev-testimonial:hover, .next-testimonial:hover {
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h2 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.3rem;
  }
  
  .about-content,
  .top-casino-content,
  .dining-content,
  .spa-content,
  .booking-content {
    gap: 3rem;
  }
  
  .slider-container {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .about-content,
  .top-casino-content,
  .dining-content,
  .spa-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .booking-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .dining-gallery {
    grid-template-rows: repeat(2, 180px);
  }
  
  .slider-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .slider-container {
    height: 300px;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  #hero {
    min-height: 500px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .about-image,
  .top-casino-image,
  .spa-image {
    max-width: 100%;
  }
  
  .dining-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  
  .feature {
    align-items: flex-start;
  }
  
  .feature-icon {
    margin-top: 0.25rem;
  }
  
  .slider-container {
    height: 250px;
  }
}