@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


.inicio {
    font-family: 'Mulish', sans-serif;
    background-image: url(../imagenes/general/camastro1.jpg);
    height: 100vh;
    /* Asegura que el contenedor tenga la altura del viewport */
    color: #e7dfe4;
    background-size: cover;
    /* Ajusta la imagen para que cubra todo el contenedor */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
    background-position: center;
    /* Centra la imagen */

    -webkit-text-stroke: 2px #1b6463; /* grosor y color del borde */
    paint-order: stroke fill; /* asegura que el borde vaya afuera del relleno */
}

.inicio_movil {
    display: none;
}

.imagen-logo {
    width: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.inicio-web {
    padding: 0px 30px;
}

.inicio-web h3 {
    font-size: 45px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 20px;
}

.inicio-web span {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: bold;
}

.inicio-web .row .col-md-4 {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-reservar {
    animation: heartbeat 1.5s infinite;
    background-color: white;
    padding: 20px;
    border: solid 10px #7ea0d6;
    border-radius: 20px;
    text-align: center;
    width: 300px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    letter-spacing: 1px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.btn-reservar:hover {
    text-decoration: none;
    color: #7ea0d6;
    font-weight: bold;
}

@media only screen and (min-width: 1440px) {
    .imagen-logo {
        width: 250px;
        margin-bottom: 20px;
        animation: heartbeat 1.5s infinite;
    }
    
    @keyframes heartbeat {
        0% {
            transform: scale(1);
        }
        25% {
            transform: scale(1.1);
        }
        50% {
            transform: scale(1);
        }
        75% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    .inicio-web h3 {
        font-size: 65px;
        letter-spacing: 1px;
        font-weight: bold;
        margin-bottom: 30px;
        margin-top: 90px;
    }
    
    .inicio-web span {
        font-size: 40px;
        letter-spacing: 1px;
        font-weight: bold;
    }
    
    .inicio-web .row .col-md-4 {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .btn-reservar {
        animation: heartbeat 1.5s infinite;
        background-color: white;
        padding: 20px;
        border: solid 10px #FFB400;
        border-radius: 20px;
        text-align: center;
        width: 350px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        letter-spacing: 1px;
        text-decoration: none;
        color: black;
        font-weight: bold;
    }
    
    .btn-reservar:hover {
        text-decoration: none;
        color: #FFB400;
        font-weight: bold;
    }

}


@media only screen and (min-width: 320px) and (max-width: 850px) {
    .inicio-web {
        display: none;
    }

    .inicio_movil {
        padding: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .inicio_movil h3 {
        font-size: 35px;
        text-align: center;
        padding: 30px 0px;
    }

    .inicio_movil span {
        font-size: 20px;
        text-align: center;
        display: flex;
        padding: 20px;
        display: none;
    }

    .inicio_movil a {
        text-decoration: none;
        padding: 20px;
        background: white;
        border-radius: 20px;
        width: 300px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        height: 100px;
        border: solid 6px #7ea0d6;
        color: #7ea0d6;
        margin-top: 20px;
        font-size: 32px;
        font-weight: bold;
    }

    .inicio_movil a:hover {
        text-decoration: none;
        color: #7ea0d6;
    }
}