body {
    background-color: #fff;
    color: #000;
    scroll-behavior: smooth;
    width: 98vw;
    height: fit-content;
    margin: 0 auto;
    overflow-x: hidden;
    scrollbar-width: none;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

header {
    width: 96%;
    height: 56px;
    margin: 0 auto;
    padding: 0 8px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    top: 0;
    z-index: 1;
    position: sticky;
}

header h1 {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: left;
    align-items: center;
    font-size: 28px;
    font-family: "Macondo";
    font-weight: 400;
    font-style: normal;
}

.menu {
    display: none;
}

nav {
    width: 50%;
}

nav ul {   
    display: flex;
    flex-flow: row;
    justify-content: right;
    align-items: center;
}

ul li {
    list-style: none;
    margin-left: 32px;
}

li a {
    font-size: 12px;
    color: #000;
    text-decoration: none;
    font-family: "Macondo";
    font-weight: 400;
    font-style: normal;
}

li a:hover {
    opacity: 60%;
}

li .cart {
    width: 14px;
    height: 14px;
    margin-left: -24px;
    margin-top: 8px;
    animation: cart  4s infinite;
}

@keyframes cart { 
    100% {
        transform: rotate(360deg);
    }
}

nav ul li img:hover {
    animation-play-state: paused;
}

.header-hr {
    top: 56px;
    z-index: 1;
    position: sticky;
}

main {
    width: 96%;
    height: max-content;
    margin: 0 auto;
    margin-bottom: 40px;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    align-items: center;
}

.intro {
    width: 100%;
    height: max-content;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
}

.intro h2 i {
    color: #d87093;
}

.intro .paragraph-container {
    width: 80%;
    height: 60vh;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
}

.intro .paragraph-container img {
    width: 32%;
    height: 100%;
    border-top-left-radius: 16%;
    border-top-right-radius: 16%;
}

.intro .paragraph-container .paragraph {
    width: 48%;
}

.container {
    width: 100%;
    height: max-content;
    margin-top: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}

.statement, .journey, .approach, .cta {
    width: 48%;
}

.container p a {
    text-decoration: none;
    color: #000;
    cursor: auto;
}

.cta-btn {
    background-color: #000;
    color: #fff;
    border: 4px solid #000;
    border-radius: 12px;
    padding: 4px 12px;
    text-decoration: none;
    font-size: 12px;
}

.cta-btn:hover {
    opacity: 80%;
}

.home-btn {
    position: sticky;
    bottom: 4%;
    left: 100%;
    z-index: 1;
    overflow: hidden;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    scroll-behavior: smooth;
}

footer {
    width: 96%;
    height: 40px;
    margin: 0 auto;
    padding: auto;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

footer .icon-container {
    width: fit-content;
    height: 100%;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
}

footer p {
    font-size: 16px;
    font-style: italic;
}

footer .icon-container .icon {
    width: 18px;
    height: 18px;
    margin-left: 20px;
}

footer .icon-container .icon:hover {
    opacity: 60%;
}

@media screen and (max-width: 912px) {
    .intro .paragraph-container  {
        width: 96%;
        height: 40vh;
    }
    
    .intro .paragraph-container img {
        width: 40%;
    }

    .container {
        flex-flow: column;
    }

    .statement, .journey, .approach, .cta {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header {
        height: 48px;
        padding: 0 8px;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
        top: 0;
        z-index: 1;
        position: sticky;
        scrollbar-width: none;
    }

    header h1 {
    font-size: 20px;
    }

    .menu {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        display: flex;
        flex-flow: row;
        float: right;
        cursor: pointer;
    }

    #menuList {
        transition: all 0.25s;
    }
    nav ul {
        width: 96%;
        height: 96vh;
        margin: 0 auto;
        flex-flow: column;
        top: 40px;
        right: 0;
        position: absolute;
        z-index: 1;
        overflow: hidden;
        background-color: #fff;
        display: flex;
        flex-flow: column; 
        justify-content: center;
        align-items: center;
    }

    ul li {
        margin-bottom: 28px;
        margin-left: -20px;
    }

    ul li a {
        color: #000;
    }

    ul .cart {
        margin: 0 auto;
        margin-top: 0;
    }

    .header-hr {
        top: 48px;
    }

    .intro .paragraph-container {
        width: 100%;
        height: max-content;
        flex-flow: column;
    }

    .intro .paragraph-container img {
        width: 88%;
        margin: 0 auto;
    }

    .intro  .paragraph-container .paragraph {
        width: 100%;
        margin-top: 20px;
    }

    .container {
        flex-flow: column;
        margin-top: 20px;
    }

    .statement, .journey, .approach, .cta {
        width: 100%;
    }

    .container hr {
        display: none;
    }
}

@media screen and (max-width: 480px) {    
    header h1 {
        font-size: 20px;
        margin-top: 4px;
    }

    .menu {
        width: 16px;
        height: 16px;
    }
    
    main {
        width: 92%;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    footer p{
        font-size: 12px;
    }

    footer .icon-container .icon {
        width: 16px;
        height: 16px;
        margin-left: 12px;
    }
}

@media screen and (max-width: 328px) {
    header h1 {
        font-size: 16px;
    }

    footer .icon-container .icon {
        width: 14px;
        height: 14px;
        margin-left: 12px;
    }

}

