:root {
    --white: #F2F2F2;
    --yellow: #dca530;
    --dk-yellow: #fcc650;
    --black: #181413;
    --brown: #684551;
}

body {
    font-family: 'Lato', sans-serif;
}

.inner-container {
    padding: 0 1rem;
}

h1 {
    font-family: 'Hurricane', cursive;
    font-size: 3rem;
    text-align: center;
    font-weight: 400;
}

h2 {
    font-size: 4rem;
    font-weight: 300;
}

p {
    margin-bottom: 1.5rem;
}

.btn {
    background-color: var(--yellow);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--black);
    display: inline-block;
}


/* *********************************** header ************************************** */
header {
    background-color: var(--brown);
    color: var(--white);
    position: sticky;
    top: -100px;
}

header p {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.2rem;
    margin-bottom: 0;
}


header button {
    background: var(--brown);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
}

header button:hover {
    transition: all 0.1s ease-in-out;
    color: var(--dk-yellow);
}

header svg {
    width: 2.375rem;
}

header .signup {
    color: var(--white);
    text-decoration: none;
}

ul.signup-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
}

section.hero {
    background-image: url(../img/hero-mobile.webp);
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
}

.hero .inner-container{
    min-height: calc(100vh - 11rem);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 1rem;
}

section.parallax {
    background-image: url(../img/splash-mobile.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.parallax .inner-container {
    padding: 1rem 1rem 1rem 45%;
}

.parallax h2 {
    font-size: 1.875rem;
}

section.h-scroll {
    background-color: var(--white);
    padding: 4rem 0;
    text-align: center;
    /* padding: 1rem; */
    
    /* display: flex;
    overflow: scroll; */
}

.h-scroll section{
    background-color: #fff;
    margin: 1rem 1rem 2rem 1rem;
    padding: 1rem;
    flex: 0 0 24rem;
    /* give your scroll / flex items a defined width */
}

.h-scroll p:last-of-type{
    text-align: left;
}

.scroll-container {
    display: flex;
    overflow: scroll;
}

.scroll-container h2{
    font-size: 1.875rem;
    font-weight: bold;
}

/* when using newer properties that are browser dependent, check caniuse.com */
.scroll-container::-webkit-scrollbar {
    height: 0.5rem;
}

.scroll-container::-webkit-scrollbar-track {
    background-color: #e2e2e2;
    border-radius: 0.5rem;
}

.scroll-container::-webkit-scrollbar-thumb {
    border: none;
    background-color: var(--yellow);
    border-radius: 0.5rem;
}

footer {
    background-color: var(--brown);
    color: var(--white);
    padding: 3rem 0;
}

footer h2 {
    font-size: 2rem;
    text-transform: uppercase;
}

footer a{
    color: var(--white);
    text-decoration: none;
}

footer a:hover{
    color: var(--yellow);
}

footer .columns{
    margin: 3rem 0;
}

form div {
    min-width: 100%;
}

input[name="email"] {
    /* display: inline-block; */
    min-width: 75%;
    /* height: 30px; */
}

input[type="submit"] {
    display: inline-block;
    min-width: 20%;
    border: none;
    background-color: var(--yellow);
    height: 30px;
    margin: -4px;
}


@media screen and (min-width:1024px) {
    .inner-container {
        width: 1024px;
        margin: 0 auto;
    }

    .form-section {
        display: flex;
        height: 8rem;
    }

    .form-section > div {
        width: 70%;
    }

    .form-section form {
        padding-top: 5%;
        width: 40%;
    }

    section.parallax {
        background-image: url(../img/splash.webp);
    }

    section.hero {
        background-image: url(../img/hero.webp);
    }

    .parallax .inner-container {
        padding-left: 30%;
    }

    footer .columns{
        margin: 0;
        margin-bottom: 2rem;

        display: flex;
        justify-content: space-between;
    }
}