/* 1. Fonts */
@font-face {
    font-family: 'Anton';
    src: url('/ASSETS/Fonts/Anton.woff2') format('woff2');
}

@font-face {
    font-family: 'Garet';
    src: url('/ASSETS/Fonts/Garet.woff2') format('woff2');
}

@font-face {
    font-family: 'Kind Avenue';
    src: url('/ASSETS/Fonts/Kind Avenue Ttf.woff2') format('woff2');
}

/* 2. Keyframes */
@keyframes AnimationName {
    0%{background-position:0% 47%}
    50%{background-position:100% 54%}
    100%{background-position:0% 47%}
}

/* 3. Variables :root */
:root {
    --blanc-casse: #E4E2DD;
    --gris-fonce: #292929;
    --vert-feuille: #446A28;
    --rose-fushia: #F3188F;

    --font-titre: 'Kind Avenue', sans-serif;
    --font-texte: 'Kind Avenue', sans-serif;

    --gradient-bg: linear-gradient(270deg, #e4e2dd, #ceb984, #e4c4e2, #eab83d);
}

/* 4. Reset * */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 5. Body */
body {
    margin: 0;
    padding: 0;
    color: var(--gris-fonce);
    font-family: var(--font-texte);
    background: var(--gradient-bg);
    background-size: 800% 800%;
    animation: AnimationName 50s ease infinite;
}

/* 6. Header / Nav */
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0px;
    padding-top: 10px;
    border-bottom: 6px solid #292929;
    padding-bottom: 15px;
    background: var(--gradient-bg);
    background-size: 800% 800%;
    animation: AnimationName 50s ease infinite;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navButtons {
    display: flex;
    gap: 15px;
}

.shopCart, .signup {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #292929;
    border-radius: 15px;
    padding: 12px 20px;
    box-shadow: 4px 4px 0px #292929;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shopCart:hover, .signup:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px #292929;
}

.shopCart img {
    width: 24px;
    height: 24px;
    display: block;
}


h1 {
    text-align: center;
    white-space: nowrap;
    justify-content: center;
}

.navbarLeft ul, .navbarRight ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.navbarLeft ul a, .navbarRight ul a, h1 a {
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 6px 10px;
    letter-spacing: 1.1px;
}

.navbarLeft ul a::after, .navbarLeft ul a::before,
.navbarRight ul a:after, .navbarRight ul a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #292929;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

.navbarLeft ul a::before, .navbarRight ul a::before {
    top: -5px;
    transform-origin: left;
}

.navbarLeft ul a:hover::after, .navbarRight ul a:hover::after,
.navbarLeft ul a:hover::before, .navbarRight ul a:hover::before {
    transform: scaleX(1);
}

.titleHeader {
    justify-content: center;
}

/* 7. Main */

.bottomHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
    padding-left: 20px;
}

.slogan {
    position: relative;
    width: 45%;
    font-size: 150px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 0.85;
}

.topProduct {
    position: relative;
    width: 50%;
}

.topProduct img {
    width: 100%;
    border: 6px solid #292929;
    box-shadow: 6px 6px 0px #292929;
    object-fit: cover;
    border-radius: 30px 0px 0px 30px;
    position: relative;
    display: block;
}

