/*Commun.css*/
:root
	{
	/* COULEURS NNL */
	--bleu: #263E7E;
	--vert: #2AA56E;
	--jaune: #F7B132;
	--rouge: #ED6667;

	--gris: #f5f6fa;
	--gris-fonce: #555;
	--vert-leger: #e6f3d8;
	--bleu-leger: #e9eef4;
	/*--vert-leger-2: #f2fbf9;*/
	--vert-leger-2: #e2f7f2;

	--border: #ddd;
	--radius: 12px;
	--transition: 0.2s ease;
	}

.bleu  { background-color: var(--bleu); }
.jaune { background-color: var(--jaune); }
.vert  { background-color: var(--vert); }
.rouge { background-color: var(--rouge); }

.text-blanc { color: white; }
.text-bleu { color: var(--bleu); }
.text-jaune { color: var(--jaune); }
.text-vert { color: var(--vert); }
.text-rouge { color: var(--rouge); }
.text-gris { color: var(--gris); }
.text-gris-fonce { color: var(--gris-fonce); }

/* RESET */
* 
	{
	box-sizing: border-box;
	}

body
	{
	margin: 0;
    font-family: 'Nunito', Arial, sans-serif;
	}


/* HEADER */
section
	{
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
	}

header
	{
	padding: 10px 0px;
	z-index: 10;
	}

.menu
	{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	}

.menu a
	{
	color: white;
	text-decoration: none;
	}

.menu ul
	{
	display: flex;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	}

.menu-container
	{
	display: flex;
	flex-direction: column; /* ← empile tout en vertical */
	align-items: center;
	padding: 5px 0px;
	gap: 12px; /* espace entre les éléments */
	}

.logo img
	{
    height: auto;
	}

.logo-desktop
	{
    display: none;
	}

.logo-mobile
	{
	width: 20vw;
    max-width: 100px;
	}

.btn-rond
	{
	padding: 10px 12px;
	border-radius: 50px;
	font-size: 13px;         
	cursor: pointer;
	color: white;
	white-space: nowrap;
	min-width: 70px;
	text-align: center;
	display: inline-block;
	}

.btn-espace
	{
	background: var(--rouge);
	color: white;
	padding: 10px 18px;
	border-radius: 50px;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
	font-size: 13px;
	}

.mon-espace
	{
	margin: 10px;
	}

/* FOOTER */
.footer
	{
    background: white;
    color: var(--bleu);
    padding: 40px 20px 20px;
    font-size: 14px;
	}

.footer-content
	{
    display: flex;
    flex-direction: column;
    gap: 25px;
	}

.footer h3
	{
    margin: 0 0 10px;
    font-size: 20px;
	}

.footer-section p
	{
    margin: 0 0 12px;
	}

.footer-contact
	{
    list-style: none;
    padding: 0;
    margin: 0;
	}

.footer-contact li
	{
    margin-bottom: 6px;
    line-height: 1.4;
	}

.footer-logos
	{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
	}

.footer-logo
	{
	min-height: 100px;
    height: 15vw;
    width: auto;

    padding: 8px;
    border-radius: 6px;
	}

.footer-bottom
	{
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
	}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 960px;
    width: calc(100% - 40px);
    background: var(--bleu-leger);
    opacity: 0.95;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    font-family: inherit;
}

#cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--bleu);
    flex: 1 1 60%;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex: 1 1 30%;
    justify-content: flex-end;
}

.cookie-actions button {
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cookie-actions .accept {
    background: var(--vert); /* à adapter à la couleur Nounouland */
    color: white;
}

.cookie-actions .accept:hover {
    background: var(--vert-leger-2);
}

.cookie-actions .refuse {
    background: white;
    color: var(--rouge);
}

.cookie-actions .refuse:hover {
    background: #e0e0e0;
}

/* --------------------- DESKTOP --------------------- */
@media (min-width: 1024px)
	{
	.logo-mobile
		{
        display: none;
    	}

    .logo-desktop
    	{
		display: block;
    	width: 12vw;
    	min-width: 150px;
        max-width: 250px;
    	}

	.logo img
		{
		margin-left: 20px;
		}

	.menu-container
		{
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		}

	.menu 
		{
		flex: 1;
		justify-content: center;
		}

	.mon-espace
		{
		margin-left: auto;
		}

	.btn-espace
		{
		font-size: 16px;
		padding: 12px 22px;
		}

     .footer-content
     	{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    	}

    .footer-logos
    	{
        justify-content: flex-end;
    	}

    .footer-logo
    	{
        height: 100px;
    	}

    .btn-rond
		{
		min-width: 120px;
		font-size: 16px;
		}

	 #cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
	}


