/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/*==============================
  HERO IMAGE
==============================*/

.hero-picture {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/*==============================
  OVERLAY
==============================*/

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75) 0%,
            rgba(0,0,0,.55) 35%,
            rgba(0,0,0,.20) 70%,
            rgba(0,0,0,.15) 100%
        );
}

/*==============================
  CONTENT
==============================*/

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-content {
    max-width: 720px;
    color: #ffffff;
}

/*==============================
  BADGE
==============================*/

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,.12);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.18);

    margin-bottom: 25px;

    font-size: .92rem;

    font-weight: 500;

}

.hero-badge i{

    color:#f7941d;

}

/*==============================
  TITLE
==============================*/

.hero h1{

    font-size: clamp(2.6rem,6vw,4.8rem);

    font-weight:700;

    line-height:1.15;

    margin-bottom:28px;

}

/*==============================
  DESCRIPTION
==============================*/

.hero p{

    max-width:650px;

    font-size:1.08rem;

    line-height:1.9;

    color:rgba(255,255,255,.90);

    margin-bottom:40px;

}

/*==============================
  BUTTONS
==============================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

}

/*==============================
  STATS
==============================*/

.hero-stats{

    display:flex;

    gap:25px;

    margin-top:70px;

    flex-wrap:wrap;

}

.stat-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:20px 25px;

    border-radius:18px;

    min-width:170px;

}

.stat-card h3{

    font-size:2rem;

    color:#ffffff;

    margin-bottom:8px;

}

.stat-card span{

    color:rgba(255,255,255,.82);

    font-size:.92rem;

}

/*==============================
  SCROLL DOWN
==============================*/

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    z-index:10;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#ffffff;

    animation:scrollDown 2s infinite;

}

.scroll-down span{

    font-size:.85rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.scroll-down i{

    font-size:1.1rem;

}

/*==============================
  ANIMATION
==============================*/

@keyframes scrollDown{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,10px);

    }

    100%{

        transform:translate(-50%,0);

    }

}

/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .hero{

        min-height:90vh;

    }

    .hero-content{

        max-width:100%;

    }

    .hero-stats{

        gap:15px;

    }

}

@media(max-width:768px){

    .hero{

        min-height:85vh;

    }

    .hero-overlay{

        background:rgba(0,0,0,.65);

    }

    .hero h1{

        font-size:2.5rem;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

        justify-content:center;

    }

    .hero-stats{

        flex-direction:column;

        margin-top:45px;

    }

    .stat-card{

        width:100%;

    }

}

@media(max-width:576px){

    .hero{

        min-height:100vh;

    }

    .hero h1{

        font-size:2.1rem;

    }

    .hero-badge{

        font-size:.80rem;

    }

    .scroll-down{

        display:none;

    }

}

/*======================================================
  HERO ANIMATION
======================================================*/

.hero-content{

    opacity:0;

    transform:translateY(40px);

    transition:all .9s ease;

}

.hero.hero-loaded .hero-content{

    opacity:1;

    transform:translateY(0);

}

.hero-image{

    transform:scale(1.08);

    transition:transform 8s ease;

}

.hero-image.hero-image-loaded{

    transform:scale(1);

}

.scroll-down{

    transition:opacity .3s ease;

}

@media (max-width: 768px) {

    .hero-content {

        padding-top: 80px;

    }

}

/* =====================================================
   ABOUT PREVIEW
===================================================== */

.about-preview{

    padding:120px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}


/*==============================
  IMAGE
==============================*/

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    display:block;

    border-radius:24px;

    object-fit:cover;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.4s ease;

}

.about-image:hover img{

    transform:scale(1.03);

}


/*==============================
  CONTENT
==============================*/

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    padding:10px 20px;

    background:rgba(31,93,58,.08);

    color:#1f5d3a;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:25px;

}

.section-badge i{

    color:#f7941d;

}

.about-content h2{

    font-size:2.8rem;

    line-height:1.25;

    color:#0f172a;

    margin-bottom:25px;

}

.about-content p{

    font-size:1.05rem;

    line-height:1.9;

    color:#475569;

    margin-bottom:35px;

}


/*==============================
  FEATURES
==============================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px 18px;

    background:#f8fafc;

    border-radius:14px;

    transition:.3s ease;

}

.feature-item:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.feature-item i{

    color:#1f5d3a;

    font-size:1.2rem;

}

.feature-item span{

    color:#334155;

    font-weight:500;

}


/*==============================
  BUTTON
==============================*/

.about-content .btn{

    width:max-content;

    display:inline-flex;

    align-items:center;

    gap:12px;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .about-grid{

        gap:50px;

    }

    .about-content h2{

        font-size:2.2rem;

    }

}

