/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child Theme
Author: Elementor Team
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
*/

/* ==================================================
   GLOBAL
================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ==================================================
   FOOTER
================================================== */
.custom-footer {
    background: #608AE2;
    padding: 40px 20px;
}

/* Zentrierter Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

/* Jede Spalte */
.footer-column {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

/* Widgets – nur Breite, sonst nichts */
.footer-widgets,
.footer-widget,
.widget {
    width: 100%;
}

/* p bekommt volle Breite */
.custom-footer .footer-widgets p,
.custom-footer .footer-widget p {
    width: 100%;
    display: block;
    margin: 0;
}

/* WordPress WYSIWYG Ausrichtungsklassen – hohe Spezifität statt !important */
.custom-footer .footer-widgets p.has-text-align-right,
.custom-footer .footer-widget p.has-text-align-right {
    text-align: right;
    width: 100%;
    display: block;
}

.custom-footer .footer-widgets p.has-text-align-left,
.custom-footer .footer-widget p.has-text-align-left {
    text-align: left;
    width: 100%;
    display: block;
}

.custom-footer .footer-widgets p.has-text-align-center,
.custom-footer .footer-widget p.has-text-align-center {
    text-align: center;
    width: 100%;
    display: block;
}

/* Listen – nur Reset */
.custom-footer .footer-widgets ul,
.custom-footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Bilder */
.custom-footer img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 768px) {

    .custom-footer {
        padding: 30px 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-column {
        max-width: 100%;
        width: 100%;
    }
}

/* ==================================================
   TEXT SHADOW
================================================== */
.uc_fbps_container_desc {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* ==================================================
   HEADER / MENU
================================================== */
.elementor-nav-menu,
.elementor-nav-menu--dropdown,
.elementor-menu-toggle,
.dialog-widget-content,
.elementor-location-header,
.elementor-location-header .elementor-container,
.elementor-location-header .elementor-section,
.menu,
.menu .sub-menu,
.menu li,
.menu li a {
    background-color: #608AE2 !important;
}

/* Pfeilfarbe Untermenü */
.site-navigation ul.menu li.menu-item-has-children::after {
    color: #ffffff;
}

/* Menülinks */
.menu li a,
.elementor-nav-menu a {
    color: #ffffff !important;
}