@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Modak&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-transform: 0;
    
}

:root{
    --primary: #336600; 
    --secondary: #99cc66;
    --light: #f5f5f5;
    --dark: #14141f;
    --yellow: #ffcc33;
    --orange: #ff9900;
    --grem: #907c46;
}

/*============================botom de scroll*/
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1000;
}
.scroll-to-top:hover {
    background-color: #0056b3;
}
.scroll-to-top i {
    font-size: 24px;
}


/* ===============Navbar Styling  (se agrego el blur fondo)=========== */
.navbar {
    backdrop-filter: blur(20px);
    border-bottom: 1px  solid #f5f5f5;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-toggler {
    border: none;
    color: var(--light);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-nav .nav-link {
    color: var(--light);
    margin-right: 5px;
    transition: color 0.3s;
    font-weight: 600;
    font-size: 20px;
}

.navbar-nav .nav-link:hover {
    color: var(--dark);
    background-color: var(--light);
    border-radius: 10px;
}

.navbar-nav .dropdown-menu {
    background-color: var(--grem);
    border: none;
}

.navbar-nav .dropdown-item {
    color: var(--light);
    transition: color 0.3s;
    font-weight: 500;
    font-size: 16px;
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary);
}
/* Button Hover Effects  */
.btn {
    background-color: var(--dark);
    color: var(--light);
    border: 1px solid var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    
}

.btn:hover {
    background-color: var(--primary);
    color: var(--dark);
}
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    .navbar {
        background-color: var(--primary);
    
    }
    .btn:hover {
        background-color: var(--secondary);
        color: var(--dark);
    }
}

















/* Fullscreen Carousel Styling */
.carousel {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.carousel-item {
    height: 100vh;
}

.carousel-item video,
.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    bottom: 10%;
    background-color: var(--dark);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .carousel-caption {
        bottom: 5%;
    }

    .carousel-caption h1 h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

/* Icons Social */
.btn-sm-square {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 1px;
}


/* Navbar Light */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 10px;
    color: var(--dark) !important;
    font-size: 18px;
    font-weight: 600;
    transition: 0.5s;
    outline: none;
}

@media (min-width: 991px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: 0.5s;
    }
}






/* Services */
.service-item {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    color: var(--primary);
}

.service-item:hover {
    background: var(--dark);
}
.service-item p{
    color: var(--dark);
}

.service-item * {
    transition: 0.5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/*por que eligiernos titulo*/
.container-xxl .container .mb-5{
    color: var(--primary);
}





/* botn de imagen de empresa*/

/* Destination */
.destination img {
    transition: 0.5s;
}

.destination a:hover img {
    transform: scale(1.1);
}











/* Package Item */
.packager-item {
    box-shadow: 0 0 10px rgba(5, 5, 5, 0.301);
    border-radius: 10px;
}

.packager-item img {
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
    width: 550px;
    height: 350px;
}
.packager-item .titulo{
    color: var(--primary);
}

.packager-item:hover img {
    transform: scale(1.1);
}

.packager-item p {
    padding: 0 25px 0 25px;
}

/* Buttons */
.btn-package1 {
    background-color: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border: 1px solid var(--primary);
    transition: background-color 0.3s, color 0.3s;
    border-radius: 30px 0 0 30px;
    margin-bottom: 10px;
    text-decoration: none;
}

.btn-package1:hover {
    background-color: var(--secondary);
    color: var(--dark);
}


.btn-square {
    width: 38px;
    height: 38px;
}
/*==========proceso===========*/
.proceso {
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0%, 100% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.2);
    }
}
.rounded-circle{
    background-color: var(--primary);
}


/* Client Satisfaction Section */
.unique-section {
    padding: 60px 0;
    background-color: var(--light);
}

.unique-heading h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.unique-heading p {
    font-size: 1.1rem;
    color: var(--dark);
}

.feature-center {
    margin-bottom: 30px;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid var(--primary);
    background-color: #ffffff;
}

