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

.fade-line{
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-line.visible{
    opacity: 1;
    transform: translateY(0);


.sticky-line{
    position: sticky;
    top: 0;
    height: 100vh;

    display: flex;
    align-items: center;

    background: white; /* aanpassen aan jouw achtergrond */
}

.sticky-line h2{
    font-size: clamp(40px, 7vw, 110px);
    line-height: 1.1;
    margin: 0;
}
	
	.sticky-line{
    position: sticky;
    top: 25vh;

    display: flex;
    align-items: center;

    padding: 4rem 0;

    opacity: 0.25;
    transform: translateY(40px) scale(0.96);
    filter: blur(2px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        filter 0.7s ease;
}

.sticky-line.active{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
	
	.scroll-line{
    position: sticky;
    top: 25vh;

    opacity: 0.2;
    transform: translateY(40px);
    transition: all 0.7s ease;

    padding-bottom: 120px;

    position: relative;
}



.scroll-line.visible::after{
    transform: translateX(-50%) scaleY(1);
}

.scroll-line:last-child::after{
    display: none;
}