/*--- font ---*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

/*--- main selectors ---*/
body {
    font-family: 'Roboto', sans-serif;
    color: white;
    background-color: black;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    margin: 0;
    font-weight: 400;
}

/*h1, h2, h3 {
    max-width: 50ch;
}*/

h1 {
    font-size: 3.3rem;
    line-height: 3.3rem;
}

h2 {
    font-size: 2.6rem;
    line-height: 2.6rem;
}

h3 {
    font-size: 2.3rem;
    line-height: 2.3rem;
}

h4 {
    font-size: 1.3rem;
    line-height: 1.5rem;
    /*max-width: 70ch;*/
}

h5 {
    font-size: 1.2rem;
    line-height: 1.4rem;
    /*max-width: 100ch;*/
}

p {
    font-size: 1rem;
    line-height: 1.2;
    /*max-width: 100ch;*/
}

a {
    color: #a24d22;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    text-decoration: underline;
}

/*--- hero section ---*/
.hero-section {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-creator {
    background-image: url("../images/small/jef12a.png");
}

.hero-soul {
    background-image: url("../images/small/jef6.png");
    background-position-x: 50% !important;
}

.soul-bg {
    background-color: #050503;
}

.hero-our {
    background-image: url("../images/small/jef10.png");
    background-position-x: 50% !important;
}

.our-bg {
    background-color: #342017;
}

.hero-section .hero-text {
    color: white;
    font-size: 1.2rem;
    line-height: 2.5rem;
    max-width: 15rem;
}

/*--- buttons ---*/
.btn {
    font-size: 1rem;
    min-height: 2rem;
    cursor: pointer;
    border: none;
    border-radius: 4rem;
    padding: 1rem 2rem;
    transition: 0.3s;
}

.btn:hover, .btn:active, .btn:focus {
    padding: 1.5rem 2.5rem;
    font-weight: 700;
}

a.btn {
    text-decoration: none !important;
}

.btn:hover, .btn:active, .btn:focus {
    outline: none;
}

.btn-soul {
    background: #342017;
    color: white;
}

.btn-soul:hover, .btn-soul:focus, .btn-soul:active {
    background: #6e2200;
}

.btn-our {
    background: #050503;
    color: white;
}

.btn-our:hover, .btn-our:focus, .btn-our:active {
    background: #6e2200;
}

/*--- margins ---*/

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.5rem;
}

.m-2 {
    margin: 1rem;
}

.m-3 {
    margin: 1.5rem;
}

.m-4 {
    margin: 2rem;
}

.m-5 {
    margin: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/*--- various helper classes ---*/
.w-100 {
    width: 100%;
}

.color-white {
    color: white;
}

.background-brand {
    background: #081614;
}

.secondary-text {
    color: #6B6B6B;
}

.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

.extra_bold {
    font-weight: 800;
}

.shadow {
    -webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow:    7px 7px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow:         7px 7px 5px 0px rgba(50, 50, 50, 0.2);
}

.text-shadow {
    text-shadow: 2px 2px #0d171c;
}

/*--- custom classes ---*/


/*--- responsive behaviour ---*/

@media (max-width: 399px) {
    h1 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        line-height: 2rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    h4 {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    h5 {
        font-size: 1.1rem;
        line-height: 1.2rem;
    }

    .hero-section {
        background-size: 230%;
        background-position-x: 5%;
        background-position-y: 20%;
    }

    .hero-soul {
        background-size: 280%;
    }

    .hero-our {
        background-size: 280%;
    }

    .hero-section .hero-text {
        font-size: 0.9rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 400px) {

    h1 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    h2 {
        font-size: 2rem;
        line-height: 2rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.7rem;
    }

    h4 {
        font-size: 1.2rem;
        line-height: 1.4rem;
    }

    h5 {
        font-size: 1.1rem;
        line-height: 1.2rem;
    }

    .hero-section {
        background-position: 35% 50%;
        background-size: 200%;
        background-position-x: 0;
        background-position-y: 20%;
    }

    .hero-soul {
        background-size: 280%;
    }

    .hero-our {
        background-size: 280%;
    }

    .hero-section .hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 639px) {
    .reverse {
        flex-direction: column-reverse;
    }
}

@media (min-width: 640px) {

    .hero-section {
        background-size: 180%;
        background-position-x: 0;
        background-position-y: 20%;
    }

    .hero-soul {
        background-size: 280%;
    }

    .hero-our {
        background-size: 280%;
    }

    .hero-section .hero-text {
        color: white;
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 1040px) {
    .btn {
        font-size: 2rem;
    }

    .hero-section {
        background-size: 150%;
        background-position-x: 0;
        background-position-y: 20%;
        min-height: 100vh;
    }

    .hero-soul {
        background-size: 200%;
    }

    .hero-section .hero-text {
        color: white;
        font-size: 1.5rem;
        line-height: 3rem;
        max-width: 24rem;
    }
}

@media (min-width: 1200px) {

    .hero-section {
        background-size: 130%;
        background-position-x: 0;
        background-position-y: 20%;
    }

    .hero-soul {
        background-size: 150%;
    }

    .hero-section .hero-text {
        color: white;
        font-size: 1.5rem;
        line-height: 3rem;
        max-width: 24rem;
    }

}