:root {
    --purpleBackground: rgba(104, 71, 141, 0.9);
    --purpleSolid: #68478D;
    --greenBackground: rgba(0, 59, 27, 0.5);
    --greenSolid: #003B1B
}

@keyframes btnHoverEffect {
    from {
        scale: 1;
    }

    to {
        scale: 1.1;
    }
}

h1 {
    font-weight: 400;
    font-size: 5em;
    text-transform: uppercase;
    margin: 0;
}

h2 {
    font-size: 4em;
    text-transform: uppercase;
    margin: 0;
}

h3 {
    font-size: 2em;
    text-transform: capitalize;
    margin: 0;
}

p {
    font-size: max(1.5em, 16px);
}

a {
    color: black;
    text-decoration: none;
}

body {
    background-color: var(--greenSolid);
    margin: 0;
    padding: 0;
    font-family: "Ovo", serif;
    font-weight: 400;
    font-style: normal;
}

#header {
    width: calc(100%-30px);
    height: 50px;
    padding: 0 15px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#site-title {
    font-size: 2.5em;
    width: 20%;
    display: inline-block;
}

#site-title a {
    color: white;
}

#site-nav {
    width: 80%;
    float: right;
    text-align: right;
    font-size: 1.5em;

}

#site-nav ul {
    margin: 0;
}

#site-nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0 15px 0 15px;
}

#site-nav ul li a {
    color: white;
}

.active a {
    color: var(--purpleSolid) !important;
}

#footer {
    margin: 30px 0 0 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

#hero {
    width: 100%;
    height: 60vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    box-shadow: 0 0 20px var(--greenSolid);
    display: block;
    padding: 20px 0px 30px 0px;
    background-color: var(--purpleBackground);
    border-radius: 5px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.natural-design {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 60%;
}

.flip-image {
    transform: scaleY(-1);
}

.btn {
    font-family: "Ovo", serif;
    font-weight: 400;
    font-style: normal;
    border-width: 0;
    background-color: var(--greenSolid);
    font-size: 1.5em;
    padding: 10px;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    cursor: pointer;
}

.expanding-section {
    animation: shrinkSection .5s;
    width: 100%;
    height: 25vh;
    filter: grayscale(100%);
    overflow: hidden;
}

.expanding-section:hover {
    animation: growSection .5s;
    animation-direction: normal;
    height: 50vh;
    filter: grayscale(0%);
}

.expanding-section:hover .text-image-overlay {
    animation: textBackFadeIn 0.25s forwards;
}

.section {
    width: 100%;
    min-height: 500px;
    background-color: white;
}

.half-section {
    width: 50%;
    float: left;
}

.text-padding {
    padding: 0 15px;
}
@media (min-width: 1281px) {

}
@media (max-width: 1280px) {

    .expanding-section {
        display: grid;
        /* Enable grid layout */
        place-items: center;
        /* Center content both horizontally and vertically */
        overflow: hidden;
        /* Clip image if it overflows (optional) */
    }

    h1 {
        font-weight: 400;
        font-size: 3em;
        text-transform: uppercase;
        margin: 0;
    }

    h2 {
        font-size: 2em;
        text-transform: uppercase;
        margin: 0;
    }

    h3 {
        font-size: 1em;
        text-transform: capitalize;
        margin: 0;
    }


    .section {
        min-height: 50vh;
    }

    .half-section {
        width: 100%;
        float: none;
    }

    .container {
        padding: 0 10px 0 10px;
    }

    #hero {
        height: 25vh;
    }

    #site-title {
        display: none;
    }

    #site-nav {
        width: 100%;
    }
}