/* =============================================================================
 * STYLES.CSS — AI-Paris.FR
 * Feuille de styles unique du hub principal
 * -----------------------------------------------------------------------------
 * SOMMAIRE
 *
 *   1. VARIABLES & THÈMES        — :root (clair) + html.dark (sombre)
 *   2. RESET & BASE              — html, body, main
 *   3. TYPOGRAPHIE               — h1/h2/h3, liens
 *   4. NAVIGATION                — nav, hamburger mobile, toggle thème
 *   5. FOOTER                    — copyright, liens utilitaires, bouton-lien
 *   6. ACCUEIL                   — logo, hero, grille spotlight, bouton partage
 *   7. PAGE PROJETS              — menu par familles, image-text, dédicace DanLou
 *   8. PAGE VIDÉO                — vignette, citation, sections, crédits
 *   9. PAGE CONTACT              — formulaire, validations, bio
 *  10. PAGES LÉGALES             — mentions-legales, confidentialite
 *  11. BANDEAU COOKIES           — consentement RGPD, boutons
 *  12. UTILITAIRES               — couleurs d'accent du logo
 *
 * Conventions
 *   - Largeur principale du site : 560px (body max-width)
 *   - Police principale : 'Raleway'
 *   - Breakpoint mobile : 560px (les rules @media sont CO-LOCALISÉES avec leur
 *     composant — chercher au sein de la section concernée plutôt qu'à la fin)
 *   - Module de partage social : ses styles vivent dans /share.php (inline,
 *     préfixe aip-) pour être réutilisable depuis les sous-sites sans toucher
 *     à ce fichier
 * ============================================================================= */


/* =============================================================================
 * 1. VARIABLES & THÈMES
 * ============================================================================= */

@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/raleway-v37-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/raleway-v37-latin_latin-ext-600.woff2') format('woff2');
}

/* --- Thème clair (défaut) --- */
:root {
	--bg-body: #f0f0f0;
	--bg-nav: #ffffff;
	--bg-page: #e0e0e0;
	--bg-menu: #ffffff;
	--bg-menu-hover: #f5f5f5;
	--bg-video: #c07ac0;
	--text: #444444;
	--text-h1: #804080;
	--text-h2: #663C66;
	--text-h3: #7a5a7a;
	--text-link: #006a80;
	--text-nav-active: #663C66;
	--text-video: #1a1a1a;
	--border-menu: #e0e0e0;
	--hamburger: #444444;
	--logo-blue: #006a80;
	--logo-purple: #663C66;
	--footer-text: #5e5e5e;
	--footer-link: #1d6c7e;
}

/* --- Thème sombre --- */
html.dark {
	--bg-body: #202020;
	--bg-nav: #161616;
	--bg-page: #1a1a1a;
	--bg-menu: #111111;
	--bg-menu-hover: #1a1a1a;
	--bg-video: #804080;
	--text: #B0B0B0;
	--text-h1: #804080;
	--text-h2: #b878b8;
	--text-h3: #4D374D;
	--text-link: #4ec0d8;
	--text-nav-active: #ad65ad;
	--text-video: #f0f0f0;
	--border-menu: #222222;
	--hamburger: #808080;
	--logo-blue: #4ec0d8;
	--logo-purple: #a355a3;
	--footer-text: #B0B0B0;
	--footer-link: #4ec0d8;
}


/* =============================================================================
 * 2. RESET & BASE
 * ============================================================================= */

html {
	height: 100%;
	background-color: var(--bg-page);
	transition: background-color 0.3s;
}

body {
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	background-color: var(--bg-body);
	color: var(--text);
	max-width: 560px;
	margin: 0 auto;
	padding: 0;
	padding-top: 48px;
	box-sizing: border-box;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
}

main {
	flex: 1;
}

@media (max-width: 560px) {
	body {
		font-size: 20px;
	}
}


/* =============================================================================
 * 3. TYPOGRAPHIE
 * ============================================================================= */

h1 {
	color: var(--text-h1);
	vertical-align: middle;
}

