/* JALOQUE Custom CSS */

/* Global Variables */
:root {
  --primary: #14666d;
  --secondary: #0ac1a3;
  --accent: #634940;
  --light-gray: #f1f2f3;
  --mid-gray: #9c9794;
  --teal-light: #6e91a0;
  --teal-mid: #a6becd;
  --gold: #98804a;
  --beige: #c3b79c;
  --white: #ffffff;
  --black: #000000;
}

/* Global Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Alata', sans-serif;
  font-weight: 700;
}

p {
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Utility Classes */
.bg-teal {
  background-color: var(--primary);
}

.bg-light-teal {
  background-color: var(--teal-light);
}

.text-teal {
  color: var(--primary);
}

.btn-teal {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-teal:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.section-title {
  font-family: 'Alata', sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

/* Header / Navigation */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
}

.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar-brand img {
  max-height: 60px;
}

.nav-link {
  color: var(--primary) !important;
  font-weight: 500;
  padding: 0.7rem 1rem !important;
  font-size: 0.95rem;
  position: relative;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.dropdown-item {
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 0.25rem;
}

.dropdown-item:hover {
  background-color: var(--light-gray);
  color: var(--secondary);
}

/* Hero Section */
.hero {
  background-color: var(--primary);
  padding: 4rem 0;
  position: relative;
}

.hero:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}

.min-vh-20{
        min-height: 20vh;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Features Section */
.features {
  margin-bottom: 2rem;
}

.feature-box {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.feature-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.5s ease;
  display: flex;
  align-items: flex-end;
}

.feature-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  z-index: 1;
}

.feature-content:hover {
  transform: scale(1.05);
}

.feature-text {
  position: relative;
  width: 100%;
  color: var(--white);
  padding: 2rem;
  z-index: 2;
}

.feature-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

.experiences .nav-tabs .nav-link {
    color: white !important;
  }
.nav-tabs .nav-link {
    
    font-size: 1.2em;
  }
  .experiences .nav-tabs .nav-link.active {
    background-color: white !important;
    color: black !important;
  }

  .experiences .nav-tabs {
    border-bottom: none;
  }

/* Promotions Section */
.promo-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 100%;
}

.promo-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}


.promo-content {
  padding: 1.5rem;
}

.promo-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.promo-subtitle {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

.promo-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-current {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

h2.price-current{
    font-size: 3em!important;
}

.price-old {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--mid-gray);
}

/* Experiences Section */
.experience-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.experience-content {
  padding: 1.5rem;
}

.experience-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.experience-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

.experience-price {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Corporate Events Section */
.corporate-events {
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
}

.event-content {
  max-width: 500px;
}

.event-content h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.event-content p {
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}

/* Features Grid */
.features-grid h3 {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.features-grid h3:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
}

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

.tagline {
  font-family: 'Alata', sans-serif;
  font-size: 2rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.social-links a:hover {
  color: var(--secondary);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
}

.whatsapp-button a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Additional Sections */
.additional-card {
  transition: all 0.3s ease;
}

.additional-card:hover {
  transform: translateY(-5px);
}

.additional-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
}

.additional-card p {
  color: var(--mid-gray);
}

/* Testimonials */
.testimonial-item {
  background-color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
  font-style: italic;
  color: var(--mid-gray);
}

.testimonial-author {
  color: var(--primary);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Suggested Activities */
.suggested-card {
  transition: all 0.3s ease;
  height: 100%;
}

.suggested-card:hover {
  transform: translateY(-5px);
}

.suggested-title {
  color: var(--primary);
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 1rem;
}

.suggested-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.suggested-desc {
  color: var(--mid-gray);
}

.dropdown-toggle::after{
    content: none!important;
}


.pack span{
    font-size: 2em!important;
}


.promo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .promo-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .promo-price,
  .btn-teal {
    margin-top: auto;
  }
  
  
/* Media Queries */
@media (max-width: 992px) {
  .feature-box {
    height: 300px;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
}

@media (max-width: 768px) {
  .feature-box {
    height: 250px;
  }

  .feature-text h2 {
    font-size: 1.5rem;
  }

  .feature-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .feature-box {
    height: 200px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .feature-text h2 {
    font-size: 1.3rem;
  }

  .feature-text p {
    font-size: 0.9rem;
  }
}
