/* Components Styles */

/* Navigation Toggle for Mobile */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

/* Accommodations Section */
.accommodations-section {
  padding: var(--space-xxl) var(--space-lg);
  background-color: var(--dark-jungle);
  color: var(--misty-gray);
}

.accommodations-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--tribal-gold);
  margin-bottom: var(--space-xl);
}

.accommodations-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.accommodation-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  position: relative;
}

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

.accommodation-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

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

.canopy-lodge {
  background-image: url("https://images.pexels.com/photos/9400978/pexels-photo-9400978.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.casino-retreat {
  background-image: url("https://images.pexels.com/photos/18041018/pexels-photo-18041018/free-photo-of-las-vegas-illuminated-at-dusk.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.rainforest-villas {
  background-image: url("https://images.pexels.com/photos/1458457/pexels-photo-1458457.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.accommodation-content {
  padding: var(--space-md);
}

.accommodation-content h3 {
  color: var(--tribal-gold);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.accommodation-content p {
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.view-details {
  display: inline-block;
  color: var(--tribal-gold);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.view-details::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--tribal-gold);
  transition: width 0.3s ease;
}

.view-details:hover::after {
  width: 100%;
}

/* Gallery Section */
.gallery-section {
  padding: var(--space-xxl) var(--space-lg);
  background-color: var(--cream);
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--jungle-green);
  margin-bottom: var(--space-xl);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto var(--space-xl);
}

.gallery-item {
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.gallery-1 {
  background-image: url("https://images.pexels.com/photos/1134176/pexels-photo-1134176.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.gallery-2 {
  background-image: url("https://images.pexels.com/photos/2373201/pexels-photo-2373201.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.gallery-3 {
  background-image: url("https://images.pexels.com/photos/1051077/pexels-photo-1051077.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.gallery-4 {
  background-image: url("https://images.pexels.com/photos/53464/sheraton-palace-hotel-lobby-architecture-san-francisco-53464.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

/* Testimonials */
.testimonials {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h3 {
  font-size: 2rem;
  color: var(--jungle-green);
  margin-bottom: var(--space-lg);
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.testimonial {
  flex: 1 1 400px;
  max-width: 450px;
  padding: var(--space-lg);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.guest-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: -60px auto var(--space-md);
  border: 4px solid white;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.avatar-1 {
  background-image: url("https://images.pexels.com/photos/733872/pexels-photo-733872.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.avatar-2 {
  background-image: url("https://images.pexels.com/photos/220453/pexels-photo-220453.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.testimonial blockquote {
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--deep-brown);
  line-height: 1.6;
}

.testimonial cite {
  font-weight: 600;
  color: var(--jungle-green);
}

/* Services Section */
.services-section {
  padding: var(--space-xxl) var(--space-lg);
  background-color: var(--cream);
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--jungle-green);
  margin-bottom: var(--space-xl);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.service-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.outdoor-roulette {
  background-image: url("https://img.freepik.com/free-photo/man-croupier-woman-playing-roulette-table-casino-top-view-roulette-green-table-with-tape-measure_639032-2638.jpg?semt=ais_hybrid&w=740");
}

.bamboo-poker {
  background-image: url("https://i.pinimg.com/736x/83/be/41/83be41ec496fd1fe785714d142ed7453.jpg");
}

.jungle-slots {
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRyxH-AJloNt09ZdLg-P1gw-KLot-accsQF2w&s");
}

.service-content {
  padding: var(--space-md);
}

.service-content h3 {
  color: var(--jungle-green);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.service-content p {
  color: var(--deep-brown);
  line-height: 1.6;
}

/* Footer */
.jungle-footer {
  background-color: var(--earth-brown);
  color: var(--misty-gray);
  position: relative;
}

.footer-top-border {
  height: 8px;
  background: linear-gradient(to right, var(--jungle-green), var(--tribal-gold), var(--jungle-green));
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left h2 {
  font-size: 2rem;
  color: var(--tribal-gold);
  margin-bottom: var(--space-sm);
}

.footer-left p {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--tribal-gold);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.social-icon:hover {
  background-color: var(--tribal-gold);
  transform: translateY(-3px);
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.facebook::before {
  content: 'f';
  font-size: 20px;
  font-weight: bold;
}

.instagram::before {
  content: 'i';
  font-size: 20px;
  font-weight: bold;
}

.twitter::before {
  content: 't';
  font-size: 20px;
  font-weight: bold;
}

.youtube::before {
  content: 'y';
  font-size: 20px;
  font-weight: bold;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  opacity: 0.7;
}