body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
	justify-content: center;
	align-items: center;
}

.header {
    background-color: #3B82F6; /* Bleu claire */
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img {
    width: 70px; /* Taille augmentée */
    height: 70px; /* Taille augmentée */
}

.header .logo {
    flex: 1;
}

.header .logo img {
    max-width: 100%;
    max-height: 100%;
}

.header h1 {
    margin: 0;
    flex: 2;
    text-align: center;
}

.header .panier-link {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.header .panier-link img {
    width: 30px;
    height: 30px;
    margin-right: 5px; /* Espace entre l'image et le texte */
}

.header .panier-counter {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    margin-left: 5px; /* Espace entre le texte et le compteur */
    font-size: 0.8em;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.article-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article {
    background-color: #e4e4e4;
    border: 1px solid #000;
    margin: 10px;
    padding: 10px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .article {
        width: calc(100% - 20px);
    }
}

.article img {
    max-width: 100%;
    height: auto;
    width: 150px; /* Taille fixe */
    height: 150px; /* Taille fixe */
    object-fit: cover; /* Pour s'assurer que l'image s'adapte bien dans la boîte */
}

.article h3 {
    margin: 10px 0;
    color: #000080; /* Bleu marine */
}

.article select {
    margin-bottom: 10px;
}

.article button {
    background-color: #000080; /* Bleu marine */
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.article button:hover {
    background-color: #000;
}

.actions {
    text-align: center;
    margin-top: 20px;
}

.btn-retirer {
    color: red;
    cursor: pointer;
}

.footer {
    background-color: #3B82F6; /* Bleu marine */
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.panier {
    width: 100%;
    border-collapse: collapse; /* Fusionner les bordures de cellule */
}

.panier th, .panier td {
    border: 1px solid #000; /* Bordure de chaque cellule */
    padding: 8px; /* Espacement interne */
    text-align: center; /* Centrer le texte */
}

.panier th {
    background-color: #f2f2f2; /* Couleur de fond pour les en-têtes */
}

.panier td {
    background-color: #fff; /* Couleur de fond pour les cellules de données */
}

.panier tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Couleur de fond pour les lignes impaires */
}

.btn-retirer {
    color: red;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;  /* Aligne verticalement */
    justify-content: center; /* Centre horizontalement */
}

@media screen and (max-width: 600px) {
    /* Assurez-vous que chaque groupe de formulaire prend toute la largeur disponible */
    .form-group {
        width: 80%;
    }

    /* Les labels et les champs de saisie prennent toute la largeur et incluent les marges intérieures */
    .form-group input,
    .form-group label {
        width: 80%;
        box-sizing: border-box;
    }

    /* Ajoutez des marges intérieures aux champs de saisie pour une meilleure interaction tactile */
    .form-group input {
        padding: 10px;
    }
    
    /* Pour une meilleure lisibilité, augmentez la taille de la police des labels */
    .form-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }
}

.form-container {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    margin-top: 30px; /* Un peu d'air en haut si besoin */
	align-items: center;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    width: 100%;
	 align-items: center;
}

.form-group select {
    padding: 8px;
    width: 100%;  /* Prend toute la largeur disponible */
    max-width: 400px;  /* Limite la largeur du select */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;  /* Centre le texte à l'intérieur du select */
}

.form-group input {
    padding: 8px;
    width: 100%;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actions button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.actions button:hover {
    background-color: #0056b3;
}

.spectacle-intro {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.affiche img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.description {
    max-width: 600px;
}

.description h2 {
    font-size: 32px;
    color: #000080;
    margin-bottom: 15px;
}

.description p {
    font-size: 18px;
    line-height: 1.6;
}

.plan-salle {
    text-align: center;
}

.plan-salle h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000080;
}

.plan-salle img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .affiche img {
        width: 80%;
    }

    .description h2 {
        font-size: 26px;
    }

    .description p {
        font-size: 16px;
    }
}


.logo-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    text-align: center;
}

.logo-table td {
    padding: 20px;
}

.logo-table img {
    width: 75px;
    height: 75px;
    object-fit: contain; /* Affiche l’image entière sans la déformer */
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-table img:hover {
    transform: scale(1.1);
}

.sponsor-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 30px;
    color: #000080;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 90%;
}

.logo-table img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Effet au survol */
.logo-table img:hover {
    transform: scale(1.1);
}

/* Responsive pour petits écrans */
@media screen and (max-width: 600px) {
    .sponsor-logos {
        gap: 20px;
    }

    .logo-table img {
        width: 70px;
        height: 70px;
    }

    .sponsor-title {
        font-size: 1.2em;
    }
}

