/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Outfit Bold";
    font-display: swap;
    src: url("assets/fonts/outfit/Outfit-Bold.woff2") format("woff2");
}
@font-face {
    font-family: "Outfit Light";
    font-display: swap;
    src: url("assets/fonts/outfit/Outfit-Light.woff2") format("woff2");
}
@font-face {
    font-family: "Poppins Bold";
    font-display: swap;
    src: url("assets/fonts/poppins/Poppins-Bold.woff2") format("woff2");
}

body {
    font-family: 'Lexend Exa', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

.page-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: white;
}

/* Header Section */
.header {
    position: relative;
    width: 100%;
    height: 830px;
    overflow: hidden;

    @media screen and (max-width: 1080px) {
        height: 650px;
    }

    .header-texture {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;

         img {
             width: 100%;
             height: 100%;
             object-fit: cover;
             object-position: center;
         }
    }

    .header-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #3c4934;
        mix-blend-mode: multiply;
    }

    .header-content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 5rem;
        align-items: center;

        @media screen and (max-width: 720px) {
            padding: 1rem;
        }
        @media screen and (max-width: 520px) {
            flex-direction: column;
            gap: 1rem;
        }

        .header-content-left {
            .logo {
                width: 60px;
                height: 60px;
                display: block;

                img {
                    width: 100%;
                    height: 100%;
                }
            }
            .subtitle {
                display: block;
                font-family: 'Lexend Giga', sans-serif;
                font-size: 20px;
                font-weight: 400;
                line-height: normal;
                color: #d8d9be;
                width: fit-content;
                margin-top: 1rem;
            }
        }

        .header-content-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;

            .language-switcher {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 50px;
                padding: 6px 12px;
            }

            .lang-btn {
                background: transparent;
                border: none;
                color: rgba(255, 255, 255, 0.6);
                font-family: 'Lexend Exa', sans-serif;
                font-size: 14px;
                font-weight: 400;
                cursor: pointer;
                transition: all 0.3s ease;
                padding: 4px 8px;
                border-radius: 20px;
                text-decoration: none;
                display: inline-block;

                &:hover {
                    color: rgba(255, 255, 255, 0.9);
                }

                &.active {
                    color: white;
                    background: rgba(255, 255, 255, 0.2);
                    font-weight: 500;
                }
            }

            .lang-separator {
                color: rgba(255, 255, 255, 0.3);
                font-size: 14px;
            }

            .phone-button {
                width: fit-content;
                height: 38px;
                border: 1px solid white;
                border-radius: 50px;
                display: flex;
                align-items: center;
                padding: 0 12px;
            }

            .phone-dot {
                width: 10px;
                height: 10px;
                background-color: white;
                border-radius: 50%;
                margin-right: 8px;
            }

            .phone-number {
                font-size: 18px;
                font-weight: 300;
                color: white;
            }
        }
    }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .hero-image {
        width: 330px;
        height: 330px;
        object-position: center;
        object-fit: contain;
        position: relative;
        z-index: 5;

        @media screen and (max-width: 1080px) {
            width: 300px;
            height: 300px;
        }
        @media screen and (max-width: 400px) {
            width: 250px;
            height: 250px;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .hero-title {
        position: relative;
        z-index: 4;
        font-family: 'Inner', sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: normal;
        color: #d8d9be;
        font-style: normal;
        margin-top: -4rem;
    }
    .hero-title-image {
        width: 650px;
        object-fit: contain;
        object-position: center;
        position: relative;
        z-index: 6;

        @media screen and (max-width: 1080px) {
            width: 370px;
        }
        @media screen and (max-width: 400px) {
            width: 320px;
        }
    }
    .hero-subtitle {
        width: 650px;
        font-family: 'Lexend Exa', sans-serif;
        font-size: 65px;
        line-height: 60px;
        font-weight: 400;
        color: #d8d9be;
        margin-top: 1rem;

        @media screen and (max-width: 1080px) {
            width: 370px;
            font-size: 30px;
            line-height: 30px;
        }
        @media screen and (max-width: 400px) {
            width: 320px;
        }
    }
}


/* About Section */
.about-section {
    position: relative;
    width: 100%;
    height: 779px;
    background-color: #d8d9be;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 1080px) {
        height: fit-content;
        padding: 2rem 0;
    }

    .about-decoration-left {
        position: absolute;
        left: 0;
        top: 52px;
        width: 260px;
        height: 480px;
        z-index: 2;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .about-decoration-right-top {
        position: absolute;
        right: 0;
        top: 8px;
        width: 180px;
        height: 190px;
        z-index: 2;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .about-decoration-right-bottom {
        position: absolute;
        right: 0;
        top: 229px;
        width: 290px;
        height: 400px;
        z-index: 2;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .about-section-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5rem;
        position: relative;
        z-index: 3;

        @media screen and (max-width: 1080px) {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .portrait-container {
            width: 455px;
            height: 541px;

            @media screen and (max-width: 1080px) {
                width: 250px;
                height: 300px;
            }

            .portrait {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 10000px;
                border: 3px solid #3c4934;
            }
        }

        .about-content {
            position: relative;

            .about-header {
                display: flex;
                align-items: center;
                gap: 10px;
                margin-bottom: 2rem;
                margin-top: 2rem;

                .about-dot {
                    width: 33px;
                    height: 33px;
                    background-color: #3c4934;
                    border-radius: 50%;
                }
                .about-title {
                    font-family: 'Lexend Exa', sans-serif;
                    font-size: 25px;
                    font-weight: 700;
                    line-height: normal;
                    color: #003002;
                }
            }
            .about-text {
                width: 563px;
                font-family: 'Lexend Exa', sans-serif;
                font-size: 18px;
                font-weight: 400;
                line-height: normal;
                color: #3c4934;

                @media screen and (max-width: 720px) {
                    width: 100%;
                    padding: 0 1rem;
                }

                p {
                    margin: 1.5rem 0;

                    &.highlight {
                        font-weight: 700;
                    }
                }
            }
        }
    }
}

/* Gallery Section */
.gallery-section {
    position: relative;
    width: 100%;
    height: fit-content;
    background-color: #3c4934;
    padding: 4rem 0;

    .gallery-grid {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;

        @media screen and (max-width: 640px) {
            flex-direction: column;
            align-items: center;
        }

        .gallery-item {
            width: 25%;
            height: 20vw;

            @media screen and (max-width: 640px) {
                width: 250px;
                height: 250px;
            }

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

    .instagram-button-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;

        .instagram-button {
            display: flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
            background-color: #003002;
            color: white;
            padding: 13px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Lexend Exa', sans-serif;
            font-size: 16px;
            font-weight: 500;
            line-height: normal;

            .instagram-icon {
                width: 24px;
                height: 24px;
            }
        }
    }
}


/* Footer */
.footer {
    position: relative;
    width: 100%;
    height: fit-content;
    background-color: #3c4934;
    border-top: 1px solid white;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    .footer-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 5rem;

        @media screen and (max-width: 820px) {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 2rem;

            @media screen and (max-width: 720px) {
                flex-direction: column;
            }

            img {
                width: 60px;
                height: 60px;
                object-fit: contain;
                object-position: center;
            }
        }

        .footer-email {
            font-family: 'Lexend Exa', sans-serif;
            font-size: 40px;
            font-weight: 400;
            line-height: normal;
            color: white;
            text-decoration: underline;
            text-transform: uppercase;
            display: flex;
            flex-direction: row;
            position: relative;
            z-index: 3;

            @media screen and (max-width: 720px) {
                font-size: 14px;
            }

            .footer-phone-icon {
                width: 45px;
                height: 40px;

                @media screen and (max-width: 720px) {
                    width: 20px;
                    height: 20px;
                }

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }

        .footer-logo-rotated {
            position: absolute;
            right: -5rem;
            bottom: 5rem;
            width: 250px;
            height: 190px;
            opacity: 0.3;
            overflow: hidden;
            z-index: 2;

            img {
                object-fit: contain;
                object-position: center;
                width: 100%;
                height: 100%;
                transform: rotate(-90deg);
            }
        }
    }

    .m2c-copyright {
        background: white;
        width: 100%;
        padding: 1rem 5rem;

        p {
            font-family: 'Lexend Exa', sans-serif;
            font-size: 14px;
            font-weight: 300;
            line-height: normal;
            color: black;
            text-align: center;

            a {
                color: #3c4934;
            }
        }
    }
}

/* Copyright */
div.m2c-copyright__container {
    margin: 0 0.25rem;
    display: inline-block;
}
div.m2c-copyright__container p {
    font-family: "Outfit Light", sans-serif !important;
    color: #FFF;
    font-size: 13px !important;
    font-weight: 300 !important;
    text-transform: none !important;
}
div.m2c-copyright__container p .m2c-copyright__svg-container {
    position: relative;
}
div.m2c-copyright__container p .m2c-copyright__svg {
    position: absolute;
    top: 0;
    left: 2px;
}
div.m2c-copyright__container p a {
    color: #F08017 !important;
    text-decoration: underline !important;
    text-transform: none !important;
}

div.m2c-copyright__container.m2c-copyright__light p {
    color: #FFF !important;
}
div.m2c-copyright__container.m2c-copyright__light a {
    color: #FFF !important;
}

div.m2c-copyright__container.m2c-copyright__dark p {
    color: #000 !important;
}
div.m2c-copyright__container.m2c-copyright__dark .m2c-copyright__svg path {
    fill: #000 !important;
}

/* Ecograder */
div.ecograder__container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 20px;
    padding: 0.75rem 1rem 0.5rem 1rem;
    margin: 1rem auto;
    width: 240px;
    height: auto;
}
div.ecograder__inner-top {
    padding: 0rem 0.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
div.ecograder__inner-top p {
    color: #FFF;
    font-family: "Outfit Light", sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
}
div.ecograder__inner-top .ecograder__arrow {
    position: absolute;
    left: 85px;
    top: -13px;
    z-index: 1;
}
div.ecograder__inner-top .ecograder_websitecarbon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    position: relative;
    z-index: 2;
}
div.ecograder__inner-top .ecograder_websitecarbon a {
    display: inline-block;
    margin-right: 5px !important;
    font-family: "Outfit Light", sans-serif !important;
    color: #FFF;
    font-size: 8px !important;
    font-weight: 300 !important;
    text-decoration: underline !important;
    line-height: normal !important;
}
div.ecograder__inner-top .ecograder_websitecarbon p {
    font-family: "Poppins Bold", sans-serif !important;
    font-size: 31px !important;
    line-height: 23px !important;
    font-weight: 700 !important;
    color: #FFF;
}
div.ecograder__divider {
    margin: 0.15rem 0;
    display: flex;
    flex-direction: column;
}
div.ecograder__divider svg {
    height: 100%;
    width: 100%;
}
div.ecograder__inner-detail p {
    color: #FFF;
    font-family: "Outfit Light", sans-serif !important;
    font-size: 10px !important;
    font-weight: 300 !important;
    line-height: normal !important;
}
div.ecograder__inner-detail p .ecograder__inner-detail__bold {
    font-family: "Outfit Bold", sans-serif !important;
    font-weight: 700 !important;
}
div.ecograder__inner-detail p .ecograder__inner-detail__svg {
    display: inline-block;
    vertical-align: -3px !important;
    margin-left: 3px !important;
}
/* Light/Dark Mode */
div.ecograder__container.ecograder__light {
    background-color: #FFFFFF;
}
div.ecograder__container.ecograder-border__light {
    border: 2px solid rgba(255, 255, 255, 0.20);
}
div.ecograder__container.ecograder__light a,
div.ecograder__container.ecograder__light p,
div.ecograder__container.ecograder__light span {
    color: #000 !important;
}
div.ecograder__container.ecograder__light .ecograder__arrow svg path {
    fill: #000 !important;
}
div.ecograder__container.ecograder__light .ecograder__divider svg path.path-white {
    stroke: #000 !important;
}

div.ecograder__container.ecograder__dark {
    background-color: #000000;
}
div.ecograder__container.ecograder-border__dark {
    border: 2px solid rgba(0, 0, 0, 0.20);
}

/* Copyright */
div.m2c-copyright__container {
    margin: 0 0.25rem;
    display: inline-block;
}
div.m2c-copyright__container p {
    font-family: "Outfit Light", sans-serif !important;
    color: #FFF;
    font-size: 13px !important;
    font-weight: 300 !important;
    text-transform: none !important;
}
div.m2c-copyright__container p .m2c-copyright__svg-container {
    position: relative;
}
div.m2c-copyright__container p .m2c-copyright__svg {
    position: absolute;
    top: 0;
    left: 2px;
}
div.m2c-copyright__container p a {
    color: #000000 !important;
    text-decoration: underline !important;
    text-transform: none !important;
}

div.m2c-copyright__container.m2c-copyright__light p {
    color: #FFF !important;
}
div.m2c-copyright__container.m2c-copyright__light a {
    color: #FFF !important;
}

div.m2c-copyright__container.m2c-copyright__dark p {
    color: #000 !important;
}
div.m2c-copyright__container.m2c-copyright__dark .m2c-copyright__svg path {
    fill: #000 !important;
}