/*
Theme Name:   GeneratePress Child
Description:   Child theme basé sur le thème parent
Author:        Informatic Etic
Author URI:    https://informaticetic.com
Template:      generatepress
Version:       1.0.0
License:       GNU General Public License v2 or later
License URI:   http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:   child_generatepress
*/

/* Benniere header */

.ie-banniere { max-height: 520px; }
	width: 100%;
	aspect-ratio: 1200 / 430;          /* mêmes proportions que l'image */
	background-image: url('/wp-content/uploads/2026/06/banniere@2x.webp');
	background-size: cover;            /* plus de découpe : le ratio colle */
	background-position: center;
	display: flex;
	align-items: center;
}

.ie-banniere__contenu {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
}

.ie-banniere__surtitre {
	color: #C9A24B;
	letter-spacing: 3px;
	font-size: 14px;
}

.ie-banniere__titre {
	color: #fff;
	font-family: Georgia, serif;
	font-size: 50px;
	margin: 12px 0 16px;
	line-height: 1.1;
}

.ie-banniere__titre span {
	color: #E0C173;
}

.ie-banniere__texte {
	color: #C3CEDC;
	font-size: 18px;
	max-width: 520px;
	margin-bottom: 28px;
}

.ie-banniere__bouton {
	display: inline-block;
	background: #C9A24B;
	color: #0F2540;
	font-weight: bold;
	padding: 15px 28px;
	border-radius: 5px;
	text-decoration: none;
}

.ie-banniere__bouton:hover {
	background: #E0C173;
}

/* Responsive mobile */
@media (max-width: 768px) {
	.ie-banniere__titre { font-size: 32px; }
	.ie-banniere__contenu { padding: 0 20px; }
}