html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    line-height: 1.6;
    margin: 0;
}
h1 {
    font-size: 30px;
    font-family: Roboto;
}
h2 {
    font-size: 18px;
}
a {
    font-family: Roboto;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: orange;
    text-decoration: none;
}
p {
    font-size: 14px;
}
.hero {
    width: 100%;
    height: 100vh;
    background-color: #f1f1f1;
    position: relative;
    overflow: hidden;
    font-family: verdana, sans-serif;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
}

/* Works with 16:9 videos */
.hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://mundoparquetmallorca.com/wp-content/uploads/2023/12/home-mundo-parquet-1920x1024.jpg');
    /*background-image: url('https://picsum.photos/2000');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: opacity 2s;
}

.loaded .hero-image {
    opacity: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8em 6em;
    color: #fff;
    z-index: 2;
    overflow: scroll;
}

.hero-content:before {
    content: '';
    background-color: #000;
    opacity: 0.4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.logo {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 132px;
    height: 40px;
    background-image: url('https://mundoparquetmallorca.com/wp-content/uploads/2023/12/logo_mundo_parquet_mallorca.png');
    /*background-image: url('https://picsum.photos/2000');*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-indent: -9999px; /* Mueve el texto fuera de la vista */
    overflow: hidden; /* Asegura que el texto no sea visible fuera del bloque */

}

.hero-title {
    margin: 0;
    font-size: 2em;
    font-family: Roboto;
    line-height: 1;
}

.hero-tagline {
    margin: 0;
    font-style: italic;
}

.navbar-nav {
    display: flex;
    padding: 15px 0 0 0;
    margin: 0;
}

.navbar-nav li {
    position: relative;
    display: list-item;
    text-align: -webkit-match-parent;
    list-style: none;
}

.navbar-nav > li > a {
    font-family: Roboto;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding: 0.5em;
    background-color: rgba(255, 165, 0, 0.76);
    border: 1px solid orange;
    margin: 0 1em 0 0;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

.navbar-nav > li > a:hover {
    color: black;
}

@media (max-width: 767px){
    .hero-content {
        padding: 8em 2em;
    }
    .navbar-nav {
        display: inherit;
        padding: 15px 0 0 0;
        margin: 0;
    }
    .navbar-nav li {
        display: grid;
        list-style: none;
        margin: 1em;
    }
    }
