

body {
    background-image: url('../images/background.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom 0px;
    background-attachment: fixed;
    margin: 0;
}

#footer_shadow {
    position: fixed;
    bottom: 0;
    filter: drop-shadow(0px -5px 5px rgba(0, 0, 0, 0.5));

    #footer_border {
        --base-width: max(162px, min(34.4vw, 212px));
        --gap: 24px;
        --inner-width: calc(var(--base-width) - var(--gap));
        --depresion: 24px;

        display: flex;
        flex-direction: column-reverse;
        height: 134px;
        background: linear-gradient(to bottom, white 50%, #1D4994 50%);
        background-color: white;
        clip-path: polygon(
            0% var(--depresion),
            calc(50% - var(--base-width)) var(--depresion),
            calc(50% - var(--inner-width)) 0,
            calc(50% + var(--inner-width)) 0,
            calc(50% + var(--base-width)) var(--depresion),
            100% var(--depresion),
            100% 100%,
            0% 100%
        );

        footer {
            --base-width: max(160px, min(34vw, 210px));
            --gap: 24px;
            --inner-width: calc(var(--base-width) - var(--gap));
            
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: 130px;
            width: 100vw;
            background-color: #1D4994;
            background-position: -10px -10px;
            background-size: 42px;
            clip-path: polygon(
                0% var(--depresion),
                calc(50% - var(--base-width)) var(--depresion),
                calc(50% - var(--inner-width)) 0,
                calc(50% + var(--inner-width)) 0,
                calc(50% + var(--base-width)) var(--depresion),
                100% var(--depresion),
                100% 100%,
                0% 100%
            );

            ul {
                display: flex;
                height: 50%;
                flex-direction: column;
                justify-content: space-evenly;
                list-style-type: none;
                margin: 7px 0 0 0;
                padding: 0px 0;

                li {
                    font-family: Helvetica;
                    font-weight: 300;
                    font-size: 12px;
                    color: rgb(218, 218, 218);
                    text-align: center;
                    white-space: nowrap;

                    a {
                        text-decoration: none;
                        transition: color 0.3s ease;
                    }

                    a:link {
                        color: rgb(218, 218, 218);
                    }

                    a:visited {
                        color: rgb(218, 218, 218);
                    }

                    a.yellow-highlight {
                        color: rgb(250, 222, 44);
                        font-weight: 500;
                    }

                    a:hover {
                        color: #FFC0CB;
                    }
                }
            }

            #copyright {
                text-align: center;
                font-family: Helvetica;
                margin: 0 0 19px 0;
                font-size: 10px;
                color: rgb(218, 218, 218);
            }
        }
    }
}

#bouquet_wrapper {
    display: flex;
    position: fixed;
    justify-content: center;
    top: 168px;
    bottom: 134px;
    width: 100vw;

    #bouquet_img {
        height: 120.9%;
        pointer-events: none;
        user-select: none;
    }
}

.floating_contact {
    position: fixed;
    bottom: 150px;
    right: max(20px, min(5.7vw, 50px));
    display: flex;
    flex-direction: column;
    gap: 15px;

    .floating_button {
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .floating_button:hover {
        transform: scale(1.1);
    }

    #whatsapp_icon {
        width: 50px;
        height: 50px;
    }
}

#header_shadow {
    position: fixed;
    top: 0;
    filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.5));

    #header_border {
        --base-width: max(160px, min(33.1vw, 210px));
        --gap: 24px;
        --inner-width: calc(var(--base-width) - var(--gap));
        --depresion: 144px;

        height: 168px;
        background: linear-gradient(to bottom, #1D4994 50%, white 50%);
        clip-path: polygon(
            0% 0%,
            100% 0%,
            100% 100%,
            calc(50% + var(--base-width)) 100%,
            calc(50% + var(--inner-width)) var(--depresion),
            calc(50% - var(--inner-width)) var(--depresion),
            calc(50% - var(--base-width)) 100%,
            0% 100%
        );

        #header_wrapper {
            --base-width: max(162px, min(33.5vw, 212px));
            --gap: 24px;
            --inner-width: calc(var(--base-width) - var(--gap));
            --depresion: 140px;

            display: flex;
            justify-content: center;
            height: 164px;
            width: 100vw;
            background-color: #1D4994;
            background-position: -10px -10px;
            background-size: 42px;
            background-attachment: fixed;
            clip-path: polygon(
                0% 0%,
                100% 0%,
                100% 100%,
                calc(50% + var(--base-width)) 100%,
                calc(50% + var(--inner-width)) var(--depresion),
                calc(50% - var(--inner-width)) var(--depresion),
                calc(50% - var(--base-width)) 100%,
                0% 100%
            );

            header {
                display: flex;
                height: 140px;
                width: 100vw;
                flex-direction: column;
                align-items: center;
                justify-content: space-evenly;

                p {
                    font-family: Helvetica;
                    font-size: 14px;
                    font-weight: 500;
                    color: rgb(218, 218, 218);
                    white-space: nowrap;
                    margin: 0 0 0 0;
                }

                img {
                    --base-width: max(232px, min(48vw, 304px));
                    --gap: 24px;
                    --inner-width: calc(var(--base-width) - var(--gap));
                    width: var(--inner-width);
                    object-fit: contain;
                }

                nav {
                    --base-width: max(162px, min(33.4vw, 212px));
                    --gap: 24px;
                    --inner-width: calc(var(--base-width) - var(--gap));
                    --position: calc(50vw - var(--inner-width));

                    display: flex;
                    justify-content: space-between;
                    list-style-type: none;
                    width: calc(100vw - var(--position) * 2);
                    max-width: 90%;
                    padding: 0;
                    margin: 0;
                    

                    button, a {
                        font-family: Helvetica;
                        font-weight: 300;
                        color: rgb(218, 218, 218);
                        font-size: 13px;
                        margin: 0;
                        transition: color 0.3s ease;
                    }

                    button {
                        background: none;
                        border: none;
                        cursor: pointer;
                        padding: 0;
                    }

                    a {
                        text-decoration: none;
                    }

                    a:link {
                        color: rgb(218, 218, 218);
                    }

                    a:visited {
                        color: rgb(218, 218, 218);
                    }

                    a.yellow-highlight, button.yellow-highlight {
                        color: rgb(250, 222, 44);
                        font-weight: 500;
                    }

                    a:hover, button:hover {
                        color: #FFC0CB;
                    }
                }
            }
        }
    }

    main {
        --base-width: max(162px, min(33.4vw, 212px));
        --gap: 24px;
        --inner-width: calc(var(--base-width) - var(--gap));
        --position: calc(50vw - var(--inner-width));

        position: absolute;
        display: flex;
        justify-content: center;
        top: -1000px;
        width: 100vw;

        ul {
            width: calc(100vw - var(--position) * 2);
            height: min-content;
            background-color: #1D4994;
            margin: 0;
            padding: 8px 26px 8px 26px;
            list-style-type: none;

            border-left: 4px solid white;
            border-right: 4px solid white;
            border-bottom: 4px solid white;

            clip-path: polygon(
                0 32px,
                5px 32px,
                5px 0,
                calc(100vw - var(--position) * 2 + 55px) 0,
                calc(100vw - var(--position) * 2 + 55px) 32px,
                100% 32px,
                100% 100%,
                0 100%
            );

            li p {
                font-family: Helvetica;
                font-size: 13px;
                font-weight: 300;
                color: rgb(218, 218, 218);
                text-align: left;
                margin: 0 0 14px 0;
            }
        }
    }
}