/*
Theme Name:   Bootscore Child
Description:  Bootscore Child Theme
Author:       Bootscore
Author URI:   https://bootscore.me
Template:     bootscore
Version:      6.0.0
Requires at least: 5.0
Tested up to: 6.6
Requires PHP: 7.4
License: MIT License
License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
Text Domain:  bootscore
*/
/*
All style editing is done via /assets/scss/_bootscore_custom.scss
*/
/*--General--*/

@font-face {
    font-family: 'Fira Sans Condensed';
    src: url('assets/fonts/FiraSansCondensed-ExtraLight.woff2') format('woff2'),
        url('assets/fonts/FiraSansCondensed-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fira Sans Condensed';
    src: url('assets/fonts/FiraSansCondensed-Regular.woff2') format('woff2'),
        url('assets/fonts/FiraSansCondensed-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}


:root {
    --lw-light-gray: #666;
    --lw-mid-gray: #1f1f1f;
    --lw-gray: #111;
}

body {
    font-family: 'Fira Sans Condensed';

}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.lead {
    text-transform: uppercase;
}

.h2 {
    margin-bottom: 1.3rem
}

.lead {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 1.9rem
}

p {
    font-weight: lighter;
}

.btn-outline-light,
.btn-outline-dark {
    border-radius: 0;
    text-transform: uppercase;
    padding: .75rem 2rem !important;
}

#page {
    min-height: unset;
}

/*--Menú--*/
#masthead {
    background-color: black;
}

#masthead .header-logo {
    width: 9rem;
    height: auto;
}

#masthead .navbar {
    background-color: black !important;
    padding: 0;
}


#masthead .navbar-nav {
    padding: .6rem 0;
}

#masthead .navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: lighter;
}

#offcanvas-navbar {
    background-color: black;
}

.offcanvas.offcanvas-top.show,
.offcanvas.offcanvas-top.showing {
    height: fit-content;
}

#masthead .nav-toggler {
    border-radius: 0;
}



/*--Home Hero--*/
.home-hero {
    background-color: black;
    height: 100vh;
    color: white;
    background-image: url(assets/img/grupal-movil.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
}

.home-hero::after,
.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: black;
    z-index: -1;
}

.home-hero::after {
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%);
    opacity: .9;
}

.home-hero::before {
    background: black;
    opacity: .5;
}

.home-hero .h1 {
    text-transform: uppercase;
    font-size: 1.7rem;
    animation: aparecer 3s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    margin-bottom: 2rem;
}

@keyframes aparecer {
    0% {
        opacity: 0;
        letter-spacing: 0;
    }

    100% {
        opacity: 1;
        letter-spacing: 1rem;
    }
}

.home-hero .lead {
    opacity: 0;
    font-size: 2.5rem;
    line-height: 3rem;
    animation: lead-aparecer 3s ease forwards;
    animation-delay: 2s;
    text-transform: uppercase;
}

