/* 
Theme Name: Conny Janssen
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Sander | Firma Netjes
Author URI: https://firmanetjes.nl
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
*/

/* Disable swipe, enable fade transition */
.elementor-loop-container .swiper {
    pointer-events: none;
}

/* Base slide state */
.elementor-loop-container .swiper-slide {
    opacity: 0;
    transition:
        opacity 0.6s ease-in-out,
        transform 0.6s ease-in-out !important;
}

/* Active slide visible */
.elementor-loop-container .swiper-slide-active {
    opacity: 1;
}

/* Make carousel slides clickable */
.elementor-loop-container .swiper-slide {
    cursor: pointer;
}

/* Optional hover effect */
.elementor-loop-container .swiper-slide:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
/* Sticky Footer */

/* ===== MOBIEL (< 768px) ===== */
@media (max-width: 767px) {
  .elementor-location-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
  }

  body {
    padding-bottom: 140px; /* Pas aan naar je footer hoogte */
  }
}

/* ===== TABLET (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .elementor-location-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
  }

  body {
    padding-bottom: 120px; /* Pas aan naar je footer hoogte */
  }
}

/* ===== DESKTOP (> 1024px) ===== */
@media (min-width: 1025px) {
  .elementor-location-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
  }

  body {
    padding-bottom: 100px; /* Pas aan naar je footer hoogte */
  }
}