/*
Theme Name:     Hello Elementor Child
Theme URI:      https://example.com/
Description:    Een child theme voor Hello Elementor
Author:         Jouw Naam
Author URI:     https://example.com/
Template:       hello-elementor
Version:        1.0.0
Text Domain:    hello-elementor-child
*/

/* Hier kun je custom CSS toevoegen */


a.guide-email-link {
    background: #E8D3B8;
    padding: 20px;
    border-radius: 5px;
    display: flex
;
    justify-content: center;
    font-weight: 400;
    color: #000;
}

.elementor-element.gray {
  position: relative;
  overflow: hidden;
}

/* Diepe sepia kleurlaag */
.elementor-element.gray::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(112, 66, 20, 0.65); /* diep sepia */
  mix-blend-mode: color; /* kleurtoon overheerst */
  pointer-events: none;
  z-index: 1;
}

/* Contrast & vintage vibe extra layer */
.elementor-element.gray::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* donker om contrast te verdiepen */
  mix-blend-mode: soft-light; /* of try: multiply, overlay */
  pointer-events: none;
  z-index: 2;
}

/* Zorg dat content erboven blijft */
.elementor-element.gray > * {
  position: relative;
  z-index: 3;
}


@media screen and (max-width: 600px) {
  .elementor-headline {
    font-size: 5vw!important; /* of pas aan naar jouw smaak */
  }
}


/* Z-index voor sections */
.bigsection:nth-child(1) {
    z-index: 50 !important;
}
.bigsection:nth-child(2) {
    z-index: 49 !important;
}
.bigsection:nth-child(3) {
    z-index: 48 !important;
}
.bigsection:nth-child(4) {
    z-index: 47 !important;
}
.bigsection:nth-child(5) {
    z-index: 46 !important;
}
.bigsection:nth-child(6) {
    z-index: 45 !important;
}
.bigsection:nth-child(7) {
    z-index: 44 !important;
}
.bigsection:nth-child(8) {
    z-index: 43 !important;
}
.bigsection:nth-child(9) {
    z-index: 42 !important;
}
.bigsection:nth-child(10) {
    z-index: 41 !important;
}
footer .bigsection:nth-child(1) {
    z-index: 0 !important;
}

/* Mobiel: tot 767.98px */
@media only screen and (max-width: 767.98px) {
    .bigsection {
        padding: 75px 12px !important;
        --gap: 20px;
        --flex-direction: column;
        --container-widget-width: 100%;
        --container-widget-height: initial;
        --container-widget-flex-grow: 1;
        --container-widget-align-self: initial;
    }

    .bigsection:nth-child(1) {
        padding-top: 24px !important;
        padding-bottom: 48px !important;
    }

    .bigsection h1 {
        font-size: 40px !important;
        text-align: center !important;
    }

    .bigsection h2 {
        font-size: 36px !important;
        text-align: center !important;
    }

    .psubheader {
        font-size: 20px !important;
        line-height: 30px !important;
        margin-bottom: 0 !important;
    }

    .psubheader2 {
        font-size: 18px !important;
        line-height: 24px !important;
        margin-bottom: 0 !important;
    }

    .psubheader3 {
        font-size: 16px !important;
        line-height: 22px !important;
        margin-bottom: 0 !important;
    }
}

/* Tablet: 768px tot 1140px */
@media only screen and (min-width: 768px) and (max-width: 1140px) {
    .bigsection {
        padding: 75px 12px !important;
        --gap: 48px;
    }

    .bigsection h1 {
        font-size: 38px !important;
        text-align: center !important;
    }

    .bigsection h2 {
        font-size: 42px !important;
    }

    .psubheader {
        font-size: 22px !important;
        line-height: 40px !important;
        margin-bottom: 0 !important;
    }

    .psubheader2 {
        font-size: 18px !important;
        line-height: 30px !important;
        margin-bottom: 0 !important;
    }

    .psubheader3 {
        font-size: 16px !important;
        line-height: 24px !important;
        margin-bottom: 0 !important;
    }
}

/* Desktop: vanaf 768px */

.bigsection {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }
