/**
* Theme Name: Blocksy Child
* Description: Blocksy Child theme
* Author: Creative Themes
* Template: blocksy
* Text Domain: blocksy
*/


/* --- CONFIGURATION GÉNÉRALE FOOTER --- */
#custom-footer {
	background-color: #1C1C1C; /* Noir très profond */
	color: #fff;
	padding: 70px 0 30px 0;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 15px;
	overflow: hidden; /* Important pour la carte qui déborde */
	position: relative;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2; /* Passe au dessus des éléments de fond */
}

/* --- LAYOUT PRINCIPAL --- */
.footer-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
	position: relative;
}

/* Colonnes */
.footer-col {
	position: relative;
	z-index: 5;
}

/* --- COLONNE GAUCHE (Contact) --- */
.col-left {
	flex: 0 0 400px; /* Largeur fixe pour garder la gauche propre */
}

.footer-logo img {
	display: block;
	margin-bottom: 30px;
	width:300px;
}

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

.contact-list li {
	display: flex;
	align-items: center; /* Aligne verticalement l'icone et le texte */
	margin-bottom: 18px;
	color: #cbb086; /* Couleur Or texte */
	font-size: 14px;
	font-family: var(--brz-buttonfontfamily, initial);

}

/* GESTION DU GAP ET DES ICONES CONTACT */
.contact-list li img {
	width: 18px; /* Taille fixe des icones */
	height: auto;
	margin-right: 15px; /* LE GAP DEMANDÉ */
	flex-shrink: 0; /* Empêche l'icone de s'écraser */
}

.contact-list a, .contact-list span {
	color: #cbb086;
	text-decoration: none;
	line-height: 1.4;
}

/* --- RÉSEAUX SOCIAUX (CARRÉS GOLD) --- */
.social-icons {
	display: flex;
	gap: 10px;
}

.social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height:30px;
	background-color: #cbb086; /* FOND GOLD */
	border-radius: 4px; /* Coins légèrement arrondis */
	transition: 0.3s;
}

.social-icons a:hover {
	background-color: #fff; /* Devient blanc au survol */
}

.social-icons img {
	width: 20px;
	height: auto;
	filter: brightness(0) invert(1); /* Force l'icone en blanc pur si elle ne l'est pas */
}
/* Si on survole, on inverse pour voir l'icone sur fond blanc */
.social-icons a:hover img {
	filter: brightness(0); 
}


/* --- COLONNE CENTRALE (CARTE GEANTE) --- */
.col-center {
	flex: 1; /* Prend tout l'espace disponible au milieu */
	display: flex;
	justify-content: center;
	position: relative;
}

/* La carte qui déborde */
.map-image {
	width: 160%; /* Rend l'image 60% plus large que sa colonne */
	max-width: 600px; /* Limite max raisonnable */
	height: auto;
	scale: 1.3;
	transform: translateX(10%);
}


/* --- COLONNE DROITE (Navigation & Langues) --- */
.col-right {
	flex: 0 0 300px;
	padding-left: 20px;
	text-align: left;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	margin-bottom: 25px;
}

.footer-nav a {
	font-size: 28px; /* Titres très grands */
	color: #cbb086;
	text-decoration: none;
	margin-bottom: 8px;
	font-weight: 300;
	line-height: 1.2;
	font-family: var(--brz-heading2fontfamily, initial) !important;
}

.footer-nav a:hover{
	color:#cbb086;
	text-decoration:underline;
}

.lang-desc p {
	font-size: 13px;
	color: #aaa;
	line-height: 1.5;
	margin-bottom: 20px;
	font-family: var(--brz-buttonfontfamily, initial);
}

.flags-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.flags-container img {
	width: 24px;
	height: auto;
	border-radius: 50%;
}

/* --- SÉPARATEUR --- */
.footer-divider {
	border: 0;
	border-top: 1px solid #333;
	margin-bottom: 25px;
	opacity: 0.5;
}

/* --- BAS DE PAGE (Credits) --- */
.footer-bottom {
	display: flex;
	justify-content: space-between; /* Écarte le copyright à gauche et Cactus à droite */
	align-items: center;
	flex-wrap: wrap;
	font-size: 11px;
	color: #white;
}

.footer-bottom a {
	color: #white;
	text-decoration: none;
	margin: 0 2px;
}

.copyright-text {
	max-width: 600px;
	margin:auto;
	text-align:center;
	color:white;
}

.copyright-text a{
	color:white;
}

.agency-credit {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #888;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 980px) {
	.footer-main {
		flex-direction: column;
		text-align: center;
	}

	.col-left, .col-right {
		flex: 1;
		width: 100%;
		padding: 0;
		margin-bottom: 40px;
	}

	/* Centrer les éléments de contact sur mobile */
	.contact-list li {
		text-align:left;
	}

	.social-icons {
		justify-content: flex-start;
	}

	/* Gestion de la carte sur mobile */
	.col-center {
		order: -1; /* Met la carte tout en haut si tu veux, sinon retire cette ligne */
		margin-bottom: 30px;
		width: 100%;
	}

	.map-image {
		width: 80%; /* Taille normale sur mobile */
		transform: none;
		max-width: 300px;
	}

	.footer-nav a {
		font-size: 22px;
	}

	.flags-container {
		justify-content: flex-start;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.copyright-text {
		max-width: 100%;
	}
}

/* --- FORMULAIRE --- */

#gform_1 *{
	font-family: var(--brz-buttonfontfamily, initial);
}

#gform_1 input, #gform_1 textarea{
	border-color:#1C1C1C !important;
	border-radius:10px;
}

#gform_submit_button_1{
	background:#C4AE75;
	color:white;
	margin:auto;
	font-weight: 700;
	line-height: 100%; /* 18px */
	letter-spacing: -0.18px;
}

.ginput_container_radio input{
	accent-color: #232323;	
}

/* --- MENU --- */

.menu-item a{
	font-family: var(--brz-buttonfontfamily, initial);
}

#menu-item-119 a{
	padding:10px 10px;
	background:#FFF;
	height: 35px;
	color: #C4AE75;
	border-radius:8px;
}

#menu-item-326 a, #menu-item-327 a{
	padding:5px;
	background:#FFF;
	height:35px;
	width:35px;
	margin-left:10px;
	border-radius:8px;
}

#menu-item-326 a svg, #menu-item-327 a svg{
	width:15px;
}