* {
    font-family: Pretendard;
    color: #341f20;
    line-height: 140%;
    word-break: keep-all;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    span.nowrap {
        white-space: nowrap;
        color: inherit;
    }

    strong {
        font-weight: 600;
        color: inherit;
    }

    menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        background-color: #3c232388;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);

        > div {
            width: 960px;
            max-width: 960px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;

            > .logo {
                min-width: 86px;
                min-height: 30px;
                background-image: url("/assets/menu-logo.png");
                background-size: contain;
                cursor: pointer;
            }

            > .links {
                display: flex;
                flex-direction: row;
                gap: 48px;

                > a {
                    color: #fff;
                    font-size: 20px;
                    font-weight: 500;
                    text-decoration: none;
                    cursor: pointer;
                }
            }

            @media (max-width: 800px) {
                > .links {
                    gap: 16px;

                    > a {
                        font-size: 16px;
                    }
                }
            }
        }
    }

    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 100vh;
        background-color: #010101;
        background-image: url("/assets/landing.jpg");
        background-size: cover;
        background-position: center;

        > h1 {
            text-align: center;
            color: #fff;
            font-size: 40px;
            font-weight: 700;
        }

        @media (max-width: 800px) {
            > h1 {
                font-size: 30px;
            }
        }
    }

    main {
        section {
            display: flex;
            justify-content: center;
        }

        .light {
            background-color: #f4f0e9;
        }

        .dark {
            background-color: #75614e;
        }

        #the-dan-dan {
            padding: 160px 30px;
            width: 960px;
            max-width: 960px;
            background-image: url("/assets/bg-logo.png");
            background-size: 340px 440px;
            background-position: right bottom;
            background-repeat: no-repeat;

            > div {
                font-size: 38px;
                font-weight: 700;
                margin-bottom: 80px;
            }

            > p {
                font-size: 24px;
                font-weight: 400;
                line-height: 150%;
                color: #121415;
                margin: 0;
                margin-bottom: 24px;
            }

            > p:nth-child(3) {
                margin-bottom: 80px;
            }

            @media (max-width: 800px) {
                > div {
                    font-size: 30px;
                    margin-bottom: 40px;
                }

                > p {
                    font-size: 18px;
                    margin-bottom: 20px;
                }

                > p:nth-child(3) {
                    margin-bottom: 60px;
                }
            }
        }

        #feature-1 {
            padding: 160px 30px;
            width: 960px;
            max-width: 960px;
            text-align: center;
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 0;
            color: #fff;

            strong {
                font-weight: 700;
            }
        }

        @media (max-width: 800px) {
            #feature-1 {
                padding: 120px 20px;
                font-size: 30px;
            }
        }

        #ceo {
            padding: 160px 0;
            width: 960px;
            max-width: 960px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 80px;

            > div.part1 {
                display: flex;
                flex-direction: column;
                gap: 40px;

                > img {
                    width: 320px;
                }

                > div.info {
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    gap: 32px;
                    font-size: 24px;
                    font-weight: 400;

                    > strong {
                        letter-spacing: 15px;
                    }
                }
            }

            > div.part2 {
                > div.group {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;

                    > div.title {
                        font-size: 24px;
                        font-weight: 600;
                    }

                    > div.content {
                        display: flex;
                        flex-direction: column;
                        gap: 8px;

                        > span {
                            display: block;
                            font-size: 20px;
                            font-weight: 400;
                        }

                        > span.current {
                            font-size: 20px;
                            font-weight: 700;
                            margin-bottom: 24px;
                        }
                    }
                }
                > div.group-seperator {
                    width: 100%;
                    margin-top: 32px;
                    margin-bottom: 32px;
                    height: 1px;
                    background-color: #341f20;
                    opacity: 0.2;
                }
            }
        }

        @media (max-width: 800px) {
            #ceo {
                flex-direction: column;
                align-items: center;
                gap: 40px;
                padding: 160px 16px;

                > div.part1 {
                    > img {
                        width: 270px;
                    }
                }

                > div.part2 {
                    > div.group {
                        align-items: center;
                        > div.content {
                            align-items: center;
                            > span {
                                font-size: 16px;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }

        #service {
            padding: 160px 0;
            width: 960px;
            max-width: 960px;
            display: flex;
            flex-direction: column;
            gap: 80px;

            > div.service-feature {
                display: flex;
                flex-direction: row;
                gap: 40px;

                > div {
                    > img {
                        width: 400px;
                        border-radius: 16px;
                    }
                }

                > div.details {
                    display: flex;
                    flex-direction: column;

                    > div.title {
                        font-size: 24px;
                        font-weight: 600;
                        margin-bottom: 8px;
                    }

                    > div.description {
                        font-size: 20px;
                        font-weight: 400;
                        margin-bottom: 16px;
                    }

                    > ul {
                        margin: 0;
                        padding: 0 0 0 20px;
                        > li {
                            margin-bottom: 8px;
                            font-size: 20px;
                            font-weight: 400;
                            color: #483a2d;
                        }
                    }
                }
            }

            @media (max-width: 800px) {
                > div.service-feature {
                    flex-direction: column;
                    align-items: start;
                    gap: 20px;

                    > div {
                        padding: 0 20px;
                        > img {
                            width: 100%;
                        }
                    }

                    > div.details {
                        padding: 0 20px;

                        > div.title {
                            font-size: 20px;
                        }

                        > div.description {
                            font-size: 18px;
                        }

                        > ul {
                            padding: 0 0 0 20px;
                            > li {
                                font-size: 18px;
                            }
                        }
                    }
                }
            }
        }
    }

    footer {
        display: flex;
        justify-content: center;
        flex-direction: row;

        > section {
            width: 960px;
            max-width: 960px;
            padding: 60px 30px;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            #company-info {
                display: flex;
                flex-direction: column;
                gap: 16px;

                .logo-container {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 6px;

                    .logo {
                        width: 88px;
                        height: 28px;
                        background-image: url("/assets/logo-dark.png");
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                    }

                    .logo-text {
                        text-align: center;
                        font-size: 13px;
                        font-weight: 600;
                    }
                }

                .company-container {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 6px;

                    font-size: 14px;
                    font-weight: 400;

                    > .name {
                        font-weight: 600;
                    }
                }

                .copyright {
                    font-size: 14px;
                    font-weight: 400;
                }
            }

            div.logo {
                width: 100px;
                height: 160px;
                background-image: url("/assets/logo.png");
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }
        }

        @media (max-width: 800px) {
            > section {
                flex-direction: column-reverse;
                gap: 60px;
            }
        }
    }
}

a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
