/*
============================================================

Theme Name: Divi-child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Description: Child theme for the Divi theme
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Template: Divi
Version: 1.0.0
	
============================================================
*/

/* ── Maintenance ─────────────────────────── */

/*body.a-propos:not(.logged-in) header,
body.a-propos:not(.logged-in) footer {
    display: none;
} */

/* ── Semeion — Variables globales ─────────────────────────── */
:root {
  --sem-brun   : #702a0c;
  --sem-jaune  : #f3cf6c;
  /* --sem-beige  : #f5f0e8; */
  --sem-beige  : #F3ECD9;
  --sem-noir   : #1a1a1a;
}

/* ── Import des polices ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Évite le bug de débordement horizontal tout en préservant 
 * le sticky du sidebar sur la page Spectacles */
body {
    overflow-x: hidden;
}

/* ── Bouton style Semeion ─────────────────────────────────── */
.sem-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--sem-jaune);
    color: var(--sem-brun);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: .85rem 2rem;
    border-radius: 2px;
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;

}
.sem-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243, 207, 108, .3);
  color: var(--sem-brun);
  text-decoration: none;
}

.sem-btn.bjb {
	border: 1.5px solid var(--sem-brun);
}

/* ── Bouton Lien style Semeion ────────────────────────────── */
.sem-btn-lien {
	font-family:'Poppins',sans-serif;
	font-size:.72rem;
	letter-spacing:.12em;
	text-transform:uppercase;
	color:var(--sem-brun);
	text-decoration:none;
	font-weight:600;
	opacity:.6;
	transition:opacity .2s;
	padding-bottom:.5rem;
}
.sem-btn-lien.hover-souligne {
	position: relative;    /* INDISPENSABLE pour l'absolute du after */
	display: inline-block; /* Pour que l'élément ait une "boîte" propre */
	text-decoration: none; /* On enlève le soulignement natif si c'est un lien */
    padding-bottom: 2px;   /* Optionnel : pour décoller un peu le trait du texte */
}
.sem-btn-lien.hover-souligne:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2.5px;
	background: var(--sem-jaune);
	transition: width .3s;
}
.sem-btn-lien.hover-souligne:hover:after {
	width: 100%;
}

/* ── Tag de section (petit texte majuscule en haut) ─────────── */
.sem-tag p {
	font-size: .65rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--sem-brun);
	opacity: .5;
	margin-bottom: 1.2rem;
	font-weight: 700;
}

/* ── Titres de section ────────────────────────────────────── */
.sem-section-title h2 {
	font-family: 'Playfair Display', Georgia, serif;
	color: var(--sem-brun);
	font-size: 48px;
	font-weight: 700; /* 900 22/04 */
	line-height: 1.15;
	margin-bottom: 0;
}
.sem-section-title h2 .titre-ligne2 {
	font-style: italic;
	color: var(--beige);
	opacity: .6;
}
@media (max-width: 768px) {
	.sem-section-title h2 {
		font-size: 8vw;
	}
}
.sem-section-title h2 {
  /* 24px minimum, 6vw de moyenne, 48px maximum */
  font-size: clamp(24px, 6vw, 48px); /* 900 22/04 */
}

/* ── Titres de bandeau ───────────────────────────── */
.sem-bandeau-title h1 {
	font-family: 'Playfair Display', Georgia, serif;
	color: var(--sem-jaune);
	font-size: 48px;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.sem-bandeau-title h1 {
		font-size: 9vw;
	}
}

/* ── HEADER (MENU) ──────────────────────────────── */

nav a {
	position: relative;    /* INDISPENSABLE pour l'absolute du after */
	display: inline-block; /* Pour que l'élément ait une "boîte" propre */
	text-decoration: none; /* On enlève le soulignement natif si c'est un lien */
    padding-bottom: 2px;   /* Optionnel : pour décoller un peu le trait du texte */
}
nav a:before {
	content: '';
	position: absolute;
	bottom: 25px;
	left: 0;
	width: 0;
	height: 2.5px;
	background: var(--sem-jaune);
	transition: width .3s;
}
nav a:hover:before,
nav li.current-menu-item a:before {
	width: 100%;
}

