/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Child Theme für Hello Elementor. Eigene CSS-Anpassungen und PHP-Erweiterungen bleiben bei Updates des Parent Themes erhalten.
Author: Website Administration
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* ==========================================================
   Eigene Styles
   ========================================================== */

/* Eigene CSS-Regeln ab hier einfügen. */

/* Use the bottom gradient color as fallback outside the main page area */
html {
    background: rgb(255, 213, 89) !important;
    min-height: 100%;
}

/* Basic page setup */
html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
}

/* Remove the gradient from the body because GTranslate causes display issues there */
html body {
    background: transparent !important;
    background-image: none !important;
    background-color: transparent !important;
    position: relative;
    min-height: 100vh;
    isolation: isolate;
}

/* Create one continuous page-length background layer */
html body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -80px;
    z-index: -1;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgb(9, 51, 110) 19%,
        rgb(255, 213, 89) 100%
    ) !important;
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    background-position: center top !important;
}

/* Make header and footer transparent */
html body header,
html body footer,
html body .elementor-location-header,
html body .elementor-location-footer {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Keep the sticky header clickable and above the page */
html body header,
html body .elementor-location-header,
html body .elementor-sticky--active {
    z-index: 1000 !important;
}