:root {
    --spacing-gigantic: 11.391rem;
    --spacing-ginormous: 7.594rem;
    --spacing-humongous: 5.063rem;
    --spacing-massive: 3.375rem;
    --spacing-large: 2.25rem;
    --spacing-big: 1.5rem;
    --spacing-normal: 1rem;
    --spacing-small: 0.667rem;
    --spacing-tiny: 0.444rem;

    --font-gigantic: 11.391rem;
    --font-ginormous: 7.594rem;
    --font-humongous: 5.063rem;
    --font-massive: 3.375rem;
    --font-large: 2.25rem;
    --font-big: 1.5rem;
    --font-normal: 1rem;
    --font-small: 0.667rem;
    --font-tiny: 0.444rem;

    --weight-extra-bold: 800;
    --weight-bold: 700;
    --weight-semi: 600;
    --weight-medium: 500;
    --weight-normal: 400;
    --weight-light: 300;
    --weight-extra-light: 200;
    --weight-thin: 100;
}

:root {
    --h1: var(--weight-bold) clamp(var(--font-large), 5vw, var(--font-humongous))/calc(clamp(var(--font-large), 5vw, var(--font-humongous)) * 1.2) "Times New Roman";
    --h2: var(--weight-bold) clamp(var(--font-big), 4vw, var(--font-massive))/calc(clamp(var(--font-big), 4vw, var(--font-massive)) * 1.2) "Times New Roman";
    --h3: var(--weight-bold) clamp(var(--font-normal), 3vw, var(--font-big))/calc(clamp(var(--font-normal), 3vw, var(--font-big)) * 1.2) "Times New Roman";
    --p1: var(--weight-normal) clamp(var(--font-normal), 2vw, calc(var(--font-normal) * 1.2))/calc(clamp(var(--font-normal), 2vw, calc(var(--font-normal) * 1.2)) * 1.2) "Times New Roman";;
    --p2: var(--weight-normal) clamp(var(--font-small), 1vw, var(--font-normal))/calc(clamp(var(--font-small), 1vw, var(--font-normal)) * 1.2) "Times New Roman";;
    --p3: var(--weight-normal) clamp(var(--font-tiny), 0.5vw, var(--font-small))/calc(clamp(var(--font-tiny), 0.5vw, var(--font-small)) * 1.2) "Times New Roman";;
}

.h1 {
    font:var(--h1)
}

.h2 {
    font:var(--h2)
}

.h3 {
    font:var(--h3)
}

.p1 {
    font:var(--p1)
}

.p2 {
    font:var(--p2)
}

.p3 {
    font:var(--p3)
}





@layer reset, default, override;
@layer reset {
    * {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        box-sizing: border-box;
    }

    body {
        height: 100dvh;
        width: 100dvw;
    }
}

@layer override {
    
}


body, header, main, footer {
    width: 100%;
}

body {
    width: 100%;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;
    place-content: stretch start;
}

main {
    flex: 1 1 auto;
}

header, footer {
    flex: 0 0 auto;
}

main {
    display: flex;
    flex-direction: column;
    place-content: center center;
}

/* .navigation, .hero, .about-us, .our-home, .our-history, .discover, .footer {
    
} */

.section {
    width: 100%;
    padding: 2rem 2rem 2rem 2rem;
}

.section .content {
    width: 100%;
    max-width: 80rem;
    margin: auto;
}

.navigation {
    padding: 1rem 2rem 0rem 2rem;

    display: flex;
    place-content: center start;
    place-items: center center;
    gap: 0rem 3rem;
}

.navigation .logo {
    height: 4rem;
}

.navigation a {
    color: white;
    text-decoration: none;
}

.hero {
    width: 100%;
    /* height: 40dvh; */
    position: relative;
    overflow: hidden;
}

.hero .background {
    height: 100%;
    width: 100%;

    z-index: -1;
    position: absolute;
    object-fit: cover;

    filter: blur(10px) brightness(0.7);
    transform: scale(1.1);
}

.hero .meat {
    padding: 1rem 1rem 2rem 1rem;
    display: flex;
    flex-direction: column;
    place-content: center center;
    place-items: center center;
}

