:root {
    --_colours---purple: #756070;
    --_colours---magenta: #d01dd0;
    --_colours---lightpink: #fed2ff;
    --_colours---darkpink: #8c6c7f;
    --_colours---secondaryBackgroundColour: #f9f9f9;

}

* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: "Montserrat", sans-serif;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

section {
    margin-right: 30px;
    margin-left: 30px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.small-container {
    width: 100%;
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.cursive-font {
    font-family: "Dancing Script", sans-serif;
}

/* TEXTS */

h1 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 44px;
    font-weight: 400;
    line-height: 62px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
}

h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
}

p {
    margin-bottom: 10px;
}

label {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

footer {
    height: 150px;
    background-color: grey;
}

/* ----- LINKS ----- */
a {
    color: #1a1b1f;
    text-decoration: none;
    transition: opacity 0.2s;
    display: block;
}

a:active {
    color: #43464d;
}

.primary-button {
    color: #fff;
    letter-spacing: 1px;
    display: inline-block;

    padding: 10px 16px;
    background-color: #8c6c7f;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: lighter;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.primary-button:hover {
    background-color: #a38398;
}

.secondary-button {
    padding: 12px 25px 12px 25px;
    /*
    padding-top: 12px; 
    padding-right: 25px; 
    padding-bottom: 12px; 
    padding-left: 25px; 
    */
    background-color: white;
    color: black;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}

.banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;

    color: white;
    padding: 0 20px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    /* so overlay doesn’t block clicks */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    /* make sure text is above overlay */
}

.banner-title {
    font-size: 48px;
    margin: 0;
    padding-bottom: 10px;
}

.banner-description {
    font-size: 16px;
    margin: 0;
    color: #f0f0f0;
}

@media screen and (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 769px) {
    .hide-on-desktop {
        display: none !important;
    }
}