.counter {
    font-size: 2rem;
    color: var(--dark);
}

.counter-label {
    font-size: 1.1rem;
    color: var(--dark);
}

@media (max-width: 991px) {
    .unique-section .row.text-center .col-sm-6 {
        width: 50%;
    }
}


/* Booking Selection */
.booking {
    background-image: url(../img/booking.jpg) no-repeat center center;
    box-shadow: 0 0 10px rgba(5, 5, 5, 0.300);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
}
.text-contacto{
    color: var(--primary);
}
.booking .btn{
    background-color: var(--light);
    color: var(--dark);
    border: 1px solid var(--dark);
    font-weight: 800;
    font-size: 20px;
}
.booking .btn:hover{
    background-color: var(--primary);
    color: var(--light);
}
#booking-form{
    border-left: 1px solid var(--dark);
}
#booking-form h3{
    text-decoration: none;
    text-align: center;
    color: var(--primary);
}





/* Team Item */
.team-item {
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.5);
    border-radius: 10px 10px 0 0;
}

.team-item img {
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
    width: 300px;
    
}

.team-item:hover img {
    transform: scale(1.1);
    border-radius: 10px 10px 0 0;
}

.team-item .btn {
    background: var(--primary);
    color: var(--light);
    border-radius: 20px;
    border-bottom: 1px solid var(--dark);
}

.team-item .btn:hover {
    background-color: var(--dark);
    color: #ffffff;
}

/* Responsive Styling for Mobile */
@media (max-width: 991px) {
    .footer .btn.btn-social {
        margin: 10px auto;
        display: block;
    }
    .container-xxl {
        padding: 20px 0;
    }

    .container {
        padding: 0 15px;
    }

    .text.center {
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-title.bg-white {
        display: inline-block;
        padding: 5px 10px;
    }

    .row.g-4 {
        display: flex;
        flex-wrap: wrap;
    }

    .col-lg-3.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }

    .team-item {
        margin-bottom: 20px;
    }

    .team-item img {
        width: 100%;
        height: auto;
    }

    .team-item .btn-square {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .team-item .text-center {
        padding: 10px;
    }

    .team-item h5 {
        font-size: 1.2rem;
    }

    .team-item small {
        font-size: 0.9rem;
    }
    }











/* =========================Testimonial Section=============== */
.testimonial-section {
    padding: 60px 0 0 0;
    background-color: var(--light);
    text-align: center;
}

.testimonial-heading h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.testimonial-heading p {
    font-size: 1.1rem;
    color: var(--dark);
}

.testimonial-item {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light);
    margin: 0 auto;
    max-width: 600px;
}

.testimonial-item:hover {
    background: var(--dark);
}

.testimonial-item * {
    transition: 0.5s;
}

.testimonial-item:hover * {
    color: var(--light) !important;
}

.testimonial-item img {
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-item h5 {
    font-size: 1.2rem;
    color: var(--primary);
}

.testimonial-item p {
    font-size: 1rem;
    color: var(--dark);
}

@media (max-width: 991px) {
    .container-fluid.mt-5 {
        display: none;
    }
}

/* Footer Styling */
.container-footer {
    background-color: var(--dark);
    padding: 40px 20px;
    color: var(--light);
    text-align: center;
}

.container-footer .row {
    margin: 0 auto;
    max-width: 1200px;
}

.container-footer .col-lg-4,
.container-footer .col-md-6 {
    margin-bottom: 20px;
}

.container-footer h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.container-footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.container-footer .btn-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
}

.container-footer .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.container-footer .input-group input {
    border: none;
    padding: 10px;
    border-radius: 5px 0 0 5px;
}

.container-footer .input-group button {
    border: none;
    padding: 10px;
    border-radius: 0 5px 5px 0;
}

.container-footer .mt-3 a {
    color: var(--light);
    text-decoration: none;
}

.container-footer .mt-3 a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .container-footer .col-lg-4,
    .container-footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


