/* Apply Lato font */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 ;
    
}







/* Posicionamiento del dropdown */
.nav-item.dropdown {
  position: relative; /* Permite que el .dropdown-menu se posicione relativo a este contenedor */
}

/* Estilos del menú desplegable */
.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin: 0;
  padding: 0.5rem 0;
  display: none;
  z-index: 9999;
}

/* Muestra el dropdown al hacer hover (opcional, para escritorio) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Estilos para los items del dropdown */
.dropdown-menu .dropdown-item:hover {
  color: #1ac41f;
  background-color: transparent;
}

/* Estilos generales del navbar */
.navbar {
  padding: 0.5rem 0;
  box-shadow: 0 2px 4px rgba(247, 0, 0, 0.1);
  font-size: 18px;
  background-color: transparent;
}

#navbar {
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.navbar-transparent {
  background-color: transparent !important;
}
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 1) !important;
}
.navbar-hidden {
  transform: translateY(-100%);
}


/* Define un contenedor fijo para la marca */
.navbar-brand {
    display: inline-block;
    width: 200px;      /* Tamaño fijo */
    height: 130px;     /* Tamaño fijo */
    overflow: hidden;  /* Evita que la imagen ampliada se salga del contenedor */
  }
  
  /* Aplica un escalado a la imagen dentro del contenedor */
  .navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* O 'cover', según el efecto deseado */
    transform: scale(1.5);  /* Aumenta la imagen un 20% */
    transition: transform 0.3s ease; /* Transición suave (opcional) */
  }
  


/* Consolidación de estilos para los enlaces */
.nav-link {
  position: relative;
  padding: 10px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 400;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1ac41f;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom center;
}

.nav-link:hover {
  color: #1ac41f;
}



.btn-bookhere {
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }

  .btn-bookhere:hover {
    background-color: #3a9a2b !important;
    border-color: #3a9a2b !important;
  }




  .hero {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10px;
}



.hero {
    position: relative;
    width: 100%;
    height: 60vh; /* Full viewport height */
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the section without distortion */
    z-index: -1; /* Places the image behind the content */
    
}



.container-hero {
    position: relative;
    z-index: 1; /* Ensures text and buttons appear above the image */
    text-align: center;
    color: #fff; /* Adjust text color as needed */
}

/* Use DM Serif Display for the title */
.hero h1 {
    font-size: 5rem;
    font-weight: 400;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    word-spacing: 30px;
}

/* Estilo para los botones personalizados */






 /* Button Styling */
 .btn-custom {
    display: inline-block;
    text-align: center;
    display: inline-block;
    padding: 9px 24px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #1ac41f;
    border: 2px solid #1ac41f;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  margin-right: 15px; /* Agrega separación entre los botones */
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #ffffff;
    color: #1ac41f;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-custom {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}
 

/* Custom Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 2rem 0;
}
.footer .footer-logo img {
    width: 100px;
}
.footer .description {
    font-style: italic;
    font-size: 0.9rem;
}
.footer .social-icons a {
    color: #fff;
    margin-right: 10px;
}
.footer .bottom-bar {
    border-top: 1px solid #555;
    padding-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
}
.footer a {
    color: #fff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

.centerlogo {
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center;     /* Centers the image vertically */
    height: 80vh;           /* Makes the container take full viewport height */
}

.custom-container {
    padding-left: 50px; /* Adjust this value to add more or less padding */
}















/* Feature and Amenity styles */
.feature, .amenity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.feature img, .amenity img {
    width: 24px;
    height: 24px;
}














/* Style for WhatsApp floating button */
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border-radius: 50%; /* Circular button */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000; /* Ensure it overlays other elements */
}


.whatsapp-float i {
    font-size: 35px; /* Adjust icon size */
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: scale(1.1); /* Slight zoom effect */
    transition: all 0.3s ease;
}


.whatsapp-float:hover {
    background-color: #128C7E;
}

.whatsapp-float i {
    display: block;
    text-align: center;
}


.ecosdelbosque {
    font-size: 90px;
    font-family: 'DM Serif Display', 'serif';
}









/* Keyword bubbles */
.keyword-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Space between bubbles */
    margin-top: 7px; /* Space above the bubbles */
}

.bubble {
    background-color: #0d620f ; /* Bubble color */
    color: white; /* Text color */
    padding: 5px 10px; /* Reduced padding */
    border-radius: 10px; /* Reduced border radius */
    font-size: 12px; /* Reduced font size */
    text-align: center; /* Center the text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow */
    cursor: pointer; /* Change cursor to pointer */
}