.hero .meat .content {
    width: 50%;
    text-align: center;
    color: white;
}


.about-us .content {
    text-align: center;
}

/* .about-us .candy {
    display: flex;
    place-content: center center;
    place-items: center center;
    gap: 0;
} */

.about-us .candy > * {
    width: 20%;
    margin: 0 -3%;
    aspect-ratio: 1/1;

    vertical-align: bottom;
    position: relative;

    border-radius: 100%;
    border: 0.5rem solid white;
}

.about-us .candy > *:nth-child(1) {
    top: -0rem;
    z-index: 1;
}

.about-us .candy > *:nth-child(2) {
    top: -1rem;
    z-index: 2;
}

.about-us .candy > *:nth-child(3) {
    width: 25%;
    top: -1rem;
    z-index: 3;
}

.about-us .candy > *:nth-child(4) {
    top: -1rem;
    z-index: 2;
}

.about-us .candy > *:nth-child(5) {
    top: -0rem;
    z-index: 1;
}



/* .our-home .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
} */

.our-home .content {
    display: flex;
    place-content: center center;
    place-items: center center;
    gap: 0 5%;
}

.our-home .content .meat {
    flex: 1 1 65%;
    padding: 5rem 0rem;
}

.our-home .content .candy {
    --max-circle-width: 13rem;
    --max-container-width: 20rem;
    
    flex: 1 1 30%;
    height: 100%;

    display: flex;
    flex-direction: column;
    place-content: stretch center;
    place-items: center center;
    max-width: var(--max-container-width);
}

.our-home .candy > * {
    display: block;
    border-radius: 100%;
    border: 0.5rem solid white;
}

.our-home .candy > *:nth-child(1) {
    /* flex: 1 0 33%; */
    width: 60%;
    max-width: calc(var(--max-circle-width) * 0.6);
    aspect-ratio: 1/1;
    margin: 0 auto 0 20%;
}

.our-home .candy > *:nth-child(2) {
    /* flex: 1 0 33%; */
    width: 80%;
    max-width: calc(var(--max-circle-width) * 0.8);
    aspect-ratio: 1/1;
    margin: max(-20%, calc(var(--max-circle-width) * -0.2)) 10% max(-30%, calc(var(--max-circle-width) * -0.3)) auto;
}

.our-home .candy > *:nth-child(3) {
    /* flex: 1 0 33%; */
    width: 100%;
    max-width: calc(var(--max-circle-width) * 1);
    aspect-ratio: 1/1;
    margin: 0 auto 0 0;
}






.our-history .content {
    display: flex;
    place-content: center center;
    place-items: center center;
    gap: 0 5%;
}

.our-history .content .meat {
    flex: 1 1 65%;
    padding: 5rem 0rem;
}

.our-history .content .candy {
    --max-circle-width: 13rem;
    --max-container-width: 20rem;
    
    flex: 1 1 30%;
    height: 100%;

    display: flex;
    flex-direction: column;
    place-content: stretch center;
    place-items: center center;
    max-width: var(--max-container-width);
}

.our-history .candy > * {
    display: block;
    border-radius: 100%;
    border: 0.5rem solid white;
}

.our-history .candy > *:nth-child(1) {
    /* flex: 1 0 33%; */
    width: 60%;
    max-width: calc(var(--max-circle-width) * 0.6);
    aspect-ratio: 1/1;
    margin: 0 20% 0 auto;
}

.our-history .candy > *:nth-child(2) {
    /* flex: 1 0 33%; */
    width: 80%;
    max-width: calc(var(--max-circle-width) * 0.8);
    aspect-ratio: 1/1;
    margin: max(-20%, calc(var(--max-circle-width) * -0.2)) auto max(-30%, calc(var(--max-circle-width) * -0.3)) 10%;
}

.our-history .candy > *:nth-child(3) {
    /* flex: 1 0 33%; */
    width: 100%;
    max-width: calc(var(--max-circle-width) * 1);
    aspect-ratio: 1/1;
    margin: 0 0 0 auto;
}

