/*
Theme Name:   Landeseiten Design Child
Theme URI:    #
Description:  Child theme for Hello Elementor for Landeseiten Design projects.
Author:       Your Name
Author URI:   #
Template:     hello-elementor
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  landeseiten-design-child
*/

/*----------------------------------------------------------------*/
/* Add your custom CSS below this line
/*----------------------------------------------------------------*/


/* 
  Unified SVG-shape utilities for Elementor
  - Base: .cs-shape  → masks the element with --shape-mask (100%×100%)
  - Ring: .cs-shape--ring → outline thickness via --ring-size (px or %)
  - Padding: .cs-shape--pad → comfy inner padding
  - Choose the shape by adding one of: .cs-shapeA / B / C / D
  - Optional clip-path variant: .cs-shape--clip (uses --shape-clip instead of mask)
*/

[data-elementor-type="wp-page"] {
	overflow-x:hidden;
}

body p,
body h1, body h2, body h3,
body h4, body h5, body h6{
  margin: 0 !important;
  padding: 0;
  text-wrap: pretty;
}
body .elementor-widget-container{ text-wrap: pretty; }


.page-id-11 .site-header,
.page-id-11 .site-footer,
.page-id-28 .site-header,
.page-id-28 .site-footer {
	display: none;
}

.cs-landeseiten-form .gfield_label {
	color: #fff !important;
}

/* ===========================================
   BASE PANEL
   =========================================== */

.cs-panel{
  position: relative;
  z-index: 0;
	max-width:1820px;
	margin:auto;

  /* default, overridden per shape */
  --panel-mask: none;
  --panel-outline: none;

  /* actually apply the mask */
  -webkit-mask-image: var(--panel-mask);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;

          mask-image: var(--panel-mask);
          mask-repeat: no-repeat;
          mask-position: center;
          mask-size: 100% 100%;
}

/* Outline overlay */
.cs-panel::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background-image: var(--panel-outline);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Keep inner content above outline */
.cs-panel > .e-con-inner{
  position: relative;
  z-index: 1;
}


/* ===========================================
   SHAPE A (with outline)
   =========================================== */

/* Desktop */
.cs-panel--A{
  --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/A-mask-desktop.svg');
  --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/A-outline-desktop.svg');
}

/* Tablet */
@media (max-width:1024px){
  .cs-panel--A{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/A-mask-tablet.svg');
    --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/A-outline-tablet.svg');
  }
}

/* Mobile */
@media (max-width:767px){
  .cs-panel--A{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/A-mask-mobile.svg');
    --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/A-outline-mobile.svg');
  }
}


/* ===========================================
   SHAPE B — mask only, NO outline
   =========================================== */

/* Desktop */
.cs-panel--B{
  --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/B-mask-desktop.svg');
  --panel-outline: none;
}

/* Tablet */
@media (max-width:1024px){
  .cs-panel--B{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/B-mask-mobile.svg');
    --panel-outline: none;
  }
}

/* Mobile */
@media (max-width:767px){
  .cs-panel--B{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/B-mask-mobile.svg');
    --panel-outline: none;
  }
}

/* ===========================================
   SHAPE C — has mask + outline
   =========================================== */

/* Desktop */
.cs-panel--C {
  --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/C-mask-desktop.svg');
  --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/C-outline-desktop.svg');
}

/* Tablet */
@media (max-width:1024px){
  .cs-panel--C {
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/C-mask-tablet.svg');
    --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/C-outline-tablet.svg');
  }
}

/* Mobile */
@media (max-width:767px){
  .cs-panel--C {
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/C-mask-mobile.svg');
    --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/C-outline-mobile.svg');
  }
}
/* SHAPE D – mask only, no outline */

/* Desktop */
.cs-panel--D{
  -webkit-mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/D-mask-desktop.svg');
          mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/D-mask-desktop.svg');
}

/* Tablet */
@media (max-width: 1024px){
  .cs-panel--D{
    -webkit-mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/D-mask-tablet.svg');
            mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/D-mask-tablet.svg');
  }
}

/* Mobile */
@media (max-width: 767px){
  .cs-panel--D{
    -webkit-mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/D-mask-mobile.svg');
            mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/D-mask-mobile.svg');
  }
}

/* ========= SHAPE E (mask only) ========= */

/* Desktop */
.cs-panel--E{
  -webkit-mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/E-mask-desktop.svg');
          mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/E-mask-desktop.svg');
}

/* Tablet */
@media (max-width: 1024px){
  .cs-panel--E{
    -webkit-mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/E-mask-tablet.svg');
            mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/E-mask-tablet.svg');
  }
}

/* Mobile */
@media (max-width: 767px){
  .cs-panel--E{
    -webkit-mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/E-mask-mobile.svg');
            mask-image: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/E-mask-mobile.svg');
  }
}
/* ========= SHAPE F (mask + outline) ========= */

/* Desktop */
.cs-panel--F{
  --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/F-mask-desktop.svg');
  --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/F-outline-desktop.svg');
}

/* Tablet */
@media (max-width:1024px){
  .cs-panel--F{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/F-mask-tablet.svg');
    --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/F-outline-tablet.svg');
  }
}

/* Mobile */
@media (max-width:767px){
  .cs-panel--F{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/F-mask-mobile.svg');
    --panel-outline: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/F-outline-mobile.svg');
  }
}
/* ========= SHAPE G (mask only) ========= */

.cs-panel--G{
  --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/G-mask-desktop.svg');
  --panel-outline: none;
}

@media (max-width:1024px){
  .cs-panel--G{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/G-mask-tablet.svg');
  }
}

@media (max-width:767px){
  .cs-panel--G{
    --panel-mask: url('/wp-content/themes/Landeseiten-Child-Theme-main/images/G-mask-mobile.svg');
  }
}


.cs-slogan-icon .elementor-icon {
    max-width: 100vw;
}

.cs-slogan-icon .elementor-icon-wrapper .elementor-icon svg {
    max-width: 100vw !important;
    width: 100% !important;
}


.cs-faq-acc .eael-adv-accordion {
    counter-reset: item;
}

.cs-faq-acc .eael-accordion-list {
    border-bottom: 1px solid #ffffff4D;
    counter-increment: item;
    position: relative;
    padding-top: 20px !important;
}

.cs-faq-acc .eael-accordion-list::after {
    content: '0'counter(item);
    font-size: 20px;
    color: #ffffff4D;
    position: absolute;
    top: 0;
}

.cs-faq-acc .elementor-tab-title {
    flex-direction: row-reverse;
}

/******Hover Scale*******/

.cs-hover-scale {
    transition: transform 0.3s ease-out !important;
}

.cs-hover-scale:hover {
    transform: scale(1.02);
}

.cs-icon-scale li svg {
    transition: transform 0.3s ease-out !important;
}

.cs-icon-scale li:hover svg {
    transform: scale(1.2);
}


/*Small fix for GF label*/

#field_1_10 .gfield_label {
	max-width:30ch !important;
}