@font-face {
    font-family: 'Ferghaus Sans';
    src: url('fonts/FerghausSans.woff2') format('woff2'),
        url('fonts/FerghausSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Opera Stencil';
    src: url('fonts/OperaStencil.woff2') format('woff2'),
        url('fonts/OperaStencil.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Universal */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Ferghaus Sans';
    font-size: 1.2rem;
    color: black;
}

h1, h2 {
    font-family: 'Opera Stencil';
}

h2 {
    font-size: 2.7rem;
}

section {
    padding: 80px 10px;
}

img {
    max-width: 100%;
}

button.btn-primary {
    border: 2px solid black;
    background-color: white;
    color: black;
    border-radius: 0;
    font-size: 1.4rem;
    padding: 0 20px;
}

button.btn-primary:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
    transition: 1s;
}

/* Nav */

.navbar-brand img {
    max-height: 53px;
}

#navbar {
    background-color: white !important;
    box-shadow: 0px 0px 16px -8px rgb(0 0 0 / 50%);
}

#navbar .nav-link {
    padding: 3px 11px;
    color: black;
}

#navbar .ver-menu {
    background-color: black;
    color: white;
}

#navbar .instagram img {
    width: 26px;
}

/* Inicio */

#inicio {
    background: url(img/inicio1.jpg);
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 490px;
    padding-top: 20px;
    background-attachment: fixed;
}

#inicio h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px white, 2px 0 white, -2px 2px white, -2px -3px white, 3px -3px white;
    line-height: 1;
}

#inicio h1 span {
    display: block;
    font-size: .85em;
}

/* La Delirio */

#la-delirio {
    background: linear-gradient(#00000000 75%,#d6d6d6 75%, #f0f0f0), url(img/wall.jpg);
    background-size: cover;
    background-position: center center;
}

#la-delirio .owl-carousel img {
    height: 240px;
    width: auto;
    margin: 0 auto;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: url(img/arrow.png);
    background-size: 30px;
    width: 30px;
    height: 44px;
    background-repeat: no-repeat;
    position: absolute;
    left: -40px;
    margin-top: -165px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-theme .owl-nav button.owl-next:hover {
    background: url(img/arrow.png);
    background-size: 30px;
    width: 30px;
    height: 44px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    position: absolute;
    right: -40px;
    margin-top: -165px;
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    display: none;
}


/* Horario */

.horario {
    border: 3px dotted black;
}

.horario img {
    margin-top: -83px;
    margin-bottom: -40px;
    width: 76%;
}

.horario h2 {
    background-color: black;
    color: white;
    width: fit-content;
    margin: 0 auto;
    padding: 3px 25px;
    margin-top: -30px;
}

.ubicacion h2 {
    background-color: black;
    color: white;
    width: fit-content;
    margin: 0 auto;
    padding: 3px 25px;
    margin-top: 140px;
    margin-bottom: 15px;
}

.horario p {
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 30px;
}

/* Contacto */

#contacto {
    background: url("img/contacto-bg.jpg");
    background-size: cover;
    background-position: center center;
    color: white;
    background-attachment: fixed;
}

#contacto form input,
#contacto form textarea {
    border: 2px dotted white;
    background-color: transparent;
    border-radius: 0;
    margin-bottom: 10px;
    color: white;
    width: 100%;
    padding: 3px 15px;
    font-size: 1.2rem;
}

#contacto form input[type="submit"] {
    border: none;
    background-color: white;
    color: black;
    padding: 5px 20px;
    width: auto;
}

#contacto form input[type="submit"]:hover {
    background-color: black;
    color: white;
    transition: 1s;
}

input::placeholder,
textarea::placeholder {
    color: white !important;
}

/* Footer */

footer {
    background-color: #000000;
    color: white;
    padding: 20px;
}

footer p {
    margin: 0;
}

.padding-c {
    padding-right: 0.1px;
}
  

@media screen and (max-width: 900px) {

    .horario img {
        margin-top: 0;
    }
    
    .ubicacion h2 {
        margin-top: 30px;
    }

    .ubicacion img {
        margin-top: 40px;
    }

    #contacto,
    #inicio {
        position:initial;
    }

}