/* GENERAL STYLES */

html {
    font-size: 62.25%;
}

body {
    margin: 0;
    font-family: 'Dosis', sans-serif;
    font-size: 1.8rem;
    line-height: 1.5;

    --black: #14181C;
    --primary: #447F8D;
    --light: #ddd9cc;
    --dark: #6F695F;
}

* {
    box-sizing: border-box;
}

h1,h2,h3,h4,p {
    margin-top: 0;
}

h1,h2:not(.h3) {
    font-family: Cinzel;
    font-weight: 400;
}

h3,.h3 {
    font-size: 2.4rem;
    margin: 0;
    font-weight: 600;
    color: var(--primary);
}

strong {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: thin solid var(--primary);
    transition: border-bottom-color .12s, color .12s;
}

a:hover {
    border-bottom-color: transparent;
    color: var(--primary);
}

.container {
    max-width: 120rem;
    padding-left: 3rem;
    padding-right: 3rem;
    margin: auto;
}

@media only screen and (min-width: 976px) {
    .row {
        display: flex;
        flex-flow: row wrap;
        margin-left: -3rem;
        margin-right: -3rem;
    }

    .col {
        padding-left: 3rem;
        padding-right: 3rem;
        flex: 1 0 100%;
    }

    .col--large {
        width: 60%;
        flex: 0 0 60%;
    }

    .col--small {
        width: 40%;
        flex: 0 0 40%;
    }
}

/* LANDING */

.landing__image {
    position: relative;
    width: 100%;
    background-color: var(--black);
}

.landing__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    height: 16rem;
}

.landing__image img {
    display: block;
    margin: 0;
    min-height: 28rem;
    height: 50vw;
    max-height: 85vh;
    width: 100%;
    object-fit: cover;
}

.landing__title {
    position: relative;
    color: white;
    margin: 0;
    margin-top: -4rem;
    background-image: linear-gradient(to right, transparent 0, transparent 50%, var(--dark) 50%);
}

.landing__title h1 {
    display: block;
    padding: 2rem;
    background-color: var(--dark);
    margin: 0;
}

.landing__content {
    padding: 6rem 0;
}

.landing__contact {
    position: sticky;
    top: 2rem;
    padding: 4rem 2rem;
    background-color: var(--light);
}

.landing__contact ul {
    list-style-type: none;
    padding: 0;
}

.landing__contact li {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 1.2rem;
}

.landing__contact-icon {
    width: 3.2rem;
    padding-top: .4rem;
}

.landing__contact svg {
    height: 2rem;
    margin: 0;
    color: var(--primary);
}

/* MUSICIANS INFO */

.musicians {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;

    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0;
    padding-top: 4rem;

    list-style-type: none;
}

.musician__col {
    flex: 0 0 33%;
    min-width: 16rem;
    max-width: 20rem;

    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 1.2rem;
}

.musician {
    height: 100%;
    text-align: center;
}

.musician img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: .4rem solid var(--light);
}

/* VIDEO */

.video__container {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    margin-bottom: 8rem;
}

.video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video__placeholder::before {
    content: '';

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;

    background-image: url(./assets/play.svg);
    background-size: 6.4rem auto;
    background-position: center;
    background-repeat: no-repeat;
}

/* FOOTER */

footer {
    padding: 2.8rem 0;
    background-color: var(--dark);
    color: white;
}

footer a {
    border-bottom-color: white;
}

footer a:hover {
    color: white;
    border-bottom-color: transparent;
}

.footer__content {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    margin-top: -1.2rem;
}

.footer__content span {
    margin-top: 1.2rem;
}