:root {
  --primary-green: #1F3D2B;
  --soft-green: #6BAF92;
  --earthy-brown: #7A5C3E;
  --warm-beige: #F5F1E8;
  --soft-gold: #C2A36B;
}

html, body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--warm-beige);
  color: var(--primary-green);
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

#root {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: 'Playfair Display', serif;
}

/* Glassmorphism Classes */
.glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 61, 43, 0.1);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 61, 43, 0.2);
}

.glass-dark {
  background: rgba(31, 61, 43, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--warm-beige);
}

.btn-luxury {
  background-color: var(--soft-gold);
  color: var(--primary-green);
  border: none;
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-luxury:hover {
  background-color: var(--earthy-brown);
  color: var(--warm-beige);
  transform: translateY(-2px);
}

.btn-luxury-outline {
  background-color: transparent;
  color: var(--soft-gold);
  border: 2px solid var(--soft-gold);
  font-weight: 500;
  border-radius: 30px;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

.btn-luxury-outline:hover {
  background-color: var(--soft-gold);
  color: var(--primary-green);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  color: var(--primary-green);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--soft-gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-down {
  transform: translateY(-30px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.9);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

@keyframes sway-side-left {
  0% {
    transform: rotate(-3deg);
  }

  100% {
    transform: rotate(5deg);
  }
}

@keyframes sway-side-right {
  0% {
    transform: rotate(3deg);
  }

  100% {
    transform: rotate(-5deg);
  }
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .display-1 { font-size: 2.5rem; }
  .display-2 { font-size: 2.2rem; }
  .display-3 { font-size: 2rem; }
  .display-4 { font-size: 1.8rem; }
  .display-5 { font-size: 1.6rem; }
  .display-6 { font-size: 1.4rem; }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
  
  p, .lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .glass-card {
    padding: 1.5rem !important;
  }

  .about-image {
    height: 400px;
  }
  
  .nav-logo {
    height: 40px;
  }
  
  .nav-title {
    font-size: 1.4rem;
  }
  
  .bg-accommodation {
    background-image: linear-gradient(rgba(244, 241, 234, 0.85), rgba(244, 241, 234, 0.95)), url('./assets/aesthetics/mobileView03.webp') !important;
  }
  
  .bg-activities {
    background-image: linear-gradient(135deg, rgba(244, 241, 234, 0.9) 0%, rgba(107, 175, 146, 0.8) 100%), url('./assets/aesthetics/mobileView04.webp') !important;
  }
  
  .bg-information {
    background-image: linear-gradient(rgba(244, 241, 234, 0.9), rgba(244, 241, 234, 0.9)), url('./assets/aesthetics/mobileView01.webp') !important;
  }
}

.about-image {
  object-fit: cover;
  height: 600px;
  width: 100%;
}

.nav-logo {
  height: 65px;
}

.nav-title {
  font-size: 2rem; /* equivalent to fs-2 */
}

/* Base Desktop Backgrounds */
.bg-accommodation {
  background: linear-gradient(rgba(244, 241, 234, 0.85), rgba(244, 241, 234, 0.95)), url('./assets/aesthetics/aesthetic_3.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bg-activities {
  background: linear-gradient(135deg, rgba(244, 241, 234, 0.9) 0%, rgba(107, 175, 146, 0.8) 100%), url('./assets/aesthetics/aesthetic_4.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.bg-information {
  background: linear-gradient(rgba(244, 241, 234, 0.9), rgba(244, 241, 234, 0.9)), url('./assets/aesthetics/aesthetic_5.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}


        .hover-icon { transition: all 0.3s ease; }
        .hover-icon:hover { background-color: var(--soft-gold) !important; color: var(--primary-green) !important; transform: translateY(-5px); }
        .footer-link { transition: color 0.3s ease; padding-left: 0; }
        .footer-link:hover { color: var(--soft-gold) !important; padding-left: 8px; opacity: 1 !important; }
      

        .social-btn:hover {
          transform: scale(1.1);
        }

        .insta-pulse {
          animation: pulse-insta 2s infinite;
        }

        .whatsapp-pulse {
          animation: pulse-whatsapp 2s infinite;
        }

        @keyframes pulse-insta {
          0% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(220, 39, 67, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
          }
        }

        @keyframes pulse-whatsapp {
          0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
          }
        }

        @media (max-width: 768px) {
          .floating-socials {
            bottom: 20px !important;
            right: 20px !important;
            gap: 10px !important;
          }
          .social-btn {
            width: 40px !important;
            height: 40px !important;
            font-size: 20px !important;
          }
        }
      

        .rating-box-mobile { padding: 1rem; margin: 1rem; }
        .rating-title-mobile { font-size: 1.5rem; }
        .rating-stars-mobile { font-size: 1rem; }
        .rating-subtitle-mobile { font-size: 0.85rem; margin-top: 0.25rem; }
        
        @media (max-width: 768px) {
          .rating-box-mobile { padding: 0.25rem 0.5rem; margin: 0.25rem; }
          .rating-title-mobile { font-size: 1.25rem; line-height: 1.1; margin-bottom: 0 !important; }
          .rating-stars-mobile { font-size: 0.9rem; line-height: 1.2; margin-top: 2px; margin-bottom: 2px; }
          .rating-subtitle-mobile { font-size: 0.85rem; margin-top: 0 !important; line-height: 1.2; }
        }
      

        .hover-zoom:hover { transform: translateY(-10px); box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important; }
      

                  .hover-zoom:hover { transform: translateY(-10px); box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important; }
                

        /* Indicator animations */
        .carousel-indicators .active { opacity: 1 !important; transform: scale(1.3); }
        .carousel-indicators button { transition: all 0.4s ease; border: none; }
        
        /* Premium slow fade transition for carousel items */
        .carousel-fade .carousel-item {
          transition: opacity 1.2s ease-in-out !important;
        }
        
        /* Add a subtle zoom effect during the transition for a cinematic feel */
        .carousel-item {
          transform: scale(0.98);
          transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out !important;
        }
        .carousel-item.active {
          transform: scale(1);
        }
      

        .hover-zoom:hover { transform: translateY(-10px); box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important; }
      

        .hover-icon { transition: all 0.3s ease; }
        .hover-icon:hover { background-color: var(--soft-gold) !important; color: var(--primary-green) !important; transform: translateY(-5px); }
        .footer-link { transition: color 0.3s ease; padding-left: 0; }
        .footer-link:hover { color: var(--soft-gold) !important; padding-left: 8px; opacity: 1 !important; }
      

        .social-btn:hover {
          transform: scale(1.1);
        }

        .insta-pulse {
          animation: pulse-insta 2s infinite;
        }

        .whatsapp-pulse {
          animation: pulse-whatsapp 2s infinite;
        }

        @keyframes pulse-insta {
          0% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(220, 39, 67, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
          }
        }

        @keyframes pulse-whatsapp {
          0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
          }
        }

        @media (max-width: 768px) {
          .floating-socials {
            bottom: 20px !important;
            right: 20px !important;
            gap: 10px !important;
          }
          .social-btn {
            width: 40px !important;
            height: 40px !important;
            font-size: 20px !important;
          }
        }
      

          .virtual-tour-card:hover img { transform: scale(1.1); }
          .virtual-tour-card:hover > div { background: rgba(0,0,0,0.2) !important; }
          .virtual-tour-card .tour-icon-wrapper { transition: all 0.3s ease; }
          .virtual-tour-card:hover .tour-icon-wrapper { background-color: var(--soft-gold) !important; transform: scale(1.1); }
        

        .hover-icon { transition: all 0.3s ease; }
        .hover-icon:hover { background-color: var(--soft-gold) !important; color: var(--primary-green) !important; transform: translateY(-5px); }
        .footer-link { transition: color 0.3s ease; padding-left: 0; }
        .footer-link:hover { color: var(--soft-gold) !important; padding-left: 8px; opacity: 1 !important; }
      

        .social-btn:hover {
          transform: scale(1.1);
        }

        .insta-pulse {
          animation: pulse-insta 2s infinite;
        }

        .whatsapp-pulse {
          animation: pulse-whatsapp 2s infinite;
        }

        @keyframes pulse-insta {
          0% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(220, 39, 67, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
          }
        }

        @keyframes pulse-whatsapp {
          0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
          }
        }

        @media (max-width: 768px) {
          .floating-socials {
            bottom: 20px !important;
            right: 20px !important;
            gap: 10px !important;
          }
          .social-btn {
            width: 40px !important;
            height: 40px !important;
            font-size: 20px !important;
          }
        }
      

          .gallery-item { cursor: pointer; }
          .gallery-img { transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); }
          .gallery-item:hover .gallery-img { transform: scale(1.1); }
        

        .hover-icon { transition: all 0.3s ease; }
        .hover-icon:hover { background-color: var(--soft-gold) !important; color: var(--primary-green) !important; transform: translateY(-5px); }
        .footer-link { transition: color 0.3s ease; padding-left: 0; }
        .footer-link:hover { color: var(--soft-gold) !important; padding-left: 8px; opacity: 1 !important; }
      

        .social-btn:hover {
          transform: scale(1.1);
        }

        .insta-pulse {
          animation: pulse-insta 2s infinite;
        }

        .whatsapp-pulse {
          animation: pulse-whatsapp 2s infinite;
        }

        @keyframes pulse-insta {
          0% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(220, 39, 67, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
          }
        }

        @keyframes pulse-whatsapp {
          0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
          }
        }

        @media (max-width: 768px) {
          .floating-socials {
            bottom: 20px !important;
            right: 20px !important;
            gap: 10px !important;
          }
          .social-btn {
            width: 40px !important;
            height: 40px !important;
            font-size: 20px !important;
          }
        }
      

        .page-header-title { font-size: 4rem; }
        @media (max-width: 768px) {
          .page-header-title { font-size: 2.5rem; }
          .w-sm-auto { width: auto !important; }
        }
        .fade-in {
          animation: fadeIn 0.4s ease-out;
        }
        @keyframes fadeIn {
          from { opacity: 0; transform: translateY(15px); }
          to { opacity: 1; transform: translateY(0); }
        }
        .hover-lift {
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 25px rgba(194, 163, 107, 0.4) !important;
        }
        .file-input-custom::-webkit-file-upload-button {
          background-color: var(--primary-green);
          color: white;
          border: none;
          border-radius: 8px;
          padding: 8px 16px;
          margin-right: 15px;
          cursor: pointer;
          transition: background-color 0.3s;
        }
        .file-input-custom::-webkit-file-upload-button:hover {
          background-color: var(--earthy-brown);
        }
        .form-control::placeholder {
          color: #b6bbbeff !important;
          font-weight: 200 !important;
          opacity: 0.8 !important;
        }
        .form-select:invalid {
          color: #b6bbbeff !important;
          font-weight: 200 !important;
          opacity: 0.8 !important;
        }
        .form-select option {
          color: #212529 !important;
          font-weight: normal !important;
        }
      

        .hover-icon { transition: all 0.3s ease; }
        .hover-icon:hover { background-color: var(--soft-gold) !important; color: var(--primary-green) !important; transform: translateY(-5px); }
        .footer-link { transition: color 0.3s ease; padding-left: 0; }
        .footer-link:hover { color: var(--soft-gold) !important; padding-left: 8px; opacity: 1 !important; }
      

        .social-btn:hover {
          transform: scale(1.1);
        }

        .insta-pulse {
          animation: pulse-insta 2s infinite;
        }

        .whatsapp-pulse {
          animation: pulse-whatsapp 2s infinite;
        }

        @keyframes pulse-insta {
          0% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(220, 39, 67, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
          }
        }

        @keyframes pulse-whatsapp {
          0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
          }
          70% {
            box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
          }
          100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
          }
        }

        @media (max-width: 768px) {
          .floating-socials {
            bottom: 20px !important;
            right: 20px !important;
            gap: 10px !important;
          }
          .social-btn {
            width: 40px !important;
            height: 40px !important;
            font-size: 20px !important;
          }
        }
      