@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700|Karla&display=swap');

body{
    margin: 0;
    padding: 0;
    background-color: #181818;
    color: white;
}

h1{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;

    font-size: 6.2em;
    letter-spacing: -8px;
    line-height: 0.9;
    word-wrap: break-word;

}

h2{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;

    font-size: 2.8em;
    letter-spacing: -2px;
}

p {
    font-family: Candara;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
}

a {

    color: white;
}

a:hover {
    text-decoration: none;
    color: #b2b2b2;
}

.btn {
    background: #b2b2b2;
    padding: 12px 25px 10px 25px;
    margin-top: 30px;
    text-transform: uppercase;
}

.btn:hover {
    background: white;
}

.showcase {
    height: 100vh;
    width: 100%;
    background-image: url('../img/bg/bg-split.jpg');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    color: white;
    text-transform: uppercase;
    padding: 5% 15%;
}

.content {
    padding: 0 10%;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #181818;
    color: white;
}

.text-box {
    padding: 10%;
}

.text-box h2 {
    margin: 0;
    margin-bottom: 30px;
}

.text-box p {
    padding: 0;
}

.short-line {
    height: 5px;
    width: 50px;
    margin-bottom: 30px;
    background: white;
}

.footer {
    background: #181818;
}

.sub-header {
    min-height: 50vh;
    padding: 15px 25%;
    background-color: #181818;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* .sub-header h2 a{
    color: white;
} */

.gallery {
    padding: 0 15%;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.gallery-img {
    height: 400px;
}

.gallery-row {
    height: 350px;
}

.double {
    height: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gallery .title {
    margin-bottom: 30px;
}

#img01 {
    background-image: url('../img/gallery/img01.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#img02 {
    background-image: url('../img/gallery/img02.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#img03 {
    background-image: url('../img/gallery/img03.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    grid-area: 2/1/span 1/ span 2;
}

/* TABLET */

@media (max-width: 980px) {
    .showcase {
        display: grid;
        grid-template-columns: 1fr;
        padding: 5% 10%;
    }
    .right {
        grid-area: 1/1/span 1/span 1;
        margin-bottom: 50px;
    }
    .right img {
        height: 150px;
        width: auto;
    }
    .content {
        grid-template-columns: 1fr;
    }
    .gallery {
        padding: 0 30px;
    }
    .gallery-grid {
        gap: 30px;
    }
}

/* PHONE*/

@media (max-width: 630px) {
    h1 {
        font-size: 2.6em;
        letter-spacing: -4px;
    }
    .showcase {
        padding-bottom: 0;
    }
    .showcase p {
        font-size: 0.8em;
    }
    .content {
        padding: 0 10%;
        margin-bottom: 0;
    }
    .text-box {
        padding: 5%;
        margin-bottom: 100px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    #img03 {
        grid-area: 3/1/span 1/ span 1;
    }
}