.topProductContent button {
    margin-top: 20px;
    padding: 16px 50px;
    width: auto;
    height: auto;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #E4E2DD;
    color: #E4E2DD;
    font-family: var(--font-titre);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topProductContent button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

.topProductContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.scrollInvite {
    width: 100%;
    text-align: center;
    padding-top: 55px;
}

.scrollInvite p {
    font-family: var(--font-titre);
    font-size: 20px;
    color: var(--gris-fonce);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.arrow {
    font-size: 30px;
    animation: bounce 1.5s ease infinite;
    color: #E4E2DD;
    margin-top: 30px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.div5 button {
    color: white;
}

.projets {
    background: #292929;
    color: #E4E2DD;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 600px;
    margin-bottom: 600px;
    margin-top: -55px;
}

.action {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #292929;
    border-radius: 40px;
    padding-left: 60px;
    padding-right: 60px;
    margin-right: 60px;
    position: relative;
    font-family: 'Garet';
    text-align: left;
    line-height: 1.3;
    align-self: flex-start;
}

.action p, .action p1, .action p2, .action p3, .slog2 p4 {
    font-size: 27px;
    letter-spacing: 1.2px;
    margin-top: 100px;
}

.action h4 {
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: -95px;
}

.slog2 {
    text-align: center;
    width: 100%;
    margin-top: 80px;
}

.imagesPres {
    position: relative;
    height: 600px;
    width: 60%;
}

.projets img {
    border-radius: 20px;
    border: 6px solid #E4E2DD;
    box-shadow: 6px 6px 0px #E4E2DD;
}

.img1 {
    position: absolute;
    transform: rotate(86deg);
    width: 55%;
    top: -150px;
    left: 0;
    z-index: 1;
}

.img2 {
    position: absolute;
    width: 35%;
    top: 90px;
    left: 50%;
    transform: rotate(2deg);
    z-index: 2;
}

.img3 {
    position: absolute;
    width: 30%;
    top: 330px;
    left: 5%;
    transform: rotate(-2deg);
    z-index: 3;
}

.img4 {
    position: absolute;
    width: 30%;
    top: 490px;
    left: 25%;
    z-index: 4;
    transform: rotate(-6deg);
}

.buttonRejoindre {
    align-self: center;
    padding-top: 20px;
    padding-bottom: 50px;
}

.buttonRejoindre button {
    padding: 16px 50px;
    width: auto;
    height: auto;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    background: #E4E2DD;
    border: 3px solid #292929;
    color: #292929;
    font-family: 'Garet';
    font-size: 26px;
    font-weight: 900;
    box-shadow: 1px 4px 20px rbga(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buttonRejoindre button:hover {
    transform: translateY(-3px);
}

/* product cards */

.cultures {
    border-bottom: 7px solid #292929;
    padding-bottom: 400px;
}

.whatsGrow {
    position: absolute;
    margin-top: -289px;
    font-size: 120px;
    left: 2%;
    line-height: 0.90;
}

.fancy {
    font-feature-settings: "salt" 1;
    margin-right: -100px;
}

.produits p {
    margin: 0;
}

.cardsContainer {
    display: flex;
    justify-content: center;
    gap: 250px;
    margin-top: 605px;
    padding-top: 130px;
    border-top: 7px solid #292929;
}

.produits {
    position: relative;
    width: 500px;
    height: 300px;
    border-radius: 20px;
    font-family: 'Garet';
    transform-style: preserve-3d;
    transition: transform .2s linear;
}

.banner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0px 7px 20px 0px #292929;
    border-radius: 30px;
    transform-style: preserve-3d;
    background: rgba(228, 226, 221, 0.7);
}

.productImg img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(80px);
}

.Title {
    position: absolute;
    left: -50px;
    top: 45px;
    font-size: 2.2em;
    font-weight: 700;
    color: #292929;
    text-transform: uppercase;
}

.description {
    position: absolute;
    left: -50px;
    bottom: 45px;
    font-size: 16px;
    font-weight: 300;
    opacity: 1;
    width: 200px;
}

.price {
    position: absolute;
    bottom: 45px;
    right: -30px;
    font-size: 22px;
    font-weight: 700;
}

.discovery {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform:  translateX(-50%);
}

.content button {
    margin-top: 20px;
    padding: 16px 50px;
    width: auto;
    height: auto;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid #E4E2DD;
    color: #E4E2DD;
    font-family: var(--font-titre);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content button:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

.infoCard {
    width: 700px;
    position: absolute;
    display: flex;
    flex-direction: column;
    background: #292929;
    color: #E4E2DD;
    border-radius: 30px;
    right: -100px;
    top: 2450px;
    padding: 50px 40px;
    transform: rotate(6deg);
}

.infoCard h1 {
    font-family: var(--font-titre);
    font-feature-settings: "salt" 1;
    text-align: left;      /* ← titre à gauche */
    align-self: flex-start; /* ← idem en flexbox */
    margin-bottom: 8px;
}

.infoCard p {
    letter-spacing: 3px;
}

.infoCard img {
    width: 600px;
    height: 300px;
    align-self: center;
    margin-top: 30px;
    margin-bottom: -10px;
    border-radius: 12px;          
    object-fit: cover;
    outline: 3px solid #E4E2DD;   
    outline-offset: 5px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5); 
    filter: saturate(1.2);        
    transition: transform 0.3s ease;
}

.infoCard img:hover {
    transform: scale(1.08);       
}

.instaFeed h2 {
    position: absolute;
    font-size: 190px;
    margin-top: -285px;
    left: 2%;
    font-feature-settings: "salt" 1;
}

.instaFeed {
    margin-top: 100px;
    padding: 0 300px;
    z-index: 0;
}

.instaGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    z-index: 1;
}

.instaGrid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: opacity 0.3s;
    border-radius: 15px;
}

.instaGrid img:hover {
    opacity: 0.95;
}

/* 8. Footer */

.footerBackground {
    width: 100%;
    display: block;
    margin: 0;
    line-height: 0;
    z-index: 1;
    margin-top: -400px;
}

.footerBackground img {
    width: 100%;
    display: block;
    pointer-events: none;
}

.footer {
    background-color: #292929;
    color: #E4E2DD;
    padding-top: 40px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-around;
    z-index: 1;
}

.div1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div1 p {
    font-size: 26px;
    letter-spacing: 5px;
}

.div1 button {
    width: auto;
    height: auto;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    background: #E4E2DD;
    border: 3px solid #292929;
    color: #292929;
    font-family: var(--font-titre);
    font-feature-settings: "salt" 1;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 4px 4px 0px #E4E2DD;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px 60px;
    margin-top: 20px;
}

.nofont {
    font-feature-settings: "salt" 0;
}

.div1 button:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px #E4E2DD;
}

.div2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.div2 h4 {
    margin-bottom: 40px;
    font-size: 40px;
    letter-spacing: 5px;
    text-decoration: underline;
    text-underline-offset: 8px;
}

.socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
}

.socials img {
    width: 72px;
}