/* Hero section for Blog */
.HeroBlog {
    background: url('../img/banners/puma.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.HeroBlog h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #ffbb00;
}

.card-title-blog {
    font-size: 1.25rem;
    font-weight: bold;
}

.btn-blog {
    background-color: #ffbb00;
    color: white;
    text-transform: uppercase;
    border: none;
    transition: background-color 0.3s;
}

.btn-blog:hover {
    background-color: #ffee00;
}

/*BLOG ENTRIES*/


.Entry1 {
    background: url('../img/blog/nature.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry1 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}

.Entry2 {
    background: url('../img/blog/farmnmedicine.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry2 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}

.Entry3 {
    background: url('../img/blog/guan.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry3 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}

.Entry4 {
    background: url('../img/blog/waterfall.JPG') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry4 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.Entry5 {
    background: url('../img/blog/conservation.JPG') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry5 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.Entry6 {
    background: url('../img/blog/chili.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry6 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.Entry7 {
    background: url('../img/blog/nauyaca.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry7 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.Entry8 {
    background: url('../img/blog/wildlife.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry8 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.Entry9 {
    background: url('../img/blog/arrozconleche.jpg') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry9 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.Entry10 {
    background: url('../img/blog/Passiflora.webp') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.Entry10 h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 6rem;
    color: #f8be00;
}
.blog-entry {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
}


.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: #ffbb00;
}

.content-container {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin-top: -50px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.content-container p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.content-container ul {
    list-style-type: none;
    padding-left: 20px;
}

.content-container ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.content-container strong {
    font-weight: bold;
    color: #333;
}

.content-container p, .content-container ul {
    font-family: 'Lato', sans-serif;
}

/* Optional - Add some spacing around the content */
.content-container p, .content-container ul {
    margin-top: 15px;
}

/* Add responsiveness for smaller devices */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .content-container {
        padding: 15px;
    }
}



































  .card-container {
    width: 18rem;
    height: 25rem;
    position: relative;
    margin: 10px 10px 10px 10px; /* Top, Right, Bottom, Left */
}


.card {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transform-style: preserve-3d;
}
.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the card */
    border-radius: 8px;
}
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.card-back {
    background-color: #f8f9fa;
}

/* Hover message */
.hover-message {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-front:hover .hover-message {
    opacity: 1;
}




/* Smooth Transition for Slide Number */
.slide-number {
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s ease-in-out; /* Smooth fade-in and fade-out */
}

/* When the carousel item is active, show the slide number */
.carousel-item.active .slide-number {
    opacity: 1; /* Fully visible */
}











.letter-content {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for the text */
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    text-align: justify;
}

.letter-content p {
    margin: 20px 0;
}

.letter-content p:last-child {
    font-style: italic;
    text-align: center;
}

.letter-content strong {
    font-size: 20px;
}



/* Apply changes specifically to the carousel with id 'gallerycarousel' */
/* Default styles for the carousel controls */
#gallerycarousel .carousel-control-prev,
#gallerycarousel .carousel-control-next {
    width: 10%;  /* Default width */
    padding: 15px; /* Default padding */
}

#gallerycarousel .carousel-control-prev-icon,
#gallerycarousel .carousel-control-next-icon {
    width: 30px; /* Default icon size */
    height: 30px; /* Default icon size */
}


/* Media Query for extra small screens (up to 400px) */
@media (max-width: 600px) {
    #gallerycarousel .carousel-control-prev,
    #gallerycarousel .carousel-control-next {
        width: 30%;  /* Make the buttons even larger */
        padding: 25px;  /* More padding */
    }
    #gallerycarousel .carousel-control-prev-icon,
    #gallerycarousel .carousel-control-next-icon {
        width: 30px;  /* Increase icon size further */
        height: 30px; /* Increase icon size further */
    }
}






#map {
    height: 500px;
}




.btn-hover-effect {
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #1ac41f;
    border: none;
    border-radius: 4px;
    display: inline-block;
    z-index: 1;
}

.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0d620f;
    transition: left 0.4s ease;
    z-index: -1; /* Cambiado a -1 para que quede detrás del texto */
}

.btn-hover-effect:hover::before {
    left: 0;
}

/* Asegurar que el texto esté por encima */
.btn-hover-effect > span {
    position: relative;
    z-index: 2;
}







.filter-controls {
  background-color: #ffffff;      /* Amarillo claro */
  border: 2px solid #000000;      /* Borde amarillo */
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


/* make checkboxes always green when checked */
.filter-controls .form-check-input[type="checkbox"]:checked {
background-color: #3A9A2B !important;
border-color:     #3A9A2B !important;
}





.filter-controls .form-check-input {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.5rem;
  /* color del check y el fondo cuando está seleccionado */
  accent-color: #1ac41f;          
  border: 2px solid #1ac41f;      
}
.filter-controls .form-check-label {
  font-size: 1.1rem;
  margin-right: 1.5rem;
  color: #1ac41f;                 /* Texto en rojo */
}
.filter-controls {
display: flex;         /* ya tienes d-flex en el HTML, pero reitero */
align-items: center;
gap: 1rem;             /* separación general entre elementos */
}

.filter-controls button#select-all {
background-color: #1ac41f;  /* Verde */
color: white;
border: none;
min-width: 6rem;
margin-right: 0.5rem;       /* separación extra a la derecha */
}

.filter-controls button#clear-all {
background-color: #E0A800;  /* Ámbar */
color: white;
border: none;
min-width: 6rem;
margin-left: 0.5rem;        /* separación extra a la izquierda */
}

.filter-controls button#select-all:hover {
background-color: #218838;
}

.filter-controls button#clear-all:hover {
background-color: #ea0a0a;
}






























.footer {
    background: url('../img/banners/puma.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 40px 0;
    position: relative;

}


.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    z-index: 1;
}

.footer * {
    position: relative;
    z-index: 2; /* Ensures the text appears above the overlay */
}


.footer h2, .footer p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* Adjust values as needed */
}