@media (max-width: 980px) {
	.et_mobile_menu li.current-menu-item a {
		background-color: var(--sem-jaune);
  	}
}

/* ── COOKIE ────────────────────────────────────── */

.cn-button {
	color:#FFFFFF!important;
}

/* ── ACCUEIL ────────────────────────────────────── */

/* ── Hero ───────────────────────────────────────── */
.home .sem-section-title h1 {
	font-size: 54px;
	font-weight: 900;
	line-height: 1em;
}
.home .sem-section-title h2 .titre-ligne2 {
	font-style: italic;
	color: var(--beige);
	opacity: .6;
}
@media (max-width: 768px) {
	.home .sem-section-title h2 {
		font-size: 9vw;
  	}
}
.home .sem-section-title h2 {
  /* 24px minimum, 6vw de moyenne, 48px maximum */
  font-size: clamp(24px, 6vw, 48px); /* 900 22/04 */
}

/* ── Bandeau intermédiaire ───────────────────────────────── */
.bandeau-intermediaire .et_pb_code_inner {
	display:flex;
	align-items:center;
	gap:2rem;
	flex-wrap:wrap;
}
@media (max-width: 768px) {
	.bandeau-intermediaire .et_pb_code_inner {
		align-items:center;
		gap:0.5rem;
		flex-direction: column;
	}
	.bandeau-intermediaire .separateur {
		display:none;
	}
	.bandeau-intermediaire h5 {
		margin: 15px 0;
	}
}

.bandeau-intermediaire h5 {
	font-family:'Poppins',sans-serif;
	font-size:.65rem;
	letter-spacing:.25em;
	text-transform:uppercase;
	color:var(--sem-brun);
	opacity:.6;
	font-weight:600;
	white-space:nowrap;
	padding-bottom: 0;
}
.bandeau-intermediaire .separateur {
	width: 1px;
	height: 30px;
	background: rgba(112,42,12,.2);
	flex-shrink: 0;
}
.bandeau-intermediaire .puce {
    /* Mise en page & Alignement */
    display: flex;
    align-items: center; /* Centre l'icône et le texte verticalement */
    gap: 10px;           /* Espace entre l'image et le texte (remplace le padding) */
    list-style: none;
    line-height: 1.5;
    
    /* Typographie */
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--sem-brun);
    white-space: nowrap;
}

.bandeau-intermediaire .puce::before {
    content: "";
    /* On utilise flex-shrink pour éviter que l'image ne s'écrase */
    flex-shrink: 0; 
    
    width: 15px;
    height: 15px;
    
    background-image: url('/wp-content/uploads/2026/04/oeil-702a0c.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
/* --- AJUSTEMENT ICI --- */
    transform: translateY(2px); /* Pousse l'icône de 2 pixels vers le bas */
    /* Alternative : margin-top: 2px; */
}

/* ── Value card (section Vision) ─────────────────────────── */
.sem-value-cards {
/*	padding: 4rem 3rem; */
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
}
.sem-value-card {
	border-left: 3px solid var(--sem-jaune);
	padding-top: 1.25rem;
	margin-bottom: 1.75rem;
	padding: 1.2rem 1.5rem;
	background: rgba(243,207,108,.05);
}
.sem-value-card h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.15rem;  /* légèrement augmenté vs maquette */
	font-weight: 700;
	color: var(--sem-jaune);
	margin-bottom: .6rem;
}
.sem-value-card p {
	font-family: 'Poppins', sans-serif;
	font-size: .8rem;
	line-height: 1.7;
	color: var(--sem-beige);
	opacity: .7;
}

.sem-a-laffiche {
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	margin-bottom:20px
}











/* Section valeurs — À propos */
.sem-about-values .sem-value-card {
    border-top: 2px solid var(--sem-brun);
    border-left: none;
    padding-top: 1.5rem;
    padding-left: 0;
}
.sem-about-values .sem-value-card h4 {
    color: var(--sem-brun);
}
.sem-about-values .sem-value-card p {
    color: var(--sem-brun);
    opacity: .72;
}