@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* Asegura que el pseudo-elemento no se salga del .header */
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://urieltgc.github.io/images/imgs/img/pages/rooms/Back.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(4px);
    z-index: -1; /* Coloca el pseudo-elemento detrás del contenido */
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
}

.logo-d {
    margin-top: -15px;
    margin-left: 25px;
    width: 150px;
    height: 150px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #ff8800;
    display: block;
    font-weight: bold;
}

.menu .navbar ul li a:hover {
    color: #001380;
}

.icons {
    display: flex;
}

.icons i {
    font-size: 25px;
    color: #ffffff;
    margin-right: 15px;
    transition: all .5s ease;
}

.icons i:hover {
    color: #ff0000;
}

#menu {
    display: none;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-txt {
    width: 80%;
}

.header-txt h1 {
    margin-left: 100px;
    font-size: 70px;
    line-height: 80px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00d0ff;
    margin-bottom: 25px;
    font-family: 'Roboto Condensed', sans-serif;
}

.header-txt p {
    margin-left: 100px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 25px;
}

.btn-1 {
    display: inline-block;
    padding: 11px 35px;
    background: linear-gradient(90deg, rgba(37, 118, 250, 1) 0%, rgba(84, 115, 237, 1) 100%);
    color: #fdfeff;
    margin-left: 100px;
    border-radius: 15px;
    transition: all .5s;
}

.btn-1:hover {
    background: #fdfeff;
    color: #12121c;
}

img {
    width: 100%;
}

.images {
    display: flex;
    justify-content: center; /* Centrar las imágenes horizontalmente */
    gap: 20px; /* Espacio entre las imágenes */
    padding: 20px;
}

.images img {
    margin-right: 30px;
    width: 400px; /* Ancho definido para las imágenes */
    height: 580px; /* Altura definida para las imágenes */
    object-fit: cover; /* Ajustar la imagen dentro del contenedor */
    border-radius: 25px; /* Bordes redondeados */
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s;
}

.modal--show {
    opacity: 1;
    pointer-events: unset;
    transition: opacity .6s;
}

.modal-container {
    margin: auto;
    width: 90%;
    max-width: 600px;
    max-height: 90%;
    background-color: #12121c;
    border-radius: 10px;
    padding: 3em 2.5em;
    display: grid;
    place-items: center;
    grid-auto-columns: 100%;
}

.modal-title {
    font-size: 2.5rem;
}

.modal-paragraph {
    margin-bottom: 10px;
}

.modal-img {
    width: 90%;
    max-width: 300px;
}

.modal-close {
    text-decoration: none;
    color: #ffffff;
    background-color: #6500C4;
    padding: 1em;
    border: 1px solid;
    border-radius: 15px;
    display: inline-block;
    font-weight: 300;
    transition: background-color .3s;
}

.modal-close:hover {
    background-color: #29024D;
    color: #fdfeff;
}

h2 {
    font-size: 40px;
    color: #fdfeff;
    line-height: 1.4;
    margin-bottom: 15px;
}

p {
    font-size: 17px;
    color: #797979;
    margin-bottom: 35px;
}


@media(max-width:991px){
    .menu{
        margin-top: -40px;
        padding: 30px;
    }

    .menu label{
        display: initial;
        background-color: #000000;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #3f3f3f48;
        backdrop-filter: blur(15px);
        border-radius: 10px;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }

    #menu:checked ~ .navbar{
        display: initial;
    }

    .icons{
        display: none;
    }

    .header{
        padding: 80px 30px 50px 30px;
        align-items: self-start;
        flex-direction: column;
        align-items: center;
    }

    .header-txt{
        margin-left: -120px;
        text-align: center;
        width: 100%;
        color: #0044ff;
    }

    .header-txt h1{
        margin-bottom: 10px;
    }

    .header-txt p{
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
        color: #ffffff;
    }

    .images{
        position: initial;
        width: 300px;
        height: 300px;
    }
    .rows{
        display: none;
    }
}