h2 {
	color: var(--text-h2);
}

h3 {
	color: var(--text-h3);
}

a {
	color: var(--text-link);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


/* =============================================================================
 * 4. NAVIGATION
 * ============================================================================= */

nav {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 560px;
	background-color: var(--bg-nav);
	z-index: 1000;
	padding: 12px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s;
}

.nav-links {
	display: flex;
	gap: 32px;
}

nav a {
	color: var(--text);
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: color 0.3s;
}

nav a:hover {
	color: var(--text-link);
	text-decoration: none;
}

nav a.active {
	color: var(--text-nav-active);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--hamburger);
	transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

/* --- Bouton toggle thème (soleil/lune) --- */
.theme-toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 4px;
	color: var(--text);
}

.icon-sun { display: none; }
.icon-moon { display: inline; }

html.dark .icon-sun { display: inline; }
html.dark .icon-moon { display: none; }

/* --- Responsive : nav hamburger sous 560px --- */
@media (max-width: 560px) {
	.nav-toggle {
		display: flex;
		position: absolute;
		left: 16px;
		top: 50%;
		transform: translateY(-50%);
	}

	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--bg-nav);
		padding: 16px 0;
		gap: 0;
		transition: background-color 0.3s;
	}

	.nav-links a {
		display: block;
		padding: 12px 24px;
		text-align: center;
	}

	nav.open .nav-links {
		display: flex;
	}

	nav.open .nav-toggle span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	nav.open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	nav.open .nav-toggle span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}


/* =============================================================================
 * 5. FOOTER
 * ============================================================================= */

.site-footer {
	text-align: center;
	padding: 0.9rem 0.6rem;
	margin-top: 1.6rem;
	background-color: var(--bg-nav);
	font-size: 0.85rem;
	transition: background-color 0.3s;
}

.site-footer p {
	margin: 0;
	color: var(--footer-text);
}

.site-footer .footer-copy {
	margin-bottom: 0.35rem;
}

.site-footer .footer-links {
	font-size: 0.75rem;
	line-height: 1.6;
	text-wrap: balance;
}