@keyframes lead-aparecer {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.flecha {
    width: 3rem;
    height: 3rem;
    animation: rebote 1.5s ease-in-out infinite;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    translate: -50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes rebote {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.flecha svg {
    width: 2rem;
    height: 2rem;
    fill: white
}

/*--Home banda--*/
.home-band {
    background-color: var(--lw-gray);
    color: white;
    padding-bottom: 3rem;
}

.banda-foto {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.col-info {
    height: 100%;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*Swiper banda y noticias*/
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: unset;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.75);
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 6/8;
    object-fit: cover;
    transition: .3s ease-in-out;
}

.swiper-slide img+img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    transition: .3s ease-in-out;
}

.swiper-slide:hover img {
    opacity: 0;
}

.swiper-slide:hover img {
    opacity: 1;
}

.swiper-wrapper {
    padding: 6rem 0;
}

.info {
    position: absolute;
    bottom: -100%;
    opacity: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    color: #dedede;
    transition: bottom 0.5s ease-in-out, opacity 0.6s ease-in-out;
}

.info .nombre {
    font-weight: 600;
    text-transform: uppercase;
}

.info .instrumento {
    display: block;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.info .descripcion {
    display: block;
}


.swiper-slide.swiper-slide-active .info {
    bottom: 0;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-button-prev::after,
.swiper-button-next::after {
    color: white;
    width: 2rem;
    height: 2rem;
}

.noticias .swiper-slide .card-body {
    padding: 1rem;
    background-color: black;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.noticias .swiper-slide .card-body .h4 {
    text-transform: uppercase;
}

.noticias .swiper-slide .card-body .news-fecha {
    font-style: italic;
    display: block;
    margin-bottom: 1rem;
    color: white;
}

/*Paginación swiper*/
.swiper-pagination {
    display: flex;
    justify-content: center;
    gap: .75rem;
}

.swiper-pagination span {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid var(--lw-gray);
    background-color: transparent;
}

.swiper-pagination span {
    width: 1rem;
    height: 1rem;
    border: 2px solid white;
    background-color: transparent;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    background-color: white;
}

/*--Home play--*/
.home-play {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-image: url(assets/img/hero-bg-desktop.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    color: white;
}

.home-play::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, .5);
}

.home-play .escuchacard .escucha-fecha {
    display: block;
    margin-bottom: 2rem;
}

/*--Home Fechas--*/
.home-fechas {
    background-color: black;
    color: white;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.fechashead {
    text-transform: uppercase;
    font-weight: bold;
    background-color: black;
    font-size: .9rem;
}

.fecharow {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid white;
    align-items: center;
}

.fecharow.pasada {
    color: var(--lw-light-gray);
}

.fecharow .btn.disabled:hover {
    cursor: not-allowed;
}

.fecharow .fecha {
    font-weight: lighter;
}

.fecharow .fecha .dia {
    font-size: 2.5rem;
    line-height: 2.5rem;
    display: block;
}

.fecharow .fecha .mes {
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
}

.fecharow:last-child {
    border-bottom: none;
}

.fecharow .hora {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-weight: normal;
}.fecharow.cancelado {
    opacity: 0.5;
    text-decoration: line-through;
    position: relative;
}
.fecharow.cancelado::after {
position: absolute;
content: 'Cancelado';
top: 0;
right: 0;
background-color: red;
color: white;
opacity: 1;
padding: .2rem 1rem;
rotate: 20deg;
}

.fecharow.cancelado .btn {
    pointer-events: none;
    opacity: 0.4;
}


/*--Home Galería--*/
.home-multimedia {
    background-color: black;
    padding-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
}

figure.gallery-item {
    margin: 0;
    border-radius: 0;
    aspect-ratio: 4/3;
    transition: opacity 0.3s ease;
}

figure.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.gallery-grid:hover .gallery-item {
    opacity: 0.75;
}

.gallery-grid:hover .gallery-item:hover {
    opacity: 1;
}

.galeria-video .carousel-indicators {
    position: relative;
    margin: 2rem auto;
    gap: 1rem;
}

.galeria-video .carousel-indicators button {
    aspect-ratio: 1;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid white;
    background-color: transparent;
}

.galeria-video .carousel-indicators button.active {
    background-color: rgba(255, 255, 255, .8);
}

#lightbox #next,
#lightbox #prev {
    transition: background .5s ease-in-out;
    height: 100%;
    width: 10vw;
    background: transparent;
    color: white;
    border: none;
}

#lightbox #next {
    right: 0;
}

#lightbox #next svg {
    height: 2rem;
    width: 2rem;
    rotate: -90deg;
}

#lightbox #prev {
    left: 0;
}

#lightbox #prev svg {
    rotate: 90deg;
    height: 2rem;
    width: 2rem;
}

#lightbox #close svg {
    width: 2rem;
    height: 2rem;
}

#lightbox #next:hover,
#lightbox #prev:hover {
    background-color: rgba(0, 0, 0, .4);
}

/*--Noticias--*/
.home-news {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--lw-gray);
    color: white;
}

.home-news .modal-header {
    text-transform: uppercase;
}

.home-news .modal-content {
    border-radius: 0;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.75);
}