@media(max-width:768px){

    .about-preview{

        padding:90px 0;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .about-image{

        order:1;

    }

    .about-content{

        order:2;

    }

    .about-content h2{

        font-size:2rem;

    }

    .about-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .about-preview{

        padding:70px 0;

    }

    .about-content h2{

        font-size:1.7rem;

    }

    .about-content p{

        font-size:1rem;

    }

    .about-content .btn{

        width:100%;

        justify-content:center;

    }

}

/*======================================================
  ABOUT ANIMATION
======================================================*/

.about-image,
.about-content{

    opacity:0;

    transition:all .8s ease;

}

.about-image{

    transform:translateX(-60px);

}

.about-content{

    transform:translateX(60px);

}

.about-preview.show .about-image,
.about-preview.show .about-content{

    opacity:1;

    transform:translateX(0);

}

/* =====================================================
   SERVICES PREVIEW
===================================================== */

.services-preview{

    padding:120px 0;

    background:#f8fafc;

}


/*==============================
  SECTION HEADER
==============================*/

.section-header{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.section-header h2{

    font-size:2.8rem;

    color:#0f172a;

    margin:20px 0;

    line-height:1.2;

}

.section-header p{

    font-size:1.05rem;

    color:#64748b;

    line-height:1.8;

}


/*==============================
  GRID
==============================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/*==============================
  CARD
==============================*/

.service-card{

    background:#ffffff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

    transition:.35s ease;

    border:1px solid transparent;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#1f5d3a;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}


/*==============================
  ICON
==============================*/

.service-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(31,93,58,.10);

    transition:.35s ease;

}

.service-icon i{

    font-size:2.3rem;

    color:#1f5d3a;

    transition:.35s ease;

}

.service-card:hover .service-icon{

    background:#1f5d3a;

}

.service-card:hover .service-icon i{

    color:#ffffff;

}


/*==============================
  TITLE
==============================*/

.service-card h3{

    font-size:1.35rem;

    color:#0f172a;

    margin-bottom:18px;

}


/*==============================
  DESCRIPTION
==============================*/

.service-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;

}


/*==============================
  LINK
==============================*/

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#1f5d3a;

    font-weight:600;

    transition:.3s ease;

}

.service-card a i{

    transition:.3s ease;

}

.service-card:hover a{

    color:#f7941d;

}

.service-card:hover a i{

    transform:translateX(6px);

}


/*==============================
  FOOTER
==============================*/

.services-footer{

    text-align:center;

    margin-top:60px;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-preview{

        padding:90px 0;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header h2{

        font-size:2.1rem;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .section-header h2{

        font-size:1.8rem;

    }

    .service-card{

        padding:35px 25px;

    }

    .service-icon{

        width:80px;

        height:80px;

    }

    .service-icon i{

        font-size:2rem;

    }

}

/*======================================================
  SERVICES ANIMATION
======================================================*/

.service-card{

    opacity:0;

    transform:translateY(50px);

}

.service-card.show-service{

    opacity:1;

    transform:translateY(0);

}



/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-us{

    padding:120px 0;

    background:#ffffff;

}


/*==============================
  GRID
==============================*/

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}


/*==============================
  CARD
==============================*/

.why-card{

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    border:1px solid #e2e8f0;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#1f5d3a;

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

}


/*==============================
  ICON
==============================*/

.why-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(31,93,58,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s ease;

}

.why-icon i{

    font-size:2.2rem;

    color:#1f5d3a;

    transition:.35s ease;

}

.why-card:hover .why-icon{

    background:#1f5d3a;

}

.why-card:hover .why-icon i{

    color:#ffffff;

}


/*==============================
  TITLE
==============================*/

.why-card h3{

    font-size:1.35rem;

    color:#0f172a;

    margin-bottom:18px;

}


/*==============================
  DESCRIPTION
==============================*/

.why-card p{

    color:#64748b;

    line-height:1.8;

}


/*==============================
  CTA
==============================*/

.why-footer{

    margin-top:70px;

    text-align:center;

}

.why-footer .btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-us{

        padding:90px 0;

    }

    .why-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

}

@media(max-width:576px){

    .why-card{

        padding:35px 25px;

    }

    .why-icon{

        width:80px;

        height:80px;

    }

    .why-icon i{

        font-size:2rem;

    }

}

/*======================================================
  WHY ANIMATION
======================================================*/

.why-card{

    opacity:0;

    transform:translateY(50px);

    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.why-card.show-why{

    opacity:1;

    transform:translateY(0);

}

/* =====================================================
   PRODUCTS PREVIEW
===================================================== */

.products-preview{

    padding:120px 0;

    background:#f8fafc;

}


/*==============================
  GRID
==============================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}


/*==============================
  CARD
==============================*/

.product-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}


