@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: linear-gradient(
        rgba(239, 236, 236, 0.2), 
        rgba(154, 153, 153, 0.2)),
        url(images/bg2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh; /* Cambiado de 70vh a 90vh para hacerlo más alto */
    display: flex;
    align-items: center;
    position: relative; /* Añadido para mejor estructura */
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    margin-right: 20px;
    margin-top: 20px;
}

.logo-img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1); 
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #000000;
    display: block;
}

.menu .navbar ul li a:hover {
    color: #D4AF37;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-content {
    display: flex;
    align-items: center;
    margin-top: 150px;
}

.header-txt {
    width: 70%;
    
}

.header-txt h1 {
    font-size: 120px;
    line-height: 100px;
    color: #000000;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 30px;
}

.header-txt p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 35px;
    border-left: 1px solid #D4AF37;
    padding-left: 15px;
}

.btn-1 {
    display: inline-block;
    padding: 12px 35px;
    background-color: #D4AF37;
    border-radius: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    margin-top: 25px;
    margin-bottom: 25px;
}
.btn-1:hover {
    background-color: #8B4513; 
    color: #D4AF37; 
    transform: scale(1.05);
}

.header-img {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.header-img a {
    margin-bottom: 40px;
}

.tours {
    padding: 100px 0;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    max-width: 800%;
}

.tours h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 85px;
    line-height: 95px;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.tours h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #D4AF37;
}

.tours p {
    font-size: 18px;
    color: #0b0b0b;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.tour-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.tour-1, .tour-3, .tour-4 {
    background-color: #ffffff;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    width: 300px;
    padding: 40px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.tour-1:hover, .tour-3:hover, .tour-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #8B4513;
}

.tour-txt h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
}

.tour-txt h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #D4AF37;
}

.tour-txt p {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
    line-height: 1.5;
}

/*  Modificaciones para la sección de video */
.video {
    padding: 150px 0;
    text-align: center; /* Centra todo el contenido */
    background-color: #f5f5f5; /* Fondo más claro para mejor contraste */
}

.video-content {
    display: flex;
    flex-direction: column; /* Cambia a columna para mejor flujo */
    align-items: center;
    max-width: 800px; /* Ancho máximo para mejor lectura */
    margin: 0 auto; /* Centra el contenido */
}

.video-1 {
    width: 100%;
    padding: 0 20px; /* Padding lateral para móviles */
}

.video-1 h2 {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;

}

.video-1 h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #D4AF37;
}

.video-1 p {
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center; /* Centra el texto */
}

/* Mejoras adicionales para el botón */
.video-1 .btn-1 {
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-1 .btn-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.footer-bg {
    text-align: center;
    padding: 100px 0;
}



.footer-txt {
    text-align: center;
    padding: 20px;
    background-color: #0E0E0E;
}

@media(max-width: 991px) {
    /* Estilos base del menú (se mantienen igual) */
    .menu {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: transparent;
    }

    .menu label {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
    }

    .menu label span {
        display: block;
        width: 25px;
        height: 2px;
        background: #333;
        transition: all 0.3s;
    }

    /* Navbar con items verticales */
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        z-index: 1000;
        padding-top: 70px;
        display: flex;
        flex-direction: column; /* Asegura disposición vertical */
    }

    /* Estilos para la lista de navegación */
    .navbar ul {
        display: flex;
        flex-direction: column; /* Items en vertical */
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    /* Estilos para cada item del menú */
    .navbar ul li {
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0; /* Separador opcional */
    }

    .navbar ul li a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        transition:  0.3s;
    }

    .navbar ul li a:hover {
        background-color: #f8f8f8;
    }

    /* Mostrar menú */
    #menu:checked ~ .navbar {
        left: 0;
    }

    /* Animación del icono (se mantiene igual) */
    #menu:checked ~ label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menu:checked ~ label span:nth-child(2) {
        opacity: 0;
    }
    #menu:checked ~ label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .logo-img {
        max-width: 80px; /* Tamaño reducido para móviles */
    }

    .header{
        min-height: 0vh;
    }

    .header-content {
        flex-direction: column;
        padding: 100px 30px 30px 30px;
        margin-top: 20px;
    }

    .header-txt {
        width: 100%;
        text-align: center;
    }

    .header-txt h1 {
        font-size: 70px;
        line-height: 90px;
        margin-bottom: 15px;
    }

    .header-txt p {
        border: 0;
        padding: 0;
        margin-bottom: 15px;
    }

    .btn-1 {
        margin: 20px 0;
    }

    .header-img {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        margin-top: 25px;
    }

    .header-img a {
        margin: 0 10px;
    }

    .tours {
        padding: 60px 20px;
    }
    
    .tours h2 {
        font-size: 60px;
        line-height: 70px;
    }
    
    .tour-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .tour-1, .tour-3, .tour-4 {
        width: 100%;
        max-width: 350px;
    }

    .video {
        padding: 80px 0;
    }
    
    .video-content {
        padding: 0 20px;
    }
    
    .video-1 h2 {
        font-size: 50px;
        line-height: 60px;
    }
/*   .video-1 {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .video-2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .v1, .v2 {
        width: 250px;
        margin: 0 0 20px 0;
    }*/

    .footer-bg {
        padding: 30px;
    }


    .footer-txt {
        padding: 30px;
    }
}