/*--Home CTA--*/
.home-cta {
    background-image: url(assets/img/cta-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--lw-gray);
    color: white;
}

.home-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, .5);
}

.home-cta ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 0;
    margin: 2rem 0;
}

.home-cta ul li a {
    display: block;
    width: 2rem;
    height: 2rem;
    text-decoration: none;
    color: white;
    transition: .3s ease-in-out;
}

.home-cta ul li a svg {
    fill: white;
    width: 2rem;
    height: 2rem;
}

.home-cta ul li a:hover {
    opacity: .8;
}

/*--home tienda*/
.home-shop {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--lw-mid-gray);
    color: white;
}

/*tienda*/
.woocommerce div.product {
    border-radius: 0 !important;
}

.woocommerce span.onsale {
    border-radius: 30rem !important;
}

.woocommerce div.product form.cart .button,
.woocommerce button.button,
.wc-block-components-checkout-place-order-button,
.woocommerce-mini-cart__buttons .btn-primary,
.woocommerce .btn-primary {
    background-color: var(--lw-gray);
    color: white;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px solid var(--lw-gray);
    padding: .75rem 2rem !important;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce button.button:hover,
.wc-block-components-checkout-place-order-button:hover,
.woocommerce-mini-cart__buttons .btn-primary:hover,
.woocommerce .btn-primary:hover {
    background-color: var(--lw-mid-gray);
}

.woocommerce-js .entry-title {
    text-transform: uppercase;
    margin-bottom: 3rem;
}
.woocommerce-mini-cart__buttons >.btn.btn-secondary{
    display: none!important;
}
/*--home contacto--*/
.home-contacto {
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: white;
    background-color: var(--lw-gray);
    background-image: url(assets/img/contacto-bg.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.home-contacto::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, .5);
}

.form-wrapper {
    padding: 1.5rem;
    box-shadow: 0 2rem 2rem -1.5rem rgba(0, 0, 0, 0.75);
    background: var(--lw-gray);
}

.form-wrapper .field-wrap input[type="submit"] {
    border-radius: 0 !important;
    border: 1px solid white !important;
    text-transform: uppercase;
    color: white;
    background: transparent !important;
    padding: .75rem 2rem !important;
    transition: .3s ease-in-out;
}

.form-wrapper .field-wrap input[type="submit"]:hover {
    color: black;
    background: white !important;
}

.form-wrapper .nf-field-label label {
    text-transform: uppercase !important;
    font-weight: lighter !important;
    font-size: .9rem !important;
}

.form-wrapper .field-wrap>div input,
.form-wrapper .field-wrap textarea {
    font-weight: lighter !important;
    background: transparent !important;
    border: 0;
    border-bottom: 1px solid white;
    color: white;
}

.form-wrapper .nf-form-fields-required {
    font-size: .8rem;
    margin-bottom: 2rem;
}

/*--home sponsors--*/
.home-sponsors {
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: white;
    background: black;
}

.home-sponsors a {
    transition: .3s ease-in-out;
}

.home-sponsors:hover a {
    opacity: .75;
}

.home-sponsors:hover a:hover {
    opacity: 1;
}

/*---404---*/
.error-404 {
    background-color: var(--lw-gray);
    color: white;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.error-404 h1 {
    font-size: 2rem;
}

.error-404 h1 span {
    display: block;
    font-size: 6rem;
    font-weight: bolder;
}

/*---MQ---*/
@media (min-width:576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:768px) {
    .home-hero {
        background-image: url(assets/img/hero-bg-desktop.jpg);
    }

    .slide-news {
        width: 60%;
    }
}
ﬁ
@media (min-width:992px) {


    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .slide-news {
        width: 40%;
    }
}

@media (min-width:1200px) {
        #masthead .header-logo {
        width: 17rem;
        height: auto;
        margin-bottom: -3rem;
        -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .7));
        filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
    }
}

@media screen and (max-device-width: 1200px) and (-webkit-min-device-pixel-ratio: 2) {
  .home-hero, .home-cta, .home-contacto, .home-play {
    background-attachment: scroll !important;
  }
}