@charset "utf-8";
 body {
	  width:100%;
      margin: 0;
      background-color: #b0b0b0; /* fond général gris moyen */
      font-family: Arial, sans-serif;
      height: 100vh;
      display: flex;
      flex-direction: column;
    }
	
	.top-bar, .container {
		width: 80%;
		margin: 0 auto; /* centre horizontalement */
		box-sizing: border-box;
		padding: 0 20px;
	}
	
    .top-bar {
      background-color: #b0b0b0; /* gris moyen */
      height: 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;

    }

    .slogan {
      color: #FF4500;
      font-size: 2.5em;
      font-weight: bold;
    }

    .date {
      color: #2e2e2e; /* gris anthracite */
      font-size: 1.2em;
	  font-weight: bold;
    }

	.cont_header {
		display: flex;
		width: 100%;
		margin-top: 20px;
		margin-left:30px;
		align-items: stretch; /* force les enfants à avoir la même hauteur */
	}

	/* Colonne gauche (60%) */
	.left_cont {
		width: 60%;
		background-color: #b0b0b0;
		display: flex;            /* permet à l’image de s’étendre */
	}

	/* Lien dans la colonne gauche */
	.left_cont a {
		display: flex;
		width: 100%;
		height: 100%;
	}

	/* Image dans la colonne gauche */
	.left_cont img {
		width: 100%;
		height: 100%;
		object-fit: cover;        /* l’image remplit sans déformation */
		display: block;
	}

	/* Colonne droite (40%) */
	.right_cont {
		width: 40%;
		background-color: #b0b0b0;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px;
	}

	/* Cadre avec ombre dans la partie droite */
	.shadow-box_cont {
		padding: 10px 10px 70px 10px; /* haut, droite, bas, gauche */
		border: 4px solid #FF4500; /* Bordure grise anthracite (modifiable) */
		border-radius: 8px; /* Coins arrondis, optionnels */
		box-shadow: 0 12px 12px rgba(0, 0, 0, 0.4); /* Ombre portée */
		margin: 20px; /* Espacement intérieur */
		text-align: center;
		color : #FF4500;
		font-weight: bold;
		font-size: 1.1em;
	}
	
	.shadow-box_cont a:hover {
		color: #FFFF00; /* couleur au survol (un orange plus vif, par exemple) */
		text-decoration: underline; /* optionnel : soulignement au survol */
	}
	
    @media (max-width: 600px) {
		.cont_header {
			flex-direction: column;
			 margin-left: 0;
		}

		.top-bar {
			flex-direction: column;
			align-items: flex-start;
			height: auto;
			padding: 80px;
		}

		.slogan, .date {
			font-size: 1.2em;
		}

		.date {
			align-self: flex-end;
		}
		
		.date-menu-container {
			display: flex;
			flex-direction: column;
			align-items: center;
		}
		
		
		.left_cont, .right_cont {
			width: 100%;
		}
		
		.left_cont img {
			height: auto; /* pour éviter les débordements */
		}
		
		.right_cont {
			padding: 10px 0;
		}
    }