/*==============================
  IMAGE
==============================*/

.product-image{

    position:relative;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}

.product-card:hover .product-image img{

    transform:scale(1.08);

}


/*==============================
  STATUS
==============================*/

.product-status{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 16px;

    border-radius:30px;

    color:#ffffff;

    font-size:.85rem;

    font-weight:600;

}

.available{

    background:#16a34a;

}

.reservation{

    background:#f59e0b;

}


/*==============================
  CONTENT
==============================*/

.product-content{

    padding:30px;

}

.product-content h3{

    font-size:1.45rem;

    color:#0f172a;

    margin-bottom:15px;

}

.product-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:30px;

}


/*==============================
  BUTTONS
==============================*/

.product-content .btn{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}


/*==============================
  FOOTER
==============================*/

.products-footer{

    margin-top:70px;

    text-align:center;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .products-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .products-preview{

        padding:90px 0;

    }

    .products-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .product-content{

        padding:25px;

    }

    .product-image img{

        height:220px;

    }

}


/*======================================================
  PRODUCTS ANIMATION
======================================================*/

.product-card{

    opacity:0;

    transform:translateY(50px);

    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .35s ease;

}

.product-card.show-product{

    opacity:1;

    transform:translateY(0);

}

/* =====================================================
   PROJECTS PREVIEW
===================================================== */

.projects-preview{

    padding:120px 0;

    background:#0f172a;

}

.projects-preview .section-header h2{

    color:#ffffff;

}

.projects-preview .section-header p{

    color:#cbd5e1;

}


/*==============================
  GRID
==============================*/

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}


/*==============================
  CARD
==============================*/

.project-card{

    background:#ffffff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    transition:.4s ease;

}

.project-card:hover{

    transform:translateY(-10px);

}


/*==============================
  IMAGE
==============================*/

.project-image{

    position:relative;

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:270px;

    object-fit:cover;

    display:block;

    transition:.6s ease;

}

.project-card:hover .project-image img{

    transform:scale(1.08);

}

.project-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.05)
    );

    z-index:1;

}


/*==============================
  CATEGORY
==============================*/

.project-category{

    position:absolute;

    top:18px;

    left:18px;

    z-index:2;

    background:#1f5d3a;

    color:#ffffff;

    padding:8px 18px;

    border-radius:30px;

    font-size:.85rem;

    font-weight:600;

}


/*==============================
  CONTENT
==============================*/

.project-content{

    padding:30px;

}

.project-content h3{

    font-size:1.4rem;

    color:#0f172a;

    margin-bottom:18px;

}

.project-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;

}


/*==============================
  LINK
==============================*/

.project-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#1f5d3a;

    font-weight:600;

    transition:.35s ease;

}

.project-content a i{

    transition:.35s ease;

}

.project-card:hover a{

    color:#f7941d;

}

.project-card:hover a i{

    transform:translateX(6px);

}


/*==============================
  FOOTER
==============================*/

.projects-footer{

    text-align:center;

    margin-top:70px;

}

.projects-footer .btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

}


/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px){

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .projects-preview{

        padding:90px 0;

    }

    .projects-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .project-image img{

        height:230px;

    }

    .project-content{

        padding:25px;

    }

}

/*======================================================
  PROJECTS ANIMATION
======================================================*/

.project-card{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .35s ease;

}

.project-card.show-project{

    opacity:1;

    transform:translateY(0);

}

.projects-preview .section-badge{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.20);

    color:#ffffff;

    backdrop-filter:blur(12px);

}

/*======================================================
  RESPONSIVE - AJOUT
======================================================*/

@media (max-width:992px){

    .hero-content,
    .about-content,
    .section-header{

        width:100%;

    }

}


@media (max-width:768px){

    section{

        overflow:hidden;

    }

    .hero{

        padding:130px 0 80px;

    }

    .hero-content{

        text-align:center;

        margin:auto;

    }

    .hero p{

        max-width:100%;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-stats{

        justify-content:center;

    }

    .about-content{

        text-align:center;

    }

    .section-badge{

        margin-inline:auto;

    }

    .about-content .btn{

        margin:auto;

    }

    .services-grid,
    .why-grid,
    .products-grid,
    .projects-grid{

        gap:20px;

    }

}


@media (max-width:576px){

    .hero h1{

        line-height:1.25;

    }

    .hero-buttons .btn{

        width:100%;

    }

    .stat-card{

        width:100%;

    }

    .service-card,
    .project-card,
    .product-card,
    .why-card{

        width:100%;

    }

    .service-icon,
    .why-icon{

        margin-inline:auto;

    }

}


/* Sécurité Responsive */

img{

    max-width:100%;

    height:auto;

}

iframe{

    max-width:100%;

}

video{

    max-width:100%;

}