/*==================================================
    INKA JOURNEY
    style.css
==================================================*/

/*=========================
Google Font
=========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
Variables
=========================*/

:root {

    --primary: #0F766E;
    --primary-dark: #0B5E57;
    --secondary: #F59E0B;

    --white: #ffffff;
    --black: #111827;

    --gray: #6B7280;
    --light: #F8FAFC;

    --shadow: 0 10px 35px rgba(0, 0, 0, .08);

    --radius: 18px;

    --transition: .35s ease;

}

/*=========================
Reset
=========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;

    color: var(--black);

    background: var(--light);

    overflow-x: hidden;

}

img {

    width: 100%;

    display: block;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;

}

.section {

    padding: 100px 0;

}

.container {

    max-width: 1200px;

}

/*=========================
Titles
=========================*/

.section-title {

    text-align: center;

    margin-bottom: 70px;

}

.section-title h2 {

    font-size: 2.6rem;

    font-weight: 700;

    margin-bottom: 15px;

}

.section-title p {

    color: var(--gray);

    max-width: 650px;

    margin: auto;

}

/*=========================
Navbar
=========================*/

.navbar {

    padding: 18px 0;

    transition: .4s;

    z-index: 999;

}

.navbar.scrolled {

    background: #ffffff;

    box-shadow: var(--shadow);

    padding: 12px 0;

}

.navbar-brand {

    font-size: 1.6rem;

    font-weight: 700;

    color: #fff;

}

.navbar.scrolled .navbar-brand {

    color: var(--primary);

}

.navbar-brand i {

    color: var(--secondary);

    margin-right: 8px;

}

.nav-link {

    color: #fff;

    font-weight: 500;

    margin-left: 20px;

    transition: var(--transition);

}

.navbar.scrolled .nav-link {

    color: var(--black);

}

.nav-link:hover {

    color: var(--secondary);

}

.navbar-toggler {

    border: none;

}

.navbar-toggler:focus {

    box-shadow: none;

}

/*=========================
Buttons
=========================*/

.btn-reserva {

    background: var(--secondary);

    color: #fff;

    padding: 12px 28px;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);

}

.btn-reserva:hover {

    background: #d98a05;

    color: #fff;

    transform: translateY(-3px);

}

.btn-primary-custom {

    background: var(--primary);

    color: #fff;

    border-radius: 50px;

    padding: 14px 35px;

    transition: var(--transition);

    font-weight: 600;

}

.btn-primary-custom:hover {

    background: var(--primary-dark);

    color: #fff;

    transform: translateY(-4px);

}

.btn-outline-custom {

    border: 2px solid #fff;

    color: #fff;

    border-radius: 50px;

    padding: 14px 35px;

    margin-left: 15px;

    transition: var(--transition);

    font-weight: 600;

}

.btn-outline-custom:hover {

    background: #fff;

    color: var(--primary);

}

/*=========================
Hero
=========================*/

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background-image: url("../assets/hero.png");

}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .58);

}

.overlay {

    display: none;

}

.hero .container {

    position: relative;

    z-index: 2;

}

.hero-tag {

    display: inline-block;

    background: rgba(255, 255, 255, .15);

    color: #fff;

    padding: 10px 20px;

    border-radius: 50px;

    backdrop-filter: blur(8px);

    margin-bottom: 25px;

}

.hero h1 {

    font-size: 4rem;

    color: #fff;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 25px;

}

.hero h1 span {

    color: var(--secondary);

}

.hero p {

    color: #eee;

    font-size: 1.1rem;

    max-width: 650px;

    line-height: 1.9;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

}

/*=========================
Utilities
=========================*/

.text-primary {

    color: var(--primary) !important;

}

.shadow-custom {

    box-shadow: var(--shadow);

}

.rounded-custom {

    border-radius: var(--radius);

}

.bg-light-custom {

    background: #fff;

}

/*=========================
Animations
=========================*/

