/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/* === HEADER BASIS === */
.header {
  background-color: #12244B;
  transition: all 0.3s ease;
  height: 170; /* feste Ausgangshöhe */
  display: flex;
  align-items: center;
  padding: 15px 20px;
  z-index: 999;
}

/* Großes Logo sichtbar, kleines versteckt */
.header .logo-small {
  display: none;
  transition: all 0.3s ease;
}

/* Menütext standardmäßig weiß */
.header .e-n-menu-title-container > span {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

/* Burger-Icon standardmäßig weiß */
.header .burger svg line {
  stroke: #ffffff !important;
  transition: all 0.3s ease;
}


/* === SCROLLED HEADER === */
.header.scrolled {
  background-color: #ffffff;
  height: 80px; /* kleinere Höhe beim Scrollen */
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Logos beim Scrollen tauschen */
.header.scrolled .logo-big {
  display: none;
}

.header.scrolled .logo-small {
  display: block;
}

/* Menütext beim Scrollen dunkelblau */
.header.scrolled .e-n-menu-title-container > span {
  color: #12244B !important;
}

/* Burger-Icon beim Scrollen dunkelblau */
.header.scrolled .burger svg line {
  stroke: #12244B !important;
}


/* === RESPONSIVE ANPASSUNG: TABLET UND KLEINER (≤ 1024px) === */
@media (max-width: 1024px) {
  .header {
    height: 120px !important; /* kompakter Header */
    padding: 5px 20px;
  }

  .header.scrolled {
    height: 85px !important; /* kleinere Höhe beim Scrollen */
    padding: -1px 20px;
  }
}

/* === RESPONSIVE ANPASSUNG: AB 1025px === */
@media (min-width: 1025px) {
  .header {
    height: 150px !important; /* Header wächst wieder auf Standardhöhe */
    padding: 10px 20px;
  }

  .header.scrolled {
    height: 90px !important; /* Scroll-Effekt bleibt */
    padding: 10 20px;
  }
}

.header .e-n-menu-title {
	transition: all 0.3s ease;
}
.header .e-n-menu-title:hover {
	transform: translatey(-7px);
}
.header {
	width: 100% !important;
}

#elementor-popup-modal-2021 .dialog-close-button {
    position: absolute;
    top: 200px;
}

#elementor-popup-modal-2021 {
	position: fixed;
}

.body-no-scroll {
    overflow: hidden;
}

.mobmenu-active svg line:first-of-type {
	transform: rotate(45deg) translate(37px, -51px);
}
.mobmenu-active svg line:nth-of-type(2) {
display: none;
}
.mobmenu-active svg line:nth-of-type(3) {
transform: rotate(-45deg) translate(-121px, -23px);	
}

.cmplz-cookiebanner * {
font-family: Muli !important;
}

.cmplz-btn.cmplz-deny {
background-color: #12244b !important;
color: white !important;
}

.page-header .entry-title {
	display: none !important;
}

/*
.body-no-scroll .header.scrolled .burger svg  {
	fill: white !important;
}
.body-no-scroll .header.scrolled {
	background-color: #12244B;
}
*/


