body{
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
}
/* Navbar */
.navbar-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}


.menu-container {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    padding: 15px;
}

/* Botón de menú hamburguesa */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    z-index: 1100;
}

.menu-bar {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Menú deslizante */
.nav-links {
    position: fixed;
    top: 0;
    left: -250px; /* Oculta el menú fuera de la vista */
    height: 100%;
    width: 250px;
    background-color: rgba(56, 56, 56, 0.9);
    list-style: none;
    padding: 35px;
    margin:0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    transition: left 0.3s ease;
}

/* Mostrar el menú */
.nav-links.open {
    left: 0;
}

.nav-link-a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 15px 18px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link-a:hover {
    color: #f4a261;
}

/* Ajustes para pantallas grandes */
@media (min-width: 768px) {
    .menu-toggle {
        display: none; /* Oculta el menú hamburguesa */
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        background: transparent;
        height: auto;
        width: auto;
        padding: 0;
        color: white;
    }

    .nav-link {
        margin: 0 15px;
    }

    
.menu-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px;
}
}


.menssage{
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 80px; /* To adjust for fixed header */
}


.hero {
    background-image: url('https://viajerosocultos.com/wp-content/uploads/2022/05/waterfall-ge90df255d_1280.webp');
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;

}
.hero p {
    font-size: 2.2rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    margin-top: 10px;
}
/* Botón de llamada a la acción */
.btn-cta {
    background-color: #29211a;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: background-color 0.5s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra inicial */
}

.btn-cta:hover {
    color: #212529db;
    background-color: #ffffff;
    transform: scale(1.05); /* Pequeño efecto de zoom */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Sombra más fuerte */
}
.section-nosotros {
    padding: 60px 20px;
}

.section-nosotros {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
}

.section-nosotros.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animaciones */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}


.section-nosotros h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #264653;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.section-nosotros p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6b705c;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lugares img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lugares img:hover {
    transform: scale(1.05); /* Efecto zoom */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25); /* Más sombra */
}

.lugares h5 {
    font-size: 1.4rem;
    margin-top: 10px;
    font-weight: bold;
    color: #1a8662;
    text-align: center;

}

.lugares p {
    font-size: 1rem;
    color: #264653;
    line-height: 1.6;
    margin-top: 5px;
    text-align: center;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

