@font-face {
  font-family: 'pepiye';
  src: url('fonts/pepiye.woff') format('woff2'),
}

@font-face {
  font-family: 'montserrat';
  src: url('fonts/Montserrat-Regular.woff2') format('woff2'),
}


:root {
    /* Colors */
    --color-main: #43083e;
    --color-secondary: #893267;
    --color-light: #b98ba7;
    --color-background: #eaeaea;
    --color-background-new: #F8EFF4;

    /*Typography*/
    --font-title: "pepiye";
    --font-text: "montserrat";

    /* Border-radius */
    --radius: 15px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

p {
    font-size: 0.85rem;
}

.color_main {
    color: var(--color-main);
}

.color_sec {
    color: var(--color-secondary);
}

.color_white {
    color: white;
}


a {
    text-decoration: none;
    color: inherit;
    outline: none;          /* Removes focus outline */
}

ul {
    list-style: none;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-title);
}

p {
    font-family: var(--font-text);
}

/* Utility classes */

.title {
    font-family: var(--font-title) !important;
}

.text {
    font-family: var(--font-text) !important;
}

.color-main {
    color: var(--color-main);
}

.color-sec {
    color: var(--color-secondary);
}

/* NavBar */

nav {
    box-sizing: border-box;
    /* width: 100vw; */
    height: 15vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* align-items: center; */
    padding-block: 15px;
    padding-inline: 5vw;
    background-color: var(--color-background);
}

nav > .logo {
    height: inherit - 20px;
    object-fit: contain;
}

nav > .menu {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}


.menu-item > a {
    color: var(--color-main);
    font-family: var(--font-title);
    font-size: 1.5rem;
}

/* Home */

.anchor {
    margin: 0;
}

/* .main_home_container {
    display: flex;
    flex-direction: row;
} */

.main-home {
    box-sizing: border-box;
    padding-inline: 5vw;
    background-color: var(--color-background);
}

.main-home > .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-home > .left > .content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: left;
    max-width: 550px;
}

.main-home > .right {
    min-width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-home > .right > img {
    max-height: 90%;
    max-width: 300px;
    object-fit: contain;
}

.cta-order {
    padding: 15px;
    background-color: var(--color-main);
    border-radius: 50px;
    border-width: 0;
    /* max-width: 250px; */
}

.cta-order > a {
    font-size: large;
    font-family: var(--font-text);
    color: white;
}

.bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    padding-inline: 5vw;
    background-color: white;
    box-sizing: border-box;
}

.trivia {
    min-width: 180px;
    height: inherit;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.trivia > img {
    height: 35%;
    object-fit: contain;
}

.trivia > p {
    font-size: 1rem;
}

/* Discovery */

.discovery > h2 {
    text-align: center;
}

.discovery {
    padding-inline: 5vw;    
}

.identity {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 5vw;
    padding-bottom: 5vh;
    margin-bottom: 5vh;
}

.identity > div {
    height: 40vh;
    min-height: 150px;
    margin-top: 4vh;
    margin-bottom: 4vh;
    padding-left: 3vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
}

.identity > .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    background-color: var(--color-main);
    /* width: 25vw; */
    min-width: 200px;
    border-radius: var(--radius);
}

.identity > .left > :is(p, h3, h4) {
    color: white;
    margin: 0;
}

.identity > .left > p {
    max-width: 40%;
}
.identity > .left > :is(h3, h4) {
    max-width: 70%;
}

.identity > .right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 65vw;
    min-width: 450px;
    border-radius: var(--radius);
    background-color: var(--color-background);
    margin: 0;
    overflow: clip;
}

.identity > .right > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    min-width: 40%;
    max-width: 70%;
} 

.identity > .right > div > :is(p, h3, h4) {
    margin: 0;
}

.identity > .right > div > p {
    text-align: justify;
}

.identity > .right > img {
    object-fit: cover;
    min-height: 140%;
    max-width: 60%;
    position: relative;
    left: 5%;
    bottom: 15%;
    border-top-left-radius: 70%;
    border-bottom-left-radius: 70%;
}