/* .our-history .candy > *:hover {
    transform: scale(1.1);
    z-index: 5;
    transition: z-index 0.5s, transform 0.5s;
} */

/* .our-history .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-content: stretch stretch;
    column-gap: 4rem;
} */

.discover .content {
    display: block;
    text-align: center;
}

.discover .meat {
    margin-bottom: 1rem;
}

.discover .candy {
    width: 100%;
    margin: auto;

    display: flex;
    place-content: center center;
    flex-flow: row wrap;

    gap: 1rem;
}

.discover .candy > * {
    position: relative;
    min-width: 15rem;
    width: 100%;
    max-width: calc(50% - 1rem * 0.5);
    border-radius: 30px;
    aspect-ratio: 17/9;
    overflow: hidden;
    box-shadow: 0px 30px 10px -25px rgba(0, 0, 0, 0.7);
}

.discover .candy .layer {
    position: absolute;
}

/* .discover .candy :is(.layer1,.layer2,.layer4) {
    width: 100%;
    height: 100%;
    position: absolute;
} */

.discover .candy .layer1 {
    width: 100%;
    height: 100%;
    inset: 0 0 0 0;
}

.discover .candy .layer2 {
    width: 100%;
    height: 100%;
    inset: 0 0 0 0;
    background-color: rgba(58, 0, 53, 0.33);
}

.discover .candy > :nth-child(odd) .layer3 {
    width: 80%;
    aspect-ratio: 1/1;
    inset: auto auto 0 0;
    transform: translate(-30%, 40%);
    background-color: rgb(174, 132, 166, 0.60);
    border-radius: 100%;
}

.discover .candy > :nth-child(even) .layer3 {
    width: 80%;
    aspect-ratio: 1/1;
    inset: auto 0 0 auto;
    transform: translate(30%, 40%);
    background-color: rgb(174, 132, 166, 0.60);
    border-radius: 100%;
}

.discover .candy > :nth-child(odd) .layer4 {
    width: 100%;
    padding: 0% 5% 5% 5%;

    position: absolute;
    inset: auto auto 0 auto;

    display: flex;
    place-content: center start;
    place-items: center center;
    gap: 1vw;
}

.discover .candy > :nth-child(even) .layer4 {
    width: 100%;
    padding: 0% 5% 5% 5%;

    position: absolute;
    inset: auto auto 0 auto;

    display: flex;
    place-content: center end;
    place-items: center center;
    gap: 1vw;
}

.discover .candy .layer4 .text  {
    color: white;
    font-size: min(5vw, 4rem);
    font-weight: 700;
    text-shadow: black 2px 2px 4px;
}

.discover .candy .layer4 .icon  {
    height: 4vw;
    filter: drop-shadow(black 2px 2px 4px);
}


.footer {
    width: 100%;

    background-color: #333;
    color: #fff;
    /* padding: 20px 0; */
    /* text-align: center; */
}

.footer .columns {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-flow: row nowrap;
    place-content: center center;
    place-items: stretch start;
    column-gap: 20px;
}

.footer .footer-section {
    flex: 1 1 100%;
}

.footer .footer-section.footer-logo {
    flex: 1 1 150%;
    display: flex;
    flex-direction: column;
    place-content: stretch end;
}

.footer .footer-section.footer-logo > :nth-child(1) {
    flex: 1 1 150%;
}

.footer .footer-section.footer-logo > :nth-child(1) > * {
    height: 100%;
}

.footer .footer-section.footer-logo > :nth-child(2) {
    flex: 0 0 0%;
    text-align: center;
}

.footer .footer-section.footer-logo div {
    margin-top: 10px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

.footer .footer-section:not(.footer-logo) {
    text-align: left;
}

.footer .footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer .footer-section nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .footer-section nav a:not(:first-child){
    margin-top: 10px;
}

.footer .footer-section nav a:hover {
    color: #aaa;
}

.footer .footer-section.footer-contact nav {
    display: flex;
    flex-flow: column nowrap;
    place-content: start start;
    place-items: start start;
}

.contact-icons img {
    width: 20px;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}
