.card {
    min-height: 380px;   
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
.d-flex.flex-nowrap.overflow-auto {
  scrollbar-width: none;        
  -ms-overflow-style: none;      
}
.d-flex.flex-nowrap.overflow-auto::-webkit-scrollbar {
  display: none;                 
}
  .card-img-top {
    height: 250px;
    object-fit: cover;
  }
  
  .cinema-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  
  .note {
    color: #ffc107; 
    font-size: 1.1em;
    font-weight: bold;
  }
  
  .ville {
    color: #555;
    font-size: 1em;
  }
  
  .btn-reserver {
    float: right;
    padding: 10px 32px;
    font-size: 1.1em;
    border-radius: 8px;
    margin-top: 0px;
    
  }
  header {
    background-color: #e24a54;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo img {
    height: 80px;
  }
  .nav-container {
    display: flex;
    gap: 40px; 
    align-items: center;
  }
  
  .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    cursor: pointer;
  }
  
  .nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .nav-item span {
    font-size: 16px;
    white-space: nowrap;
    color: white;
  }
   .avis {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    max-width: 1200px;
  }
  
  .avis h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
  }
  
  .avis-liste {
    display: flex;
    flex-direction: row;
    gap: 32px;
    overflow-x: auto;        
    scrollbar-width: none;  
    flex-wrap: nowrap;  
    padding-left: 32px; 
    padding-right: 32px;
  }
  
  .avis-carte {
    border: 2px solid #e24a54;
    border-radius: 10px;
    padding: 32px 24px;
    background: #fff;
    width: 320px;
    min-height: 260px;
    min-width: 340px;
    max-width: 340px;
    flex: 0 0 340px;
  }
  .avis-info p {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 500;
    min-height: 70px;
    text-align: center;
    
  }
  .avis-etoils {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-align: center;
    display: block;
  }
  .avis-nom {
    font-weight: bold;
    font-size: 1.1rem;
    color: #222;
    display: block;
    margin-top: 8px;

  }
  .guillemet {
    font-size: 4rem;
    color: #e24a54;
    margin-bottom: 2px;
    font-family: serif;
  }
    @media (max-width: 768px) {
    .avis-liste {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .avis-carte {
        min-width: 100%;
        width: 100%;
    }
}
  .footer {
  background-color: #e24a54;  
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  border-radius: 20px;
  max-width: 1200px;

}

.footer-contenue {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}

.footer-logo img {
  width: 150px;
  height: auto;
}


.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}


.footer-selectors {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.language-selector, .currency-selector {
  width: 100%;
}

.language-selector select, .currency-selector select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.language-selector select option, .currency-selector select option {
  background-color: #e1b5b5;
  color: white;
}

.moyens-paiments {
  margin-top: 40px;
  text-align: center;
}
.moyens-paiments h3{
  margin-bottom: 20px;
  font-size: 18px;

}
.paiments-icons img {
  height: 30px;
  width: auto;
  transition: opacity 0.3s;
}
.social-media {
  margin-top: 30px;
  text-align: center;
}

.social-media h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px; 
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 20%;
}

.social-icons a:hover {
  transform: translateY(-3px);
}
.copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
}
