/* =========================
FICHIER : style.css
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat', sans-serif;
  background:#0b0b0b;
  color:white;
}

/* NAVBAR */

.navbar{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 8%;
  position:fixed;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
}

.logo{
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:4px;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:0.95rem;
  transition:0.3s;
}

.nav-links a:hover{
  color:#999;
}

/* HERO */

.hero{
  height:120vh;
  background:url('img/Anonymous1.png') center/cover;
  display:flex;
  align-items:center;
  position:relative;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
}

.hero-content{
  position:relative;
  z-index:2;
  padding:0 8%;
  max-width:700px;
}

.hero-content h1{
  font-size:7rem;
  line-height:1;
  margin-bottom:20px;
}

.hero-content p{
  color:#ccc;
  line-height:1.8;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:15px 30px;
  background:white;
  color:black;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.btn:hover{
  background:#999;
}

/* SECTION */

section{
  padding:100px 8%;
}

.section-title{
  margin-bottom:50px;
}

.section-title h2{
  font-size:2rem;
  letter-spacing:3px;
}

/* ABOUT */

.about-content{
  max-width:800px;
}

.about-content p{
  color:#ccc;
  line-height:2;
  margin-bottom:20px;
}

/* CATALOGUE */

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.product-card{
  background:#151515;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-card img{
  width:100%;
  height:400px;
  object-fit:cover;
}

.product-info{
  padding:20px;
}

.product-info h3{
  margin-bottom:10px;
}

.price{
  color:#aaa;
  margin-bottom:20px;
}

.product-info button{
  width:100%;
  padding:14px;
  border:none;
  background:white;
  color:black;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.product-info button:hover{
  background:#888;
}

/* FORMULAIRE */

.commande form{
  max-width:700px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.commande input,
.commande textarea{
  padding:16px;
  background:#151515;
  border:1px solid #333;
  color:white;
  font-size:1rem;
  outline:none;
}

.commande textarea{
  min-height:140px;
  resize:none;
}

.commande button{
  padding:18px;
  background:white;
  border:none;
  color:black;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.commande button:hover{
  background:#999;
}

/* FOOTER */

footer{
  padding:60px 8%;
  text-align:center;
  background:#050505;
}

footer h3{
  letter-spacing:5px;
  margin-bottom:15px;
}

footer p{
  color:#888;
}

.socials{
  margin:25px 0;
  display:flex;
  justify-content:center;
  gap:20px;
}

.socials a{
  color:rgb(228, 37, 113);
  text-decoration:none;
}

.copy{
  margin-top:20px;
  font-size:0.9rem;
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero-content h1{
    font-size:3rem;
  }

  .nav-links{
    gap:15px;
  }

}

@media(max-width:700px){

  .navbar{
    flex-direction:column;
    gap:15px;
  }

  .hero-content h1{
    font-size:2.5rem;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

}

/* =========================
SYSTEME VOIR PLUS
========================= */

.hidden-product{
  display:none;
}

.see-more-container{
  width:100%;
  display:flex;
  justify-content:center;
  align-items: center;
  margin-top:40px;
}

.see-more-btn{
  padding:15px 35px;
  background:white;
  color:black;
  border:none;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.see-more-btn:hover{
  background:#888;
}