
* {
margin: 0;
padding: 0;
}

/* General */

body {
font-family: Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
font-size: 12px;
padding: 2rem;
background:url("images/bg.jpg") repeat scroll 0 0 transparent;
}

header {
    background-color: rgb(255 0 0);
    color: rgb(255 255 255);
	text-align: center;
	padding: 1.5rem;
}

h1 {
	text-align: center;
	font-size: 1.875rem;
    line-height: 2.25rem;
}

/* Structure */

#content {
	max-width: 1000px;
	margin: 10px auto 0 auto;
	padding: 10px 10px;
	text-align: center;
}

div#logo {
	margin-bottom:30px;
	text-align: center;
}

div#logo  img{
	vertical-align:middle;
}

div#items table {
	margin: 0 auto;
	width: auto;
}

#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

#lightbox-image {
    max-width: 100%;
    max-height: 70vh; /* Limite la hauteur pour qu'elle ne prenne pas toute la page */
    display: block; /* Supprime l'espace sous l'image */
    margin: 0 auto 10px auto;
}

#lightbox-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

#lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}
 
a {
  outline: none;
  text-decoration: none;
  padding: 2px 1px 0;
  color: #000000;
}
 
div#footer {
	height:30px;
	padding:5px;
	margin-top:20px;
	text-align: center;
}

  /* Styles personnalisés pour la transition */
        .section-content {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .section-content.active {
            display: block;
            opacity: 1;
        }

        /* Styles pour les boxes de contenu */
        .box {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
			//justify-content: space-between;
            justify-content: center;
            //gap: 1rem;
        }

        .column {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.1rem;
            background-color: #f3f4f6;
            border-radius: 0.5rem;
			flex: 0 0 200px;
        }
