@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&display=swap');

.slider-title {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.separator {
  width: 120px;
  height: 4px;
  background: #ff3b3b;
  border: none;
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.separator2 {
  width: 2000px;
  height: 4px;
  background: black;
  border: none;
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1400px; /* slider allongé */
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    width: 100%;
    height: 100;
    flex-shrink: 0;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide-title {
    position: absolute;
    bottom: 20px;
    left: 40px;
    padding: 20px 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 24px;
    border-radius: 5px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    padding: 370px 20px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 5px;
    transition: 0.3s;
    z-index: 10;
}

.arrow:hover {
    background: rgba(255,255,255,1);
}

.left { left: 0px; }
.right { right: 0px; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    color: #1a1a1a;
}

header {
    padding: 20px 40px;
    background: linear-gradient(90deg, #ffffff, #e6e9ef);
    border-bottom: 1px solid #d0d4dc;
}

header h1 {
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2c3e50;
}

main {
    padding: 40px;
}



table {
  width: 50%;              
  margin: 40px auto;      
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;     
  overflow: hidden;        
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

th, td {
  padding: 15px 20px;
  text-align: left;
  font-size: 18px;
}

th {
  background: #2c3e50;
  color: white;
  font-weight: bold;
}

tr:nth-child(even) {
  background: #f4f6f9;
}

tr:hover {
  background: #e8ecf2;
}

a {
  color: #ff3b3b;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #EDEDED;
  position: fixed;
  top: 0px;         
  left: 0px;
  width: 100%;      
  height: 50px;     
  display: flex;    
  align-items: center;
}

li {
  margin: 0;
  padding: 0;
}

li a {
  display: block;
  color: black;
  padding: 14px 20px; 
  text-decoration: none;
}

li a.active {
  background-color: #000000;
  color: white;
}

li a:hover:not(.active) {
  background-color: #ff083d;
  color: white;
}

