* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #7B1D26;
}
#bloc1{
    height: 40px;
    background-color: #7B1D26;
    color: #E4CDDD;
}
#bloc1 h2{
    font-size: 13px;
}
#bloc1 ul{
    display: flex;
    list-style: none;
}
#bloc1 ul li a{
    color: white;
    padding: 10px;
    display: flex;
    text-decoration: none;
    font-size: 12px;
    
}
#bloc1 ul li a:hover{
    color: black;
    cursor:pointer;
    transform: translatey(-5px);
    transition: all 1s ease;
}
.menu{
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fort{
    width:90%;
    margin: auto;
}
.header-main {
  background: #fff;
  padding: 10px 20px;
  color: #000;
  font-family: Arial, sans-serif;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.logo img {
  width: 55px;
  border-radius: 50%;
}
.site-name {
  font-weight: bold;
  font-size: 20px;
  color: #53162d;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

nav ul.menu {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul.menu li {
  position: relative;
}
nav ul.menu li input[type="checkbox"] {
  display: none;
}
nav ul.menu li label,
nav ul.menu li a {
  cursor: pointer;
  display: block;
  color: black;
  font-weight: bold;
  padding: 5px 8px;
  text-decoration: none;
}
nav ul.menu li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white; 
  padding: 10px;
  border-radius: 6px;
  min-width: 180px;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
}
nav ul.menu li input[type="checkbox"]:checked + label + ul.submenu {
  display: flex;
}

nav ul.menu li ul.submenu li {
  color: #5c0a0a;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-submenu .team-container {
  display: flex;
  flex-wrap: wrap;         
  gap: 20px;                
  overflow: visible;
}

.team-member {
  width: calc((100% / 3) - 13.33px); 
  position: relative;
  overflow: visible;
  text-align: center;
}

.team-member .team-photo {
  width: 160%;
  height: 100px;
  object-fit: cover;
  border-radius: 10%;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}

.team-member:hover .team-photo {
  transform: scale(2.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.());
  z-index: 999;
}

.team-info {
  margin-top: 5px;
  font-size: 12px;
}

.team-info .team-name {
  font-weight: bold;
  color: #0077cc;
}

.team-info .team-role {
  font-size: 10px;
  color: #555;
}
.plus {
  background: #53162d;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 2px 6px;
  cursor: pointer;
}
.search {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #01090f;
  max-width: 150px;
  flex-shrink: 0;
}

.cart {
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-container {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-container input[type="checkbox"] {
  display: none;
}

.cart-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  color: #0c1013;
  padding: 10px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}

.cart-container input[type="checkbox"]:checked + .cart + .cart-dropdown {
  display: flex;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-photo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.cart-total {
  font-weight: bold;
  border-top: 1px solid #250305;
  padding-top: 5px;
}
.section-fond {
    background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.5)), url(Images/1771879313704.jpg); /* Ton image de fond */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }

  .contenu-anim {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
    opacity: 0;
    animation: apparaitre 1.5s forwards;
  }

  .texte-gauche {
    flex: 1;
    padding-right: 20px;
    transform: translateX(-50px);
    animation: slideText 1s forwards;
    animation-delay: 0.3s;  
    
  }
  .texte-gauche h2{
    font-size: 48px;
    top: 40px;
  }
  .texte-gauche p{
    font-size: 20px;
  }
  .texte-gauche button{
    background-color: #3a0c10;
    color: white ;
    padding: 10px;
    border: none;
  }
  .texte-gauche button:hover{
    background-color: #63132d;
    color: black;
  }
  .images-droite {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    transform: translateX(50px);
    animation: slideImages 1s forwards;
    animation-delay: 0.6s;
    opacity: 0.6;
  }

  .images-droite img {
    width: 250px;
    border-radius: 10px;
  }

  @keyframes apparaitre {
    to { opacity: 1; }
  }

  @keyframes slideText {
    to { transform: translateX(0); }
  }

  @keyframes slideImages {
    to { transform: translateX(0); }
      
  
}
.top-btn{
    position: absolute;
    top: 137px;
    right: 0;
    padding: 10px;
    background: #7B1D26;
    color: white;
    border: none;
    font-weight: bold;
}
.services{
    margin-bottom: 90px;
    background: white;
    width: 71%;
    display: flex;
    justify-content: space-around;
    padding: 19px;
    align-items: center;
    margin: -20px auto 0 ;
    font-size: 13px;
}
.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50%;
}
.texte:hover{
    background-color: #e3dcd7;
    border-radius: 40px;
    padding: 10px;
    transition: all 0.3s ease;
}
.icon:hover{
    background-color: #e3dcd7;
    border-radius: 40px;
    padding: 10px;
    transition: all 0.3s ease;
}
.info{
    height: 326px;
    width: 180px;
    background-image:url(Images/2a0467abbf1ef6b0efa16315180a5fe7.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    inset: 0;
    opacity: 0.6;
    margin-top: 50px;
}
.info h3{
    color: white;
    text-align: center;
}
.info p{
    padding: 6px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
    text-decoration: none;
    color: white;
}
.info p:hover{
       background: #63132d;
    color: black;
}    
#bloc4{
    height: 450px;
}
.card{
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 1s ease;
    background: #f5f5f5;
    margin-top: 50px;
}
.card-net{
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 1s ease;
    background: #f5f5f5;
    margin-top: 50px;
}
.card-net img{
    width: 100%;
    height: 170px;
object-fit: cover;
}
.card-net h4{
text-align: center;
margin-bottom: 5px;
color: black;
}
.card-text{
    padding: 8px;
    text-align: center;
    box-sizing: border-box;
}
.card-net a{
    text-decoration: none;
    background-color: rgb(185, 73, 92);
    color: white;
    padding: 7px;
    border-radius: 5px;
}
.card-net img{
    transition: all 1s ease;
}
.card-net img:hover{
    transform: scale(1.2);
}   
.brand-logos{
    display: flex;
    justify-content:center;
    gap: 20px;
    background-color: #7B1D26;
    padding: 10px 0;
    font-family: 'cookie';
    font-size: 28px;
    color: #a9afb2;
    opacity: 0.6;
}

.brand-logos{
    margin-top: -40px;
}
#bloc5{
    height: 450px;
}
.coin{
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 1s ease;
    background: #f5f5f5;
    margin-top: 50px;
}
.coin img{
    width: 100%;
    height: 170px;
object-fit: cover;
}
.coin h4{
text-align: center;
margin-bottom: 5px;
color: black;
}
.coin-text{
    padding: 8px;
    text-align: center;
    box-sizing: border-box;
}
.coin a{
    text-decoration: none;
    background-color: rgb(185, 73, 92);
    color: white;
    padding: 7px;
    border-radius: 5px;
}
.coin img{
    transition:all 1s ease;
}
.coin img:hover{
    transform: scale(1.2);
}
.menu-card{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nouveautes{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price{
    height: 285px;
    width: 180px;
    background-image:url(Images/3bccc4fdef94fbfe2ece393a58430efa.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    opacity: 0.5;
}

.price h3{
    color: white;
    text-align: center;
    margin-left: 20px;
}
.btn{
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    transition: 0.3s ease;
}

.btn:hover{
    background: #5c0a0a;
    color: white;
}
#toggle{
    display: none;
}
.products{
    position: absolute; 
    top:calc(100% + 25px);
    left: -100px;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 1000;

    display: none;
    grid-template-columns: repeat(3, 150px);
    gap: 15px;
}
#toggle:checked ~ .products{
    display: grid;
}
.product{
    text-align: center;
}

.product img{
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.product h4{
    margin: 5px 0 0 0;
}

.product p{
    color: #5c0a0a;
    font-weight: bold;
}
.contenu-bas{
    margin-top: -50px;
    text-align: center;
}
.banner{
    height:250px;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url(Images/1771879313704.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.content h2{
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:15px;
    font-family: arial, sans-serif;
    color: #cab6b8;
}
.btn{
    display:inline-block;
    padding:10px 20px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:#a52a2a;
    color:white;
}
.overlay{
    position: absolute;
    top: 1350px;
    left:0;
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    visibility:hidden;
    opacity:0;
    transition:0.3s ease;
}
.overlay:target{
    visibility:visible;
    opacity:1;
}
.form-container{
    background-image: url(Images/93ba238f545368df0801a3b7a85ca244.jpg);
    padding:30px;
    border-radius:10px;
    width:90%;
    max-width:400px;
    position:relative;
    animation: pop 0.3s ease;
}

@keyframes pop{
    from{
        transform:scale(0.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.form-container h2{
    text-align:center;
    margin-bottom:20px;
}

form{
    display:flex;
    flex-direction:column;
}

form input{
    padding:10px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
}

form button{
    padding:10px;
    background:#a52a2a;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

form button:hover{
    background:black;
}
.close{
    position:absolute;
    top:10px;
    right:15px;
    text-decoration:none;
    font-size:22px;
    color:black;
}
.reviews{
    text-align: center;
}

.reviews h1{
    font-size: 40px;
    margin-bottom: -35px;
    color: #a9afb2;
    font-family:'Times New Roman', Times, serif;
}
.review-container{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    padding-bottom: 10px;
}

.review-container::-webkit-scrollbar {
    height: 6px;
}
.review-container::-webkit-scrollbar-thumb {
    background: gold;
    border-radius: 10px;
}

.card{
    background: #3a0c10;
    padding: 20px;
    width: 200px;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.6s ease forwards;
}
.card:nth-child(1){ 
  animation-delay: 0.2s; 
}
.card:nth-child(2){
   animation-delay: 0.5s; 
  }
.card:nth-child(3){ 
  animation-delay: 0.8s;
 }
.card:nth-child(4){
   animation-delay: 1.1s; 
  }

.card:hover{
    transform: translateY(-20px);
    box-shadow: 0 0 30px rgb(190, 158, 70);
}

.card img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #333;
}

.card h3{
    margin-bottom: 8px;
    color: white;
}

.stars{
    color: gold;
    margin-bottom: 15px;
}

.card p{
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

@keyframes fadeUp{
    from{
        transform: translateY(40px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
@media(max-width: 900px){
    .review-container{
        justify-content: flex-start;
    }
}

.footer-patisserie{
    background: linear-gradient(135deg,white,white);
    color: #3a0c10;
    font-family: 'poppins',sans-serif;
}
.footer-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 70px 90px;
}
.footer-patisserie h3{
    color: #3a0c10;
    margin-bottom: 15px;
}
.logo{
    font-family: 'playfair Display',serif;
    font-size: 30px;
    color: #3a0c10;
    margin-bottom: 15px;
}
.footer-patisserie p,
.footer-patisserie li{
    font-size: 14px;
    line-height: 1.8;
}
.footer-patisserie ul{
    list-style: none;
    padding: 0;
}
.footer-patisserie li:hover{
    cursor: pointer;
    transition: color O.3s;
}
.footer-patisserie li:hover{
    color: #cf1452;
}
.footer-bottom-patisserie{
    background: #7B1D26;
    color: #f7efef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 13px;
}
.social-icons a{
    color: #f7efef;
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s ease; 
}
.social-icons a:hover{
    background: white;
    padding: 5px;
    color: #2e0606;
    border-radius: 5px;
    transform: translatey(-3px);
}
 @media(max-width){.footer-container{
        grid-template-columns: 1fr;
        padding: 50px 25px;
    }
.footer-bottom-patisserie{
    flex-direction: column;
    gap: 10px;
    text-align: center;

}
}


 
  