.insta, .tiktok, .git {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.div2 a, .div3 a {
    text-decoration: none;
    color: #E4E2DD;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.div3 {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    justify-content: center;
    gap: 30px;
}

.windowContainer {
    width: 430px;
    height: 220px;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 40px;
}

.topBar{
    background-color: #494949;
    display: flex;  
    align-items: center;
    justify-content: space-between;
    padding: 6px;
}

span.topBarName{
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

figure{
    height: 100%;
    width: 100%;
    margin: 0;
}

video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.topBarActions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.actionOne, .actionTwo, .actionThree{
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #888;
}

.actionOne{
    background-color: #FFFFFF;
}

.actionTwo{
    background-color: #54FFCC;
}

.actionThree{
    background-color: #FF51D1;
}

.newsLetter {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.newsLetter h3 {
    display: flex;
    font-size: 30px;
    letter-spacing: 20px;
    justify-content: center;
    text-decoration: underline;
    text-underline-offset: 8px;
    padding: 10px;
}

.offset {
    letter-spacing: 0;
}

.newsLetter p {
    display: flex;
    justify-content: center;
}

.email {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.email img {
    width: 48px;
    height: 48px;
}

.email input {
    width: 100%;
    height: 70px;
    border-radius: 40px;
    outline: none;
    font-size: 15px;
    padding: 0 70px 0 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.email button {
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
}


.mobileMenu {
    display: none;
}

.hamburger {
    display: none;
}
/* ===== MOBILE ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #292929;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    * {
        max-width: 100%;
    }

    /* Navbar sticky mobile */
    .header {
        position: sticky;
        top: 0;
        z-index: 200;
    }

    .hamburger {
        display: flex;
    }

    .titleHeader {
    flex: 1;
    text-align: center;
    }

    .navbarLeft,
    .navbarRight {
        display: none;
    }

    .mobileMenu {
        display: none;
    }

    .mobileMenu.open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--gradient-bg);
        background-size: 800% 800%;
        animation: AnimationName 50s ease infinite;
        justify-content: center;
        align-items: center;
        z-index: 150;
    }

    .mobileMenu ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        gap: 30px;
        text-align: center;
        font-size: 24px;
        padding: 0;
    }

    .mobileMenu a {
        text-decoration: none;
        color: var(--gris-fonce);
    }

    .mobileMenu .navButtons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    /* Hero */
    .bottomHeader {
        flex-direction: column;
        padding: 20px;
        margin-top: 20px;
        gap: 20px;
    }

    .slogan {
        width: 100%;
        font-size: clamp(50px, 15vw, 100px);
        text-align: left;
    }

    .topProduct {
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
    }

    .topProduct img {
        border-radius: 20px;
    }

    .whatsGrow {
        position: static;
        margin-top: 0;
        font-size: clamp(40px, 12vw, 120px);
        padding: 20px;
    }

    .projets {
        flex-direction: column;
        max-height: none;
        margin-bottom: 0;
        overflow: hidden;
    }

    .imagesPres {
        display: none;
    }

    .arrow {
        display: block;
        color: var(--gris-fonce);
    }
    .action {
        width: 100%;
        margin: 0;
        padding: 30px 20px;
        border-radius: 0;
    }

    .action p, .action p1, .action p2, .action p3, .slog2 p4 {
        font-size: 18px;
        margin-top: 30px;
    }

    .action h4 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: -30px;
    }

    .whatsGrow {
        position: static;
        margin-top: 0;
        font-size: clamp(40px, 12vw, 120px);
        padding: 20px;
    }

    .cardsContainer {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .produits {
        width: 90%;
        height: 300px;
    }

    .infoCard {
        position: static;
        width: 90%;
        transform: none;
        margin: 0 auto;
    }

    .infoCard img {
        width: 100%;
    }

    .instaFeed {
        padding: 0 20px;
        margin-top: 20px;
    }

    .instaFeed h2 {
        position: static;
        font-size: clamp(50px, 15vw, 190px);
        margin-top: 0;
    }

    .produits {
        width: 90%;
        height: auto;
        min-height: 350px;
    }

    .content {
        transform: none;
        position: relative;
        padding: 15px;
    }

    .Title {
        position: static;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .description {
        position: static;
        width: 100%;
        margin-bottom: 10px;
    }

    .price {
        position: static;
        display: block;
        margin-bottom: 10px;
    }

    .discovery {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 20px;
    }

    .footerBackground {
        margin-top: 0;
    }

    .windowContainer {
        width: 100%;
        margin: 0;
    }

    .cultures {
        padding-bottom: 40px;
    }

    .newsLetter h3 {
        font-size: 20px;
        letter-spacing: 5px;
    }

    .instaGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .div4 {
        width: 100%;
        padding: 0 20px;
    }

    .windowContainer {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .div6 {
        width: 100%;
        padding: 0 20px;
    }

    .div1 button {
        font-size: 18px;
        padding: 15px 30px;
    }

    .instaFeed h2 {
    font-size: clamp(40px, 12vw, 190px);
    overflow: hidden;
    }

    .fancy {
        margin-right: 0;
    }

    .div1, .div2, .div4, .div6 {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}