.slider-wrapper {

    display: flex;

    gap: 20px;

    padding-right: 50px;

} 

#portfolio  .slide-card:hover {
    transform: scale(1.05);
}

#portfolio .swiper-slide:hover {
    transform: scale(1.02);
}
.slide-portfolio {
    width: 100%;
    height: 100%;
}


      @media (max-width: 768px) {

    .nav-links { display: none; }


    .hero-content { text-align: center; }

    .btn-group { justify-content: center; }

}



.modal-tools {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn-action {
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    transition: opacity 0.2s;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: rgb(255, 0, 0);
    font-size: 40px;
    cursor: pointer;
}
    .btn-outline {

    background: transparent;

    color: #ffffff;

    border: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);
    text-decoration: none;

}

.btn:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.3);

}
/* HERO */

/* HERO */
.hero {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}

/* SWIPER STRUCTURE */
.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
width: 100%;
height: 100%;
}

/* SLIDE */
.heroSwiper .swiper-slide {
position: relative;
}

/* IMAGE FULL SCREEN */
.heroSwiper .swiper-slide img {
position: absolute;
inset: 0;
width: 100%;
height: 100vh;
object-fit: cover;
filter: brightness(0.65);
}

/* ZOOM CINÉMATIQUE */
.heroSwiper .swiper-slide-active img {
transform: scale(1.1);
transition: transform 6s ease;
}

/* OVERLAY */
.heroSwiper .swiper-slide::after {
content: "";
position: absolute;
inset: 0;
height: 100vh;
background: rgba(0,0,0,0.4);
}

/* CONTENU */
.hero-content {
position: absolute;
top: 30% !important;
left: 10%;
transform: translateY(-50%);
z-index: 2;
max-width: 600px;
color: white;
}

/* TITRE */
.hero-title {
font-size: clamp(28px, 5vw, 60px);
line-height: 1.2;
}

/* DESCRIPTION */
.hero-description {
font-size: 16px;
margin-bottom: 20px;
}

/* BOUTONS */
/* .hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
} */

/* MOBILE FIX */
@media (max-width: 768px) {
.hero-content {
  left: 5%;
  right: 5%;
  top: 55%;
  transform: translateY(-50%);
}

.hero-title {
  font-size: 28px;
}

.hero-description {
  font-size: 14px;
}

}

.btn-primary {
background: #Be004B;
color: white;
padding: 12px 22px;
}

.btn-secondary {
background: transparent;
border: 1px solid white;
padding: 12px 22px;
color: white;
}
    