.history {
    height: 75vh;
    width: inherit;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: clip;
    border-radius: var(--radius);
    background-color: white;
    filter: drop-shadow(0 0 0.75rem);
}

.history > .text_container {
    padding: 5vh;
    max-width: 700px;
    /* display: flex;
    flex-direction: row;
    justify-content: center; */
}

.history > .text_container > p {
    text-align: justify;
}

.history > img {
    height: 100%;
    object-fit: cover;
}

/* Home Product */

.product_home {
    box-sizing: border-box;
    padding-inline: 5vw;
    padding-bottom: 3vh;
    display: flex;
    flex-direction: column;   
    /* background-color: var(--color-background);  */
}

.product_home > h2 {
    align-self: center;
}

.product_home > :is(.part_1, .part_2, .part_3) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 4vh;
    gap: 3vh;
}

.sticker_container {
    position: relative;    
    display: flex;
    flex-direction: column;
    height: 35vh;
    padding: 1vw;
    box-sizing: border-box;
    max-width: 350px;
    background-color: var(--color-background);
    border-radius: var(--radius);
}

.sticker_container > img {
    position: absolute;
    top: -10%;
    align-self: center;
    aspect-ratio: 1/1;
    height: 30%;
    padding: 5%;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--color-light);
}

.sticker {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;    
    margin-top: 25%;
    height: 70%;
}

.sticker > :is(p, h3) {
    margin:0;
}

.sticker > p {
    text-align: center;
}

.photo_product_container {
    height: 40vh;
    width: 30vw;
    border-radius: var(--radius);
    background-color: var(--color-secondary);
    filter: drop-shadow(0 0 0.75rem);
}

.photo_product {
    height: 75%;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);    
    overflow: hidden;
}

.photo_product > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo_product_container > h3 {
    margin: 0;
    margin-top: 7%;
    text-align: center;
}

.part_3 {
    margin-bottom: 5vh;
}

.fruit_container {
    height: 15vh;
}

.fruit_container > img {
    width: 100%;
    height: 100%;
    object-fit: contain;    
}

.fruit_container > p {
    margin: 0;
    text-align: center;
    font-size: 1.2rem;
    font-family: var(--font-title);
}

/* Footer */

.site-footer {
    box-sizing: border-box;
    min-height: 30vh;
    padding-inline: 5vw;  
    gap: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: var(--color-main);
}

.site-footer > div {
    min-width: 150px;
}

.footer_sub_container > :is(p, h4) {
    color: white;
}

.contact {
    display: flex;
    flex-direction: row;
}

.contact > p {
    color: white;
    margin: 0;
}
.underline {
    text-decoration-line: underline;
}

.footer_sub_container > img {
    height: 25vh;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .bottom {
        height: 15vh;
    }
    .identity {
        flex-wrap: nowrap;
    }
    .product_home > :is(.part_1, .part_2, .part_3) {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {

}

@media screen and (min-width: 1000px) {
    .main-home {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        height: 67vh;
    }
    .main-home > .left {
        max-width: 450px;
    }
    .main-home > .right {
        max-width: 600px;
        margin-right: 15vh;
    }
}

@media screen and (max-width: 1000px) {
    nav {
        height: 10vh;
    }
    .main-home > .left {
        height: 40vh;
    }
    .main-home > .right {
        height: 42vh;
    }
    .trivia {
        height: 10vh;
    }
    .bottom {
        flex-wrap: wrap;
    }
    .product_home > :is(.part_1, .part_2, .part_3) {
        flex-wrap: wrap;
    }

    .identity {
        justify-content: space-around;
    }
    .identity > .right {
        justify-content: space-around;
        padding-left: 0;
    }
    .identity > .right > img {
        display: none;
    }
    .identity > .right > div {
        max-width: auto;
    }

    .site-footer {
        flex-wrap: wrap;
        padding-bottom: 5vh;
    }
}