@font-face {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 400;
    src: url("/assets/spacemono_400_latin_normal-2fb0d22d.woff2") format('woff2');
}

@font-face {
    font-family: 'Space Mono';
    font-style: normal;
    font-weight: 700;
    src: url("/assets/spacemono_700_latin_normal-27e084bd.woff2") format('woff2');
}


:root {
    --bg: #F7EEEE;
    --brand_color: #BF3A2B;
    --brand_color_lower: #FDD3CB;
    --brand-background-color: #F7EEEE;
    --brand-darkgray: #2D2D2D;
    --brand-mint: #A0CBB5;
    --brand-green: #2EBA2C;

    --logo: url("/assets/baeckerwelt_logo-2a1bdd6e.png");
    --stamp-logo: url("/assets/baeckerwelt_stamp-00271ca4.png");

    --font-mono: "Space Mono", monospace; /* For Tailwind */
}

.design_button {
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 1px solid var(--brand-darkgray);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    color: var(--brand-darkgray);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-right: 3.4rem;
}

.design_button:hover {
    background-color: var(--brand-darkgray);
    color: var(--bg);
}

.design_button::after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: calc(100% + 1px);
    aspect-ratio: 1;
    border: 1px solid var(--brand-darkgray);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round'%3E%3Cpath d='M0.75,5.983L12.378,5.983M12.378,5.983L6.887,11.215M12.378,5.983L6.887,0.75' style='fill:none;stroke:%232D2D2D;stroke-width:1.5px'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    transition: background-color 0.2s ease;
}

.design_button:hover::after {
    background-color: var(--brand-darkgray);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' xmlns='http://www.w3.org/2000/svg' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round'%3E%3Cpath d='M0.75,5.983L12.378,5.983M12.378,5.983L6.887,11.215M12.378,5.983L6.887,0.75' style='fill:none;stroke:white;stroke-width:1.5px'/%3E%3C/svg%3E");
}