@font-face {
    font-family: "Fruity Juice";
    src: url("../fonts/Fruity-Juice.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    background: #2d514d;
    font-family: Fruity Juice, sans-serif;
}

/* Ensure body doesn't show scrollbars during video playback */
body {
    overflow: hidden;
    height: 100vh;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
}

[data-stroke="single"] {
    position: relative;
    background: #fb222200;
    z-index: 0;
}

[data-stroke="single"]:before {
    content: attr(data-title);
    position: absolute;
    -webkit-text-stroke: 0.27em #ffffff;
    left: 0;
    z-index: -1;
}

/* Blurred background video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Main visible video (clean video) */
.main-video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Fade overlay (content container) */
.fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2d514d;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Once content is shown, allow scrolling */
.fade-overlay.show {
    position: relative;
    opacity: 1;
    height: auto;
}

/* Content inside fade overlay */
.fade-overlay .content {
    opacity: 0;
    transition: opacity 1s ease;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Show content after fade */
.fade-overlay .content.show {
    opacity: 1;
}

/* Hero Content */
.container-large {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.hero_content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 9rem;
    margin-bottom: 6rem;
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.hero_heading_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    transition: filter 1.2s linear;
    display: flex;
}

.hero_text-meet {
    color: #141e32;
    font-size: 2.63rem;
}

.hero_h1 {
    color: #fff;
    font-weight: 400;
}

.hero_button_wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.hero_gif_wrap {
    max-width: 15rem;
    margin-top: -1.5rem;
    margin-bottom: -4rem;
}

.hero_gif_wrap img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: inline-block;
}

.shadow {
    background-color: #141e32;
    border-radius: 100vw;
}

.shadow.is-mobile {
    display: none;
}

.button {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border: 0.25rem solid #141e32;
    background-color: #2d514d;
    color: #ffffff;
    text-align: center;
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
    transition: bottom 0.2s, left 0.2s, filter 1.2s linear;
    display: flex;
    position: relative;
    bottom: 6px;
    left: 6px;
    text-decoration: none;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.hero_poem_wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 18ch;
    margin-top: 3rem;
    font-size: 1.5rem;
    line-height: 1.7;
    display: flex;
    position: relative;
}

.span_squack {
    opacity: 0.4;
    font-size: 1.38rem;
}

/* FAQ Content */
.faq_content {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    padding-bottom: 1.5rem;
}

.h2_wrap {
    grid-column-gap: 0.4rem;
    grid-row-gap: 0.4rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.h2_icon_wrap {
    width: 3rem;
    transition: filter 1.2s linear;
}

.h2 {
    color: #141e32;
    font-size: 2.75rem;
}

.text-size-large {
    font-size: 1.75rem;
}

.text-size-large.is-h2 {
    margin-top: 0.7rem;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.faq_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 0.75fr;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.faqs {
    grid-column-gap: 0.88rem;
    grid-row-gap: 0.88rem;
    flex-flow: column;
    display: flex;
}

.faq_item {
    padding: 0.75rem 1.5rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border: 0.25rem solid #141e32;
    background-color: #2d514d !important;
    box-shadow: 0 3px 0 1px #141e32;
    cursor: pointer;
    border-radius: 0.5rem;
    flex-flow: column;
    width: 38.75rem;
    max-width: 100%;
    transition: padding 0.2s;
    display: flex;
    overflow: hidden;
}

.faq_item:hover {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.faq_question {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    color: #141E32;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.6rem;
    display: flex;
}

.faq_plus_wrap {
    border: 0.25rem solid #141e32;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.5rem;
    display: flex;
    position: relative;
    cursor: pointer;
}

.plus {
    background-color: #141e32;
    border-radius: 0.63rem;
    width: 2rem;
    height: 0.3rem;
    transition: transform 0.3s ease;
}

.plus-v {
    background-color: #141e32;
    border-radius: 0.63rem;
    width: 0.3rem;
    height: 2rem;
    position: absolute;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.faq_answer {
    width: 85%;
    line-height: 1.5;
    overflow: hidden;
}

.faq_text {
    color: rgba(20, 30, 50, 0.8);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: Fruity Juice, sans-serif;
    text-align: left;
    cursor: context-menu;
}

.faq_image_wrap {
    border: 0.25rem solid #141E32;
    background-color: #0f5648;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0.5rem;
    position: relative;
}

.gif_burger {
    width: 100%;
    height: auto;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
}

.image_btn {
    width: 2rem;
    height: auto;
}

.button-copy {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-top-style: solid;
    border-top-width: 0.25rem;
    border-top-color: #141E32;
    border-right-style: solid;
    border-right-width: 0.25rem;
    border-right-color: #141E32;
    border-bottom-style: solid;
    border-bottom-width: 0.25rem;
    border-bottom-color: #141E32;
    border-left-style: solid;
    border-left-width: 0.25rem;
    border-left-color: #141E32;
    background-color: #2d514d;
    color: #141E32;
    text-align: center;
    text-shadow: 3px 0 #ffffff, -3px 0 #ffffff, 0 3px #ffffff, 0 -3px #ffffff, 3px 3px #ffffff, -3px -3px #ffffff, -3px 3px #ffffff, 3px -3px #ffffff;
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
    font-size: 1.6rem;
    transition-property: bottom, left, filter;
    transition-duration: 0.2s, 0.2s, 1.2s;
    transition-timing-function: ease, ease, linear;
    display: flex;
    position: relative;
    bottom: 0.38rem;
    left: 0.38rem;
    font-family: Fruity Juice, sans-serif;
}

.button-copy:hover {
    bottom: 0;
    left: 0;
}

.social_links {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    justify-content: center;
    align-items: center;
    width: 7.75rem;
    display: flex;
}

.social_links.is-new {
    width: auto;
    margin-top: 1rem;
}

.social {
    border: 0.25rem solid #ffffff;
    background-color: #ffffff;
    color: #2d514d;
    text-decoration: none;
    border-radius: 100vw;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding: 8px;
    transition: filter 1.2s linear;
    display: flex;
}

.social.is-new {
    grid-column-gap: 0.4rem;
    grid-row-gap: 0.4rem;
    width: auto;
    height: auto;
}

.svg_social {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.8rem;
    height: auto;
    display: flex;
    color: #141e32;
}

/* Gallery Section */
.marquee {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 3rem 0;
    overflow: hidden;
}

.marquee-advanced {
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.marquee-advanced__scroll {
    will-change: transform;
    width: 100%;
    display: flex;
    position: relative;
}

.marquee-advanced__collection {
    will-change: transform;
    display: flex;
    position: relative;
}

.marquee-advanced__item {
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.marquee-advanced__item-width {
    margin: 1rem;
    flex-shrink: 0;
}

.marquee-advanced__item-width img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 5px solid #141e32;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #2d514d;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.footer_content {
    flex-flow: column;
    width: 100%;
    display: flex;
}

.footer_text_wrap {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 4rem;
    display: flex;
    color: #fff;
    padding: 0px 10px;
}

.text_ca {
    opacity: 0.4;
    font-size: 1.13rem;
    text-wrap: nowrap;
    display: inline-block;
}

.footer_leaf {
    width: 6rem;
    height: auto;
    position: absolute;
    top: auto;
    bottom: -3%;
    left: 10%;
    right: auto;
}

.footer_chef {
    width: 6.63rem;
    height: auto;
    margin-bottom: -0.25rem;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 10%;
}

.nav_links_footer {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.padding-global.is-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.container-large.is-footer {
    justify-content: space-between;
    align-items: center;
}

.nav_link {
    font-size: 1.13rem;
    text-decoration: none;
    color: #141e32;
    transition: color 0.2s;
}

.nav_link:hover {
    opacity: 0.8;
}

.social.is-new {
    grid-column-gap: 0.4rem;
    grid-row-gap: 0.4rem;
    width: auto;
    height: auto;
}

.svg_social {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 1.8rem;
    height: auto;
    display: flex;
    color: #2d514d;
}

.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-embed:after {
    clear: both;
}

.seperator_marquee {
    border-top: 0.38rem solid #141E32;
    border-bottom: 0.38rem solid #141E32;
    background-color: #353a45;
    flex-flow: row;
    width: 100%;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    font-size: 1.5rem;
    transition: filter 1.2s linear;
    display: flex;
    position: relative;
    overflow: hidden;
}

.marquee_wrap {
    grid-column-gap: 2.25rem;
    grid-row-gap: 2.25rem;
    color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #141E32;
    text-shadow: 0 0 4px #141E32;
    flex: none;
    justify-content: center;
    align-items: center;
    margin-right: 2.25rem;
    font-size: 1.7rem;
    display: flex;
}

.marquee_circle {
    border: 4px solid #141E32;
    background-color: #fff;
    border-radius: 100%;
    width: 1rem;
    height: 1rem;
}

.marquee_move {
    flex-flow: row;
    flex: none;
    display: flex;
}

.marquee_part {
    display: flex;
}

.text-color-alternate {
    color: #b493dc;
}

@media screen and (max-width: 767px) {
    .text_ca {
        display: none;
    }
    .hero_content {
        width: 100%;
        margin-top: 10rem;
        margin-bottom: 0;
        overflow: hidden;
    }

    .hero_button_wrap {
        width: 100%;
        margin-top: 30px;
    }

    .hero_gif_wrap {
        margin-top: -3.5rem;
    }

    .hero_poem_wrap {
        margin-top: 2rem;
    }

    .span_squack {
        font-size: 1.2rem;
    }

    .faq_content {
        width: 100%;
        padding: 0px 10px;
    }

    .text-size-large {
        font-size: 1.25rem;
    }

    .faq_grid {
        width: 100%;
        margin-top: 2rem;
    }

    .faqs {
        width: 100%;
    }

    .faq_item {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq_question {
        font-size: 1.4rem;
        text-align: left;
    }

    .faq_plus_wrap {
        width: 3rem;
        height: 3rem;
    }

    .plus {
        width: 1.5rem;
    }

    .plus-v {
        height: 1.5rem;
    }

    .button-copy {
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .social_links {
        grid-column-gap: 0.6rem;
        grid-row-gap: 0.6rem;
    }
}

@media screen and (max-width: 991px) {
    .hero_h1 {
        font-size: 4.25rem;
    }

    .hero_text-meet {
        font-size: 2.63rem;
        text-align: center;
    }

    .hero_gif_wrap {
        max-width: 14rem;
    }

    .faq_grid {
        grid-template-columns: 1fr;
    }

    .faq_image_wrap {
        display: none;
    }

    .hide-tablet {
        display: none;
    }

    .shadow.is-mobile {
        display: block;
    }

    .social_links {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .container-large.is-footer {
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
        flex-flow: column;
    }

    .footer_leaf {
        display: none;
    }

    .footer_chef {
        top: 50%;
        bottom: auto;
        left: 0%;
        right: auto;
        transform: translate(-11px) rotate(90deg);
    }

    .nav_links_footer {
        grid-column-gap: 1.5rem;
        grid-row-gap: 1.5rem;
        flex-flow: column;
    }
}

iframe {
    margin: 0 auto;
    width: 100%;
    display: none;
}
