/*
Theme Name: Vertiga
Theme URI: https://agencevertiga.com
Description: Thème enfant de Hello Elementor pour Vertiga
Author: Agence Vertiga
Author URI: https://agencevertiga.com
Template: hello-elementor
Version: 1.0
Text Domain: vertiga
*/

/* Tu peux commencer à ajouter ton CSS personnalisé ici */


.acf-swiper-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  max-height:500px;
}

.acf-swiper-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height:500px;
  color: white;
}

.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  max-height:500px;
   background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 2;
}

.slide-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
}

/* Hide arrows on small screens */
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

