* {
    box-sizing: border-box;
}

@font-face {
    font-family: Avenida;
    src: url('./fonts/Avenida Std Regular.otf');
}

/* Global styles */

body {
    font-family: 'Didact Gothic', Helvetica;
    padding-top: 95px;
    margin: 0;
}

p {
    color: #111;
    font-size: 19px;
    line-height: 180%;
}

h2 {
    color: #d1000a;
    font-size: 40px;
    font-weight: lighter;
    text-align: center;
}

a {
    color: white;
}

a:visited { 
    color: white;
}

/* Header */

.nav-bar {
    width: 100%;
    padding: 0 80px;
    margin: 0 auto;
    height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.2);
    background: #030202;
    color: white;
    z-index: 100;
}

.nav-bar > h1 {
    font-family: Avenida, Helvetica;
    font-size: 45px;
    text-align: center;
    margin: 0;
    font-weight: 100;
}

.nav-bar > .socials {
    right: 70px;
}

.nav-bar > .socials i {
    font-size: 20px;
    margin-left: 15px;
}

/* Hero */

.hero-image {
    background: url('./img/hero-2-min.jpg') no-repeat fixed;
    background-position: center;
    background-size: 100%;
    height: 700px;
}

/* Intro block */

.intro {
    width: 50%;
    margin: 60px auto;
    text-align: center;
}

.intro > h2 {
    font-family: Avenida, Helvetica;
    color: #d1000a;
    font-size: 60px;
    margin-bottom: 35px;
    font-weight: lighter;
}

.intro > iframe {
    margin-top: 20px;
    width: 700px;
    height: 350px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Tony Jacobs Orchestra into block */

.tony-jacobs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 500px;
}

.tony-about, .tony-image {
    width: 50%;
    height: 100%;
}

.tony-about {
    background-color: #fef0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
}

.tony-image {
    overflow: hidden;
    position: relative;
    right: 0;
    /* height: 500px; */
}

.tony-image > img {
    width: 100%;
}

.tony-about > h2 {
    margin: 0 0 10px 0;
}

.tony-about > p {
    margin: 15px 0;
}

/* TJO Dancers block */

.tjo-dancers {
    width: 60%;
    margin: 60px auto;
    text-align: center;
}

.tjo-images {
    column-count: 2;
    column-gap: 24px;
    margin: 30px auto 0 auto;
}

.tjo-images > .item {
    display: block;
    margin: 0 0 24px;
    width: 100%;
}

.tjo-images > .item > img {
    max-width: 100%;
}

.tjo-dancers > h2 {
    margin: 0 0 10px 0;
}

/* Testimonials block */

.testimonials {
    padding: 60px 0;
    background: radial-gradient(#450003, black);
}

.splide {
    padding: 0 50px;
    width: 80%;
    margin: 0 auto;
}

.splide > h2 {
    margin: 0 0 25px 0;
    color: white;
}

.testimonial-quote {
    color: white;
    font-size: 20px;
    margin-bottom: 0;
}

.testimonial-author {
    color: #eee;
    font-size: 14px;
}

.splide__track {
    background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1));
    margin-bottom: 30px;
    text-align: center;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px 20px 20px 20px;
}

/* Gallery */

.gallery {
    width: 60%;
    margin: 60px auto;
    text-align: center;
}

.gallery > h2 {
    margin: 0 0 10px 0;
}

.gallery-images {
    column-count: 2;
    column-gap: 24px;
    margin: 30px auto 0 auto;
}

.gallery-images > .item {
    display: inline-block;
    margin: 0 0 24px;
    width: 100%;
}

.gallery-images > .item > img {
    max-width: 100%;
}

/* Contact */

.contact {
    background-color: #fef0f5;
    text-align: center;
    padding: 50px 0;
}

.contact > h2 {
    margin: 0 0 25px 0;
}

.address {
    margin: 0 0 25px 0;
}

.phone {
    margin: 0;
}

.email {
    margin: 0;
}

.email a {
    color: black;
}

.email a:visited {
    color: black;
}

/* Footer */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

footer > p {
    color: #444;
    font-size: 13px;
}

footer > .socials i {
    font-size: 20px;
    margin: 0 6px;
    color: black;
}

@media(max-width: 1800px) {
    .tony-jacobs {
        height: 400px;
    }
}

@media(max-width: 1400px) {
    .tony-about {
        width: 40%;
    }

    .tony-image {
        width: 60%;
    }

    h2 {
        font-size: 30px;
    }

    .tony-about > h2 {
        margin: 0 0 7px 0;
        line-height: 150%;
    }

    p {
        font-size: 18.5px;
    }

    .tony-about > p {
        line-height: 140%;
        margin: 10px 0;
    }
}


@media(max-width: 1200px) {
    .hero-image {
        background-position: top;
        background-size: 100%;
        height: 510px;
    }

    .intro > iframe {
        width: 100%;
        height: 250px;
    }

    .tony-jacobs {
        flex-direction: column;
        height: auto;
    }

    .tony-about {
        padding: 40px 20% 20px 20%;
        width: 100%;
        text-align: center;
    }

    .tony-image {
        text-align: center;
        width: 100%;
        padding-bottom: 30px;
        background-color: #fef0f5;
    }

    .tony-image > img {
        width: 60%;
        box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4);
        border: 1px solid white;
    }

    .testimonial-quote {
        font-size: 17.5px;
    }

    .intro > h2 {
        font-size: 50px;
    }
}

@media(max-width: 900px) {
    .hero-image {
        height: 380px;
    }

    .nav-bar > h1 {
        font-size: 30px;
    }

    .nav-bar {
        padding: 0 20px;
    }

    .intro,
    .tony-image > img,
    .tjo-dancers,
    .splide,
    .gallery {
        width: 80%;
    }

    .tony-about {
        padding: 40px 10% 20px 10%;
    }
}

@media(max-width: 700px) {
    .hero-image {
        background-size: 110%;
        height: 300px;
    }

    .gallery-images > .item,
    .tjo-images > .item {
        margin: 0 0 5px;
    }

    .gallery-images,
    .tjo-images {
        column-gap: 10px;
    }
}

@media(max-width: 550px) {
    .hero-image {
        height: 200px;
    }

    .nav-bar > .socials {
        display: none;
    }

    .nav-bar {
        flex-direction: column;
        justify-content: center;
    }

    .nav-bar > h1 {
        font-size: 40px;
    }

    .intro,
    .tony-image > img,
    .tjo-dancers,
    .splide,
    .gallery {
        width: 90%;
    }

    .tony-about {
        padding: 40px 5% 20px 5%;
    }
}

@media(max-width: 400px) {
    .nav-bar > h1 {
        font-size: 35px;
        line-height: 110%;
    }

    .hero-image {
        height: 180px;
    }

    .splide {
        width: 100%;
    }
}