html, body {
  overflow-x: hidden;
  
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("../image/gantBoxe.jpg") no-repeat center center / cover;
  filter: blur(5px) brightness(0.5);
  z-index: -1;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #333;
}
.container {
    
    max-width: 1000px;
    margin:10% auto;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

@media (max-width: 1100px) {
    .container{
        margin-top:20vh;
    }
    
    
}


h1 {
    text-align: center;
    color: #c62828;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.infos p {
    font-size: 1.1rem;
    margin: 8px 0;
}

.tarifs {
    margin-top: 40px;
}

.tarifs table {
    width: 100%;
    border-collapse: collapse;
}

.tarifs th, .tarifs td {
    padding: 14px;
    text-align: center;
    border: 1px solid #ddd;
}

.tarifs thead {
    background-color: #c62828;
    color: white;
}

.tarifs tr:nth-child(even) {
    background-color: #f9f9f9;
}

.horaires {
    margin-top: 40px;
}

.horaires ul {
    list-style: none;
    padding: 0;
}

.horaires li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 600px) {
    .tarifs table, .tarifs th, .tarifs td {
        font-size: 0.9rem;
        
    }
}
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* scroll fluide sur iOS */
}

.tarifs table {
    width: 100%;
    min-width: 600px; /* permet le scroll horizontal si besoin */
    border-collapse: collapse;
}
/* Footer */
.baspage {
    background-color: #363734;
    width: 100%;
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
* {
  box-sizing: border-box;
}
