/*
    Autor: Miguel Belmonte Granados
    Fecha: 14/11/2019
    Última modificación: 20/11/2019
*/

#main_container {
    background-size: contain;
}

/* SECTIONS */
section {
    padding-bottom: 15px;
}
/* /SECTIONS */

/* NEWS */
#news {
    overflow-y: auto;
}

/* CARD */
#news .card {
    width: 32%;
    float: left;
    text-align: left;
}

#news .card{
    margin-left: 1%;
}

#news .card-video {
    height: 181px; /* the perfect height is 180, but the youtube picture lose quality at that breakpoint*/
    border-right: 1px solid black; /* compensates the black upper border */
    background-color: black;
}

#news .card-content {
    min-height: 230px;
}
/* /CARD */
/* /NEWS */

/* LAST VIDEOCLIPS */
#last-videoclips {
    text-align: center;
    position: relative;
}

#last-videoclips h2 {
    margin-bottom: 10px;
}

#last-videoclips iframe {
    width: 70%;
    height: 394px;
    display: inline-block;
}
/* /LAST VIDEOCLIPS */

/* CAROUSEL */
.controllers {
    top: 45%;
    padding: 16px;
}

.controllers > img {
    width: 30px;
}

#next {
    right: 75px;
}

#prev {
    left: 75px;
}
/* /CAROUSEL */

/* NEXT-CONCERTS */
#next-concerts {
    width: 100%;
    text-align: right;
}

#next-concerts > div {
    width: 100%;
    background-image: url(../imgs/concertsBg.jpg);
    background-size: cover;
    box-shadow: 2px 2px 10px rgb(28, 28, 28);
}

.concert {
    overflow: auto;
}

.concert, #next-concerts h2 {
    background-color: rgba(28,28,28, 0.7);
    text-shadow: 1px 2px black;
    padding-right: 12px;
    padding-bottom: 4px;
}

#next-concerts > div, #next-concerts h2, .concert:last-of-type {
    border-radius: 10px;
}

#next-concerts h3 {
    float: right;
}

#next-concerts p {
    float: right;
    clear: right;
}

/* NEXT-CONCERTS */

/* GALLERY */
#bigView{
    width: 702px;
    height: 402px;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    border: 1px solid whitesmoke;
    border-radius: 8px;
    box-shadow: 2px 2px 8px 2px rgb(28, 28, 28);
}

#gallery {
    width: 100%;
}

#gallery img {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid whitesmoke;
    box-shadow: 2px 2px 8px 2px rgb(28, 28, 28);
}

#gallery > div {
    text-align: center;
    display: flex;
    flex-wrap: center;
    justify-content: center;
}

#gallery > div > div {
    width: 320px;
    padding: 10px;
}
/* /GALLERY */

/* ASIDE */
aside {
    width: auto;
    height: 300px;
    position: fixed;
    top: 300px;
    right: 0;
    z-index: 10;
}

aside span {
    writing-mode: vertical-lr;
}

aside .card-content {
    background-color: teal;
    border-radius: 10px 0 0 10px;
}

aside a {
    display: none;
    padding: 5px 0 5px 5px;
}

aside:hover a {
    display: block;
}

aside:hover span {
    display: block;
    border-bottom: 1px solid whitesmoke;
    padding-left: 2px;
    writing-mode: horizontal-tb;
}
/* /ASIDE */