html {
  scroll-behavior: smooth; 
  height: 1500px;  /* Hauteur de la page */
}

/* Balises de titre */
h1 
{
	text-decoration:HighlightText;
	font-size:30px;
	cursor: pointer;
}

h4
{
	font-size:16px;
	transition: transform 0.5s ease;
	cursor: pointer;
	font-family:Lucida Console;
}
/* Mouvements de titres */
h4:hover
{
	transform: scale(1.11);
	color: #f52776;
}

/* Couleurs */

.white
{
	color:white;
}
.red
{
	color:red;
}

/* Fleche pour remonter en haut */
.scroll-to-top{
	right:4%;
	cursor: pointer;
	opacity: 0.3;
	z-index: 99;
	position:absolute;
	top: 480%;
}
#haut_page
{
	background-color:#1d1d21;
	height:10%;
	width:90%;
	padding:1.5% 5% 2% 5%;
	

}
/* Entête du site */
.header
{
	position: fixed; /* Fixe l'en-tête en haut de la page */
    top: 0;
    left: 0;
    width: 100%; 
    height: 80px;
    background-color:#1d1d21; 
    color: white; 
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 0 20px; 
    z-index: 10; 
}
#bas_page 
{
  background-color: #1d1d21;
  padding: 2% 5%;
  width: 90%;
  color: white;
}


main {
  flex: 1; /* pousse le footer vers le bas */
}
/* colone centre */
#colonne_cons
{
  background-color: #08080D;
  color: white;
  width: 55%;
  margin: 200px auto; /* ajoute de l’espace sous le header fixe */
  padding: 30px 40px;
  border-radius: 20px;
}
#lien_cons
{
	color:#BDF0D9;
	
}
#colonne_photos
{
	background-color: #08080D;
    color: white;
    width: 55%;
    margin: 200px auto;
    padding: 30px 40px;
    border-radius: 20px;
	position: relative;
}
/*Descriptions de photos*/
.desc_photo {
  width: 40%;
  display: inline-block;
  vertical-align: top;
  margin-right: 4%;
}
#colonne_tab
{
  background-color: #08080D;
  color: white;
  width: 90%;
  margin: 110px auto;
  padding: 30px 40px;
  border-radius: 20px;
  position: relative;
}
/*Zoom sur les photos*/
.photo_grp img {
  width: 55%;
  max-width: 100%;
  border-radius: 8px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s;
  cursor: pointer; /* indique que l'image est cliquable */
  display: block;
  cursor: zoom-in; /*Loupe*/
}

.photo_grp.zoomed img {
  transform: scale(1.2); /* facteur de zoom, ajuste si tu veux */
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  z-index: 10; /* pour que le zoom soit au-dessus */
  cursor: zoom-out; /*Loupe*/
}

/* Tableau */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 12px;              /* coins arrondis */
  overflow: hidden;                 /* masque les coins internes */
  font-family: 'Lucida Console', monospace;
  color: white;                     /* texte blanc */
  background-color: #1b1b1f;        /* fond général du tableau */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

caption {
  caption-side: top;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #e4e4ed;
  text-transform: uppercase;
  letter-spacing: 1px;
}

thead {
  background-color: #25252b;       /* bandeau supérieur */
}

thead th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 2px solid #333;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

tbody tr {
  transition: background-color 0.3s ease;
}

tbody tr:nth-of-type(odd) {
  background-color: #202028;       /* lignes impaires */
}

tbody tr:nth-of-type(even) {
  background-color: #2a2a32;       /* lignes paires */
}

tbody tr:hover {
  background-color: #3b3b44;       /* survol */
}

th,
td {
  padding: 10px 15px;
  border: 1px solid #333;
  vertical-align: middle;
}

tfoot {
  background-color: #25252b;
  font-weight: bold;
}

tfoot th {
  text-align: right;
}

tfoot td {
  text-align: center;
  color: #e4e4ed;
}

/* fond */
body
{
	background-color:#0f0f12;
	font-family: "Lucida Console", monospace;
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}




#cherryBlossomCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;  /* Ne bloque pas les interactions avec la page */
}