/* ================= # style.css ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}
/*
body{
    background:#fff5f7;
    color:#333;
}
*/
body{
    background:#0f0f0f;
    color:#f5f5f5;
}

/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
	/*
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
	*/
	background:#111;
    box-shadow:0 2px 15px rgba(212,175,55,0.15);

    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#d4af37; /* color:#d63384; */
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:#f5f5f5; /* color:#333; */
    font-weight:bold;
    transition:0.3s;
}
/*
nav ul li a:hover{
    color:#d63384;
}
*/

nav ul li a:hover{
    color:#d4af37;
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* HERO */
.hero{
    height:85vh;
    background:url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?q=80&w=1600&auto=format&fit=crop') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    color:white;
    z-index:1;
    padding:20px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    /*background:#d63384;
    color:white;
	*/
	background:#d4af37;
    color:#111;
    font-weight:bold;
	
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#b8922f;
	/*background:#b0256e; */
}

/* PRODUCTS */
.products{
    padding:80px 40px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    color:#d4af37; /* color:#d63384; */
    margin-bottom:10px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#1a1a1a;
    color:#f5f5f5;
    box-shadow:0 5px 20px rgba(212,175,55,0.1);
	/*
	background:white;
	box-shadow:0 5px 15px rgba(0,0,0,0.1);
	*/
    border-radius:20px;
    overflow:hidden;
    
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.card-content{
    padding:20px;
    text-align:center;
}

.card-content h3{
    margin-bottom:10px;
}

.price{
    color:#d4af37; /*color:#d63384; */
    font-size:22px;
    font-weight:bold;
    margin-bottom:15px;
}

.buy-btn{
	background:#d4af37;
    color:#111;
    font-weight:bold;
    /*background:#d63384;
    color:white;
	*/
    border:none;
    padding:12px 20px;
    border-radius:25px;
    cursor:pointer;
    transition:0.3s;
}

.buy-btn:hover{
    background:#b8922f;
	/* background:#b0256e; */
}

/* ABOUT */
.about{
    padding:80px 40px;
    background:#111; /* background:white; */
    text-align:center;
}

.about p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

/* CONTACT */

.contact{
    padding:80px 40px;
}

.contact form{
    max-width:600px;
    margin:auto;
    
    padding:40px;
    border-radius:20px;
	/*
	background:white;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
	*/
	background:#1a1a1a;
    box-shadow:0 5px 20px rgba(212,175,55,0.1);
}

.contact input,
.contact textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    /* border:1px solid #ddd;*/
    border-radius:10px;
    outline:none;
	
	background:#111;
    color:white;
    border:1px solid #444;

}


.contact button{
    width:100%;
    padding:15px;
    border:none;
	/*
    background:#d63384;
    color:white;
	*/
	background:#d4af37;
    color:#111;
    font-weight:bold;
	
    font-size:18px;
    border-radius:10px;
    cursor:pointer;
}

/* FOOTER */
footer{
    background:#111;
    color:#d4af37;
	/*
	background:#d63384;
    color:white;
	*/
    text-align:center;
    padding:20px;
}

/* MOBILE */
@media(max-width:768px){

    .menu-toggle{
        display:block;
        font-size:32px;
        cursor:pointer;
        color:#d63384;
        z-index:3000; 
    }
	/*
    nav ul{
        display:flex;
        flex-direction:column;
        position:fixed;
        top:0;
        right:-100%;
        width:270px;
        height:100%;
        background:linear-gradient(180deg,#ffffff,#ffe3ec);
        padding-top:100px;
        gap:25px;
        transition:0.4s ease;
        z-index:2000; 
        box-shadow:-5px 0 20px rgba(0,0,0,0.15);
    } */
	
	nav ul{
    background:linear-gradient(180deg,#111,#1a1a1a);
}
	nav ul{
        display:flex;
        flex-direction:column;
        position:fixed;
        top:0;
        right:-100%;
        width:240px;
        height:auto; /* important */
		background:linear-gradient(180deg,#111,#1a1a1a);
        /*background:linear-gradient(180deg,#ffffff,#ffe3ec);*/
        padding:70px 20px 30px;
        gap:12px; /* espace réduit */
        transition:0.4s ease;
        z-index:2000;
        box-shadow:-5px 0 20px rgba(0,0,0,0.15);
        border-bottom-left-radius:20px;
    }

    nav ul.active{
        right:0;
    }

    nav ul li{
        text-align:center;
    }
		
	/*
    nav ul li a{
        font-size:20px;
        color:#d63384;
        font-weight:bold;
    }
	*/
	nav ul li a{
        display:block;
        padding:10px;
        font-size:18px;
        color:#d63384;
        font-weight:bold;
        border-radius:10px;
        transition:0.3s;
    }


	
	/*
    nav ul li a:hover{
        color:#b0256e;
    }
	*/
    
	nav ul li a:hover{
		background:#d4af37;
		color:#111;
	}
	/*
	nav ul li a:hover{
        background:#ffd6e7;
        color:#b0256e;
    }
	*/
	/*
    .hero h1{
        font-size:20px;
    } */

    .hero h1{
        font-size:40px;
    }
    .product-grid{
        grid-template-columns:1fr;
    }
	
	
	nav ul{
		backdrop-filter:blur(10px);
	}
}




