/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.5
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


html {
    scrollbar-width: thin;
    scrollbar-color: #a0182a #fdf7f4;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: #fdf7f4; }
html::-webkit-scrollbar-thumb {
    background: #a0182a;
    border-radius: 99px;
}


/* Scroll Header */
.scrolled header .e-parent {
    background: #fdf7f4 !important;
}

/* Speisekarten */
.wm-menukarten-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 680px;
}

.wm-menukarte {
    background: #f0ebe4;
    border-radius: 16px;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media only screen and (min-width: 769px) {
    .wm-menukarte:nth-child(even) {
        transform: translateY(90px);
    }
}

.wm-menukarte__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    color: #a0182a;
    flex-shrink: 0;
}

.wm-menukarte__icon svg path, .wm-menukarte__icon svg ellipse {
    stroke: #a0182a;
}

.wm-menukarte__title {
    margin: 4px 0 0;
    padding: 0;
    font-family: var(--e-global-typography-42523b7-font-family), Sans-serif;
    font-size: var(--e-global-typography-42523b7-font-size);
    font-weight: var(--e-global-typography-42523b7-font-weight);
    line-height: var(--e-global-typography-42523b7-line-height);
    letter-spacing: var(--e-global-typography-42523b7-letter-spacing);
    color: var(--e-global-color-84f6f29);
}

.wm-menukarte__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #a0182a;
    text-decoration: none;
    margin-top: 4px;
	font-family: var(--e-global-typography-fccda81-font-family), Sans-serif;
    font-size: var(--e-global-typography-fccda81-font-size);
    font-weight: var(--e-global-typography-fccda81-font-weight);
    line-height: var(--e-global-typography-fccda81-line-height);
}

.wm-menukarte__link:hover {
    text-decoration: underline;
    color: #a0182a;
}

.wm-menukarte__link--disabled {
    color: #999;
    font-size: 0.85rem;
}

@media only screen and (max-width: 768px) {
    .wm-menukarten-grid {
        gap: 15px;
    }
}