/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@400..700&family=Londrina+Solid:wght@100;300;400;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

.arboria{
    font-family: "arboria", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.londrina-solid-thin {
    font-family: "Londrina Solid", serif;
    font-weight: 100;
    font-style: normal;
}
  
  .londrina-solid-light {
    font-family: "Londrina Solid", serif;
    font-weight: 300;
    font-style: normal;
}
  
  .londrina-solid-regular {
    font-family: "Londrina Solid", serif;
    font-weight: 400;
    font-style: normal;
}
  
  .londrina-solid-black {
    font-family: "Londrina Solid", serif;
    font-weight: 900;
    font-style: normal;
}

.logo-responsive {
    max-width: 100%; /* Ocupa el ancho máximo del contenedor */
    height: auto; /* Mantiene las proporciones */
  }
  
  @media (max-width: 768px) { /* Pantallas pequeñas */
    .logo-responsive {
      max-width: 130px; /* Reduce el tamaño del logo */
    }
}

/* textos nosotros */
.nosotros-title {
  font-size: 2.0rem !important;
}

.nosotros-subtitle {
  font-size: 2.5rem !important;
}

.nosotros-text {
  font-size: 1.5rem !important;
}

.logo-small {
  aspect-ratio: 1.5;
  max-height: 90px;
  width: auto;
}


.experiencias-title {
  font-size: 2.5rem !important;
}

.experiencias-text {
  font-size: 1.7rem !important;
}

.nosotros-section {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* textos experiencias */
.exp-title {
  font-size: 2.5rem !important;
}

.exp-subtitle {
  font-size: 1.5rem !important;
}

.exp-text {
  font-size: 1.3rem !important;
}

.logo-small {
  height: 90px !important;
}

.ticket-text {
  font-size: 3rem !important;
}

/* hidden text */
.hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

/* NavBar */
.nav-link.ticket {
    
    background-color: #ff9700 !important;
    border-radius: 13px;
    transition: background-color 0.3s;
}

.nav-link.ticket2 {
    display: inline-block;
    background-color: #035db1 !important;
    border-radius: 13px;
    transition: background-color 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}



/* Contact */
.bg-image {
    background-image: url('../img/contactImg.webp');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

/* Footer */
.footer {
    padding: 4rem 0 1rem 0;
    background-color: #ffffff;
}

.footer-logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 1rem;
}
.copyright {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 2rem;
}
.contact-heading {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.contact-info {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
}
.attractions-list {
    list-style: none;
    padding: 0;
}
.attractions-list li {
    margin-bottom: 0.5rem;
}


/* animations */
@keyframes show {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
   }

   .img-animation {
    view-timeline-name: --image;
    view-timeline-axis: block;

    animation-timeline: --image;
    animation-name: show;

    animation-range: entry 25% cover 45%;

  }

  /* scroll-down Button */
  .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff9700;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.scroll-down:hover {
    background-color: #0056b3;
}

/* Logo Carousel */

@keyframes slides {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  /* Model Logo styles */
  .logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before, .logos:after {
    position: relative;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
  }
  
  .logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
  }
  
  .logos:hover .logo_items {
    animation-play-state: paused;
  }
  
  .logo_items img{
    height: 100px;
  }

/* nosotros textos */
@media (max-width: 576px) {
  .nosotros-title {
    font-size: 1.5rem !important;
  }

  .nosotros-subtitle {
    font-size: 2rem !important;
  }

  .nosotros-text {
    font-size: 1rem !important;
  }

  .logo-small {
    max-height: 60px;
  }

  .experiencias-title {
    font-size: 2rem !important;
  }

  .experiencias-text {
    font-size: 1rem !important;
  }

  .nosotros-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* exp-texts */
@media (max-width: 576px){
  /* textos experiencias */
.exp-title {
  font-size: 2.0rem !important;
}

.exp-subtitle {
  font-size: 1.0rem !important;
}

.exp-text {
  font-size: 1.0rem !important;
}

.logo-small {
  height: 60px !important;
}

.ticket-text {
  font-size: 1.7rem !important;
}
}