.site-footer p a,
.site-footer .footer-link-btn {
	color: var(--footer-link);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

/* --- Bouton stylé comme un lien (Gérer les cookies, Partager) --- */
.site-footer .footer-link-btn {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.site-footer .footer-link-btn:hover {
	text-decoration: underline;
}

.site-footer .footer-link-btn:focus-visible {
	outline: 2px solid var(--logo-blue);
	outline-offset: 2px;
}


/* =============================================================================
 * 6. ACCUEIL
 * ============================================================================= */

/* --- Logo central --- */
.logo {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.logo-image {
	height: 128px;
	width: 128px;
	margin: 0 auto;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* --- Hero (logo + accroche) --- */
.hero {
	text-align: center;
	padding: 2rem 1.5rem 1rem;
	max-width: 720px;
	margin: 0 auto;
}

.accroche {
	font-size: 1.05rem;
	line-height: 1.6;
	margin: 1.5rem auto 0;
	max-width: 60ch;
	text-align: justify;
	text-wrap: pretty;
}

/* --- Projets en lumière (grille 2x2) --- */
.projects-spotlight {
	max-width: 480px;
	margin: 3rem auto 2rem;
	padding: 0 1.5rem;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-card {
	background-color: var(--bg-menu);
	border-radius: 8px;
	transition: background-color 0.3s;
}

.project-card a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 0.75rem;
	text-decoration: none;
	color: inherit;
}

.project-card a:hover span { transform: translateY(4px); transition: transform 0.2s; }

.project-icon {
	width: 64px;
	height: 64px;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.project-label {
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

.projects-more {
	text-align: center;
	margin-top: 1.6rem;
	padding: 1rem 1.5rem;
	background-color: var(--bg-menu);
	border-radius: 8px;
	font-size: 0.95rem;
	transition: background-color 0.3s;
}

/* --- Effet désaturation des icônes --- */
@media (hover: hover) {
	/* Desktop avec souris : couleurs au hover/focus */
	.project-card a:hover .project-icon,
	.project-card a:focus-visible .project-icon {
		filter: grayscale(0%);
	}
}

@media (hover: none) {
	/* Mobile / tactile : icônes en couleur par défaut */
	.project-icon {
		filter: grayscale(0%);
	}
}

/* --- Bouton de partage sous la grille spotlight --- */
.hero-share {
	max-width: 480px;
	margin: 1.6rem auto 2rem;
	padding: 0 1.5rem;
	text-align: center;
}

.hero-share-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-family: 'Raleway', sans-serif;
	font-size: 0.95rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text);
	background-color: var(--bg-menu);
	border: 1px solid var(--border-menu);
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.hero-share-btn:hover {
	background-color: var(--bg-menu-hover);
	border-color: var(--logo-purple);
	color: var(--logo-purple);
}

.hero-share-btn:focus-visible {
	outline: 2px solid var(--logo-purple);
	outline-offset: 2px;
}


/* =============================================================================
 * 7. PAGE PROJETS
 * ============================================================================= */

.projects-page {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.projects-intro {
	text-align: center;
	margin: 2rem auto 3rem;
	max-width: 60ch;
}

.page-title {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.25;
	margin: 0 0 1rem;
	color: var(--text-nav-active);
	text-wrap: balance;
}

.projects-intro .accroche {
	margin: 0;
}

/* --- Familles thématiques (Composer / Dialoguer / Explorer / Cultiver) --- */
.project-family {
	margin: 2.5rem 0;
}

.family-title {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	margin: 0 0 0.25rem;
	color: var(--logo-blue);
	text-align: left;
}

.family-subtitle {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	opacity: 0.85;
	font-style: italic;
	text-align: left;
}

/* --- Menu liste (image + nom + description) --- */
.menu {
	width: 100%;
	background-color: var(--bg-menu);
	margin: 0;
	padding: 0;
	min-height: calc(100vh - 48px);
	display: flex;
	flex-direction: column;
	transition: background-color 0.3s;
}

/* Override .menu : pas de min-height quand groupé par famille ou dédicace DanLou */
.project-family .menu,
.danlou-tribute .menu {
	min-height: 0;
	border-radius: 8px;
	overflow: hidden;
}

.image-text {
	text-align: left;
	border-bottom: 1px solid var(--border-menu);
	transition: background-color 0.3s ease;
}

.image-text:last-child {
	border-bottom: none;
}

.image-text:hover {
	background-color: var(--bg-menu-hover);
}

.image-text a {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	text-decoration: none;
}

.image-text a:hover {
	text-decoration: none;
}

.image-text img {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	margin-top: 2px;
}

.image-text a:hover img {
	transform: scale(1.6);
	transition: transform 0.2s;
}

.image-text span {
	font-size: 18px;
	color: var(--text);
	transition: color 0.3s;
}

.image-text .project-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.image-text .project-name {
	font-size: 18px;
	color: var(--text);
}

.image-text .project-description {
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--footer-text);
	font-style: italic;
	text-align: justify;
	text-wrap: pretty;
}

/* --- Dédicace DanLou (section de clôture de /projets/) --- */
.danlou-tribute {
	margin: 4rem 0 2rem;
	padding: 2rem 0 0;
	border-top: 1px solid var(--bg-nav);
}

.danlou-tribute .family-title {
	color: var(--text-h2);
	margin-bottom: 0.5rem;
}

.danlou-tribute .tribute-text {
	font-size: 1rem;
	line-height: 1.6;
	margin: 0.5rem 0 1.5rem;
	font-style: italic;
	max-width: 60ch;
	text-align: justify;
	text-wrap: pretty;
}

/* --- Responsive : padding réduit sous 560px --- */
@media (max-width: 560px) {
	.image-text a {
		padding: 16px;
	}

	.image-text span {
		font-size: 16px;
	}
}


/* =============================================================================
 * 8. PAGE VIDÉO
 * ============================================================================= */

.video {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
	box-sizing: border-box;
}

.video .page-title {
	margin: 2rem 0 1.5rem;
	text-align: center;
}

.video-intro {
	max-width: 60ch;
	margin: 0 auto 1.5rem;
	line-height: 1.32;
	text-align: justify;
}

/* --- Vignette colorée autour de l'iframe YouTube --- */
.video-vignette {
	background-color: var(--bg-video);
	padding: 1.25rem 1rem 1.5rem;
	border-radius: 8px;
	margin: 0 auto 2rem;
	transition: background-color 0.3s;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 4px;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* --- Citation sous l'iframe --- */
.video-quote {
	margin: 1.25rem 0 0;
	padding: 0;
	text-align: center;
}

.video-quote p {
	color: var(--text-video);
	font-style: italic;
	font-size: 1.0rem;
	line-height: 1.32;
	margin: 0 0 0.5rem;
	transition: color 0.3s;
}

.video-quote cite {
	display: block;
	color: var(--text-video);
	font-style: normal;
	font-size: 0.85rem;
	transition: color 0.3s;
}

/* --- Sections de texte sous la vidéo --- */
.video-section {
	max-width: 60ch;
	margin: 2rem auto;
	text-align: left;
}

.video-section h2 {
	color: var(--logo-blue);
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.35rem;
	margin: 0 0 0.75rem;
	text-align: left;
}

.video-section p {
	font-size: 1.0rem;
	line-height: 1.32;
	margin: 0 0 0.75rem;
	text-align: justify;
}

/* --- Crédits et lien retour --- */
.video-credits {
	max-width: 60ch;
	margin: 3rem auto 1rem;
	font-size: 0.85rem;
	color: var(--footer-text);
	text-align: center;
	line-height: 1.5;
}

.video-back-link {
	text-align: center;
	margin: 1rem auto 2rem;
	font-size: 0.95rem;
}

.video-back-link a {
	color: var(--logo-blue);
	text-decoration: none;
}

.video-back-link a:hover {
	text-decoration: underline;
}

@media (max-width: 560px) {
	.video p {
		margin: 24px 16px;
	}
}


/* =============================================================================
 * 9. PAGE CONTACT
 * ============================================================================= */

.contact {
	width: 100%;
	margin: 0;
	padding: 32px 24px;
	box-sizing: border-box;
}

.contact h2 {
	margin-top: 0;
	margin-bottom: 24px;
}

.contact .page-title {
	margin: 0 0 1.5rem;
}

.contact-intro {
	max-width: 60ch;
	margin: 0 auto 1.5rem;
	line-height: 1.32;
	text-align: justify;
}

.contact-bio {
	max-width: 60ch;
	margin: 0 auto 2rem;
	line-height: 1.6;
	text-align: justify;
	font-size: 0.95rem;
	opacity: 0.85;
	font-style: italic;
}

/* --- Bloc du formulaire --- */
.contact-form-block {
	max-width: 60ch;
	margin: 0 auto;
	padding: 24px;
	background-color: var(--bg-menu);
	border-radius: 8px;
	box-sizing: border-box;
	transition: background-color 0.3s;
}

.form-required-notice {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--footer-text);
	text-align: center;
}

.form-group {
	margin-bottom: 16px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px 12px;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	color: var(--text);
	background-color: var(--bg-body);
	border: 1px solid var(--border-menu);
	border-radius: 4px;
	box-sizing: border-box;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--text-link);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-submit:focus-visible {
	outline: 2px solid var(--logo-blue);
	outline-offset: 2px;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-submit {
	display: inline-block;
	padding: 12px 32px;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	color: var(--bg-menu);
	background-color: var(--text-h2);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: background-color 0.3s;
}

.form-submit:hover {
	background-color: var(--text-h1);
}

/* --- États : succès / erreur --- */
.form-success {
	padding: 16px;
	background-color: #e8f5e8;
	border: 1px solid #a5d6a5;
	border-radius: 4px;
	color: #2e7d32;
	margin-bottom: 16px;
}

html.dark .form-success {
	background-color: #1a3a1a;
	border-color: #2d5a2d;
	color: #6dbe6d;
}

.form-error {
	padding: 16px;
	background-color: #fde8e8;
	border: 1px solid #e57373;
	border-radius: 4px;
	color: #c62828;
	margin-bottom: 16px;
}

html.dark .form-error {
	background-color: #3a1a1a;
	border-color: #5a2d2d;
	color: #be6d6d;
}

.form-privacy {
	max-width: 60ch;
	margin: 1.5rem auto 0;
	font-size: 0.85rem;
	color: var(--footer-text);
	text-align: center;
	line-height: 1.32;
}

/* --- Honeypot anti-bot (champ caché hors écran) --- */
.hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 560px) {
	.contact {
		padding: 24px 16px;
	}
}


/* =============================================================================
 * 10. PAGES LÉGALES (mentions-legales / confidentialite)
 * ============================================================================= */

.legal-page {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.legal-intro {
	text-align: center;
	margin: 2rem auto 2.5rem;
	max-width: 60ch;
}

.legal-intro .accroche {
	margin: 0;
}

.legal-section {
	margin: 2rem auto;
	max-width: 60ch;
	text-align: left;
}

.legal-section h2 {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.35rem;
	margin: 0 0 0.75rem;
	color: var(--logo-blue);
	text-align: left;
}

.legal-section h3 {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.05rem;
	margin: 1.25rem 0 0.5rem;
	color: var(--text-h3);
	text-align: left;
}

.legal-section p {
	font-size: 1rem;
	line-height: 1.55;
	margin: 0 0 0.85rem;
	text-align: justify;
	text-wrap: pretty;
}

.legal-section a {
	color: var(--text-link);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.legal-list {
	margin: 0 0 1rem;
	padding-left: 1.4rem;
	font-size: 1rem;
	line-height: 1.55;
	text-align: left;
}

.legal-list li {
	margin: 0 0 0.4rem;
	text-wrap: pretty;
}

.legal-updated {
	max-width: 60ch;
	margin: 3rem auto 2rem;
	font-size: 0.85rem;
	color: var(--footer-text);
	text-align: center;
	font-style: italic;
}


/* =============================================================================
 * 11. BANDEAU COOKIES (consentement RGPD)
 * ============================================================================= */

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 560px;
	box-sizing: border-box;
	padding: 1rem 1.25rem 1.1rem;
	background-color: var(--bg-nav);
	border-top: 1px solid var(--border-menu);
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
	z-index: 1100;
	transition: background-color 0.3s, border-color 0.3s;
}

html.dark .cookie-banner {
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner-text {
	margin: 0 0 0.85rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--text);
	text-align: justify;
	text-wrap: pretty;
}

.cookie-banner-text a {
	color: var(--text-link);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.cookie-banner-actions {
	display: flex;
	gap: 0.75rem;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.cookie-btn {
	font-family: 'Raleway', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.55rem 1.25rem;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-btn:focus-visible {
	outline: 2px solid var(--logo-blue);
	outline-offset: 2px;
}

.cookie-btn-primary {
	color: var(--bg-menu);
	background-color: var(--text-h2);
	border-color: var(--text-h2);
}

.cookie-btn-primary:hover {
	background-color: var(--text-h1);
	border-color: var(--text-h1);
}

.cookie-btn-secondary {
	color: var(--text);
	background-color: transparent;
	border-color: var(--border-menu);
}

.cookie-btn-secondary:hover {
	background-color: var(--bg-menu-hover);
	border-color: var(--text);
}

@media (max-width: 560px) {
	.cookie-banner {
		padding: 0.85rem 1rem 1rem;
	}

	.cookie-banner-text {
		font-size: 0.85rem;
	}

	.cookie-banner-actions {
		justify-content: stretch;
	}

	.cookie-btn {
		flex: 1 1 0;
		padding: 0.65rem 0.5rem;
	}
}


/* =============================================================================
 * 12. UTILITAIRES
 * ============================================================================= */

.tint-purple {
	color: var(--logo-purple);
}

.tint-blue {
	color: var(--logo-blue);
}
