/* Variables de Identidad Visual Huayna Pacha */
:root {
    --dorado-andino: #F1C40F; /* Color vibrante para llamar la atención */
    --oscuro-elegante: #1e1e2d;
    --blanco-puro: #ffffff;
    --texto-suave: #555555;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--oscuro-elegante);
    line-height: 1.6;
}

/* Hero Section (La primera impresión) */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/fondo-andes.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--blanco-puro);
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--dorado-andino);
    font-weight: 600;
}

/* Tarjetas de Tours Llamativas */
.card-tour {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-tour:hover {
    transform: translateY(-15px);
}

.card-tour .price-tag {
    background: var(--dorado-andino);
    color: var(--oscuro-elegante);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Navegación General */
nav {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex; /* En PC se ven horizontales */
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.menu-toggle {
    display: none; /* Escondido en PC */
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- DISEÑO PARA CELULARES --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Aparece en celulares */
    }

    .nav-menu {
        display: none; /* Se oculta por defecto en celular */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        text-align: center;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex; /* Se muestra cuando hacemos clic */
    }
}