.fade-up {

    animation: fadeUp 1s ease;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*=========================
Responsive
=========================*/

@media(max-width:992px) {

    .hero h1 {

        font-size: 3rem;

    }

    .nav-link {

        color: #222;

        margin: 12px 0;

    }

    .navbar-collapse {

        background: #fff;

        padding: 20px;

        border-radius: 12px;

        margin-top: 15px;

    }

    .btn-reserva {

        margin-top: 15px;

    }

}

@media(max-width:768px) {

    .hero {

        text-align: center;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero h1 {

        font-size: 2.4rem;

    }

    .btn-outline-custom {

        margin-left: 0;

        margin-top: 15px;

    }

    .section {

        padding: 80px 0;

    }

    .section-title h2 {

        font-size: 2rem;

    }

    /*==================================================
    DESTINOS / TOURS
==================================================*/

    .tour-card {

        background: #fff;

        border-radius: 20px;

        overflow: hidden;

        box-shadow: var(--shadow);

        transition: var(--transition);

        height: 100%;

    }

    .tour-card:hover {

        transform: translateY(-12px);

    }

    .tour-card img {

        height: 260px;

        object-fit: cover;

        transition: .5s;

    }

    .tour-card:hover img {

        transform: scale(1.08);

    }

    .tour-content {

        padding: 25px;

    }

    .tour-content h4 {

        font-size: 1.4rem;

        margin-bottom: 12px;

        font-weight: 700;

    }

    .tour-content p {

        color: var(--gray);

        line-height: 1.7;

        margin-bottom: 20px;

    }

    .tour-content span {

        color: var(--primary);

        font-size: 1.3rem;

        font-weight: 700;

    }

    /*==================================================
    SERVICIOS
==================================================*/

    .services {

        background: #ffffff;

    }

    .service-box {

        background: #fff;

        padding: 45px 25px;

        border-radius: 20px;

        transition: var(--transition);

        box-shadow: var(--shadow);

        height: 100%;

    }

    .service-box:hover {

        transform: translateY(-10px);

        background: var(--primary);

        color: #fff;

    }

    .service-box i {

        font-size: 3rem;

        color: var(--secondary);

        margin-bottom: 20px;

    }

    .service-box:hover i {

        color: #fff;

    }

    .service-box h5 {

        font-size: 1.2rem;

        font-weight: 600;

    }

    /*==================================================
    CONTADORES
==================================================*/

    .counter {

        background: linear-gradient(135deg, var(--primary), #084C47);

        color: #fff;

        padding: 90px 0;

    }

    .counter h2 {

        font-size: 3rem;

        font-weight: 800;

        margin-bottom: 10px;

    }

    .counter p {

        font-size: 1.1rem;

        opacity: .9;

    }

    /*==================================================
    TESTIMONIOS
==================================================*/

    .testimonial {

        background: #fff;

        padding: 35px;

        border-radius: 20px;

        box-shadow: var(--shadow);

        height: 100%;

        transition: var(--transition);

        position: relative;

    }

    .testimonial:hover {

        transform: translateY(-8px);

    }

    .testimonial::before {

        content: "★★★★★";

        color: #FBBF24;

        display: block;

        margin-bottom: 18px;

        font-size: 1rem;

    }

    .testimonial p {

        color: var(--gray);

        line-height: 1.8;

        margin-bottom: 25px;

        font-style: italic;

    }

    .testimonial h5 {

        font-weight: 700;

        margin: 0;

    }

    /*==================================================
    CONTACTO
==================================================*/

    .contact {

        background: #fff;

    }

    .contact h2 {

        font-size: 2.5rem;

        font-weight: 700;

        margin-bottom: 20px;

    }

    .contact p {

        color: var(--gray);

        line-height: 1.8;

        margin-bottom: 35px;

    }

    .contact form {

        background: #fff;

        padding: 35px;

        border-radius: 20px;

        box-shadow: var(--shadow);

    }

    .form-control,
    .form-select {

        border-radius: 12px;

        padding: 14px 18px;

        border: 1px solid #ddd;

    }

    .form-control:focus,
    .form-select:focus {

        border-color: var(--primary);

        box-shadow: none;

    }

    textarea {

        resize: none;

    }

    /*==================================================
    FOOTER
==================================================*/

    footer {

        background: #0B1720;

        color: #fff;

        padding: 70px 0 30px;

        text-align: center;

    }

    footer h3 {

        font-size: 2rem;

        font-weight: 700;

        margin-bottom: 20px;

    }

    footer p {

        color: #cbd5e1;

        max-width: 700px;

        margin: auto;

        line-height: 1.8;

    }

    footer hr {

        border-color: rgba(255, 255, 255, .15);

        margin: 40px 0 20px;

    }

    .social {

        margin-top: 35px;

        margin-bottom: 20px;

    }

    .social a {

        width: 50px;

        height: 50px;

        display: inline-flex;

        justify-content: center;

        align-items: center;

        border-radius: 50%;

        background: rgba(255, 255, 255, .08);

        color: #fff;

        margin: 0 8px;

        transition: var(--transition);

        font-size: 1.2rem;

    }

    .social a:hover {

        background: var(--secondary);

        transform: translateY(-6px);

    }

    /*==================================================
    BOTÓN WHATSAPP
==================================================*/

    .whatsapp {

        position: fixed;

        right: 25px;

        bottom: 25px;

        width: 65px;

        height: 65px;

        background: #25D366;

        color: #fff;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 50%;

        font-size: 2rem;

        text-decoration: none;

        box-shadow: 0 10px 25px rgba(0, 0, 0, .25);

        transition: .3s;

        z-index: 999;

    }

    .whatsapp:hover {

        color: #fff;

        transform: scale(1.12);

    }

    /*==================================================
    SCROLLBAR
==================================================*/

    ::-webkit-scrollbar {

        width: 10px;

    }

    ::-webkit-scrollbar-track {

        background: #ececec;

    }

    ::-webkit-scrollbar-thumb {

        background: var(--primary);

        border-radius: 20px;

    }

    ::-webkit-scrollbar-thumb:hover {

        background: var(--primary-dark);

    }

    /*==================================================
    RESPONSIVE EXTRA
==================================================*/

    @media (max-width:992px) {

        .counter h2 {

            font-size: 2.3rem;

        }

        .contact {

            text-align: center;

        }

        .contact form {

            margin-top: 40px;

        }

    }

    @media (max-width:768px) {

        .tour-card img {

            height: 220px;

        }

        .counter .col-md-3 {

            margin-bottom: 35px;

        }

        footer {

            padding: 50px 0 25px;

        }

        .social a {

            width: 45px;

            height: 45px;

            margin: 5px;

        }

        .whatsapp {

            width: 58px;

            height: 58px;

            font-size: 1.7rem;

        }

    }
}