/* ============================================================
   ACTIO — pages.css
   Styles communs à toutes les pages secondaires
   (contact, mentions légales, spectacles, etc.)
   ============================================================ */

/* ── Fond général ── */
html, body {
	background-color: #1d242a !important;
}

#page-wrapper {
	background-color: #1d242a !important;
	padding-top: 3em;
	min-height: 100vh;
}

/* ── En-tête de page ── */
.page-header {
	background-color: #111518;
	padding: 7em 2em 5em 2em;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(255,69,0,0.06) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 50%, rgba(255,69,0,0.04) 0%, transparent 60%);
	pointer-events: none;
}

.page-header h1 {
	font-size: 2.5em;
	letter-spacing: 0.3em;
	margin-bottom: 0.5em;
	position: relative;
	z-index: 1;
	color: #ffffff;
}

.page-header h1 span {
	color: #ff4500;
}

.page-header p {
	color: rgba(255,255,255,0.5);
	font-size: 0.85em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 0;
	position: relative;
	z-index: 1;
}

.page-header .divider {
	width: 3em;
	height: 2px;
	background: #ff4500;
	margin: 1.5em auto 0 auto;
	position: relative;
	z-index: 1;
}

/* ── Corps de page ── */
.page-body {
	background-color: #1a2026;
	padding: 5em 2em 6em 2em;
}

.page-container {
	max-width: 860px;
	margin: 0 auto;
}

/* ── Blocs de contenu (mentions légales, sections texte) ── */
.content-block {
	margin-bottom: 3.5em;
	padding-bottom: 3.5em;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.content-block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.content-block h2 {
	font-size: 0.75em;
	letter-spacing: 0.35em;
	color: #ff4500;
	margin-bottom: 1.5em;
	padding-bottom: 0.8em;
	border-bottom: 1px solid rgba(255,69,0,0.3);
}

.content-block p,
.content-block address {
	font-size: 0.85em;
	color: rgba(255,255,255,0.75);
	line-height: 1.9em;
	font-style: normal;
	margin: 0 0 0.8em 0;
}

.content-block p:last-child { margin-bottom: 0; }

.content-block strong { color: #ffffff; font-weight: 600; }

.content-block a {
	color: rgba(255,255,255,0.75);
	border-bottom: 1px dotted rgba(255,255,255,0.3);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.content-block a:hover {
	color: #ff4500;
	border-color: #ff4500;
}

/* ── Lignes info (label + valeur) ── */
.info-row {
	display: flex;
	gap: 1em;
	margin-bottom: 0.5em;
	font-size: 0.85em;
}

.info-row .info-label {
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.8em;
	min-width: 11em;
	padding-top: 0.15em;
}

.info-row .info-value {
	color: rgba(255,255,255,0.8);
	line-height: 1.6em;
}

/* ── Grille 2 colonnes (contact) ── */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 5em;
	align-items: start;
}

/* ── Infos contact ── */
.contact-info h2 {
	font-size: 0.75em;
	letter-spacing: 0.35em;
	color: #ff4500;
	margin-bottom: 2em;
	border-bottom: 1px solid rgba(255,69,0,0.3);
	padding-bottom: 1em;
}

.contact-item { margin-bottom: 2.5em; }

.contact-item .label {
	font-size: 0.65em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	display: block;
	margin-bottom: 0.5em;
}

.contact-item .value {
	font-size: 0.85em;
	color: rgba(255,255,255,0.85);
	letter-spacing: 0.05em;
	line-height: 1.6em;
}

.contact-item .value a {
	color: rgba(255,255,255,0.85);
	border-bottom: 1px dotted rgba(255,255,255,0.3);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-item .value a:hover {
	color: #ff4500;
	border-color: #ff4500;
}

.contact-socials {
	margin-top: 3em;
	padding-top: 2em;
	border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-socials .label {
	font-size: 0.65em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	display: block;
	margin-bottom: 1.2em;
}

.social-links {
	display: flex;
	gap: 1em;
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.4em;
	height: 2.4em;
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 3px;
	color: rgba(255,255,255,0.6);
	font-size: 0.9em;
	transition: all 0.2s ease;
	text-decoration: none;
}

.social-links li a:hover {
	border-color: #ff4500;
	color: #ff4500;
	background-color: rgba(255,69,0,0.08);
}

/* ── Formulaire ── */
.contact-form h2 {
	font-size: 0.75em;
	letter-spacing: 0.35em;
	color: #ff4500;
	margin-bottom: 2em;
	border-bottom: 1px solid rgba(255,69,0,0.3);
	padding-bottom: 1em;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2em;
	margin-bottom: 1.2em;
}

.form-group { margin-bottom: 1.2em; }

.form-group label {
	display: block;
	font-size: 0.62em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	margin-bottom: 0.7em;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background-color: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 3px;
	color: #ffffff;
	font-family: "Open Sans", Helvetica, sans-serif;
	font-size: 0.82em;
	letter-spacing: 0.05em;
	padding: 0.85em 1em;
	outline: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(255,69,0,0.6);
	background-color: rgba(255,69,0,0.04);
}

.form-group textarea {
	min-height: 130px;
	resize: vertical;
	line-height: 1.6em;
}

.form-group select {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 1em) center;
	padding-right: 2.5em;
}

.form-group select option {
	background: #1a2026;
	color: #ffffff;
}

.form-submit {
	margin-top: 2em;
	display: flex;
	justify-content: center;
}

.btn-submit {
	-webkit-appearance: none;
	appearance: none;
	background-color: #ff4500;
	border: none;
	border-radius: 3px;
	color: #ffffff;
	cursor: pointer;
	font-family: "Open Sans", Helvetica, sans-serif;
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.3em;
	padding: 1em 2.5em;
	text-transform: uppercase;
	transition: background-color 0.2s ease, transform 0.15s ease;
	position: relative;
	overflow: hidden;
}

.btn-submit:hover  { background-color: #ff5714; transform: translateY(-1px); }
.btn-submit:active { background-color: #e03e00; transform: translateY(0); }

.btn-submit::after {
	content: "";
	position: absolute;
	top: 0; left: -100%;
	width: 60%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
	transition: left 0.4s ease;
}
.btn-submit:hover::after { left: 150%; }

/* ── Responsive ── */
@media screen and (max-width: 860px) {
	.two-col { grid-template-columns: 1fr; gap: 3em; }
	.contact-info {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1.5em;
		align-items: start;
	}
	.contact-info h2,
	.contact-socials { grid-column: 1 / -1; }
}

@media screen and (max-width: 600px) {
	.page-header h1 { font-size: 1.6em; }
	.page-body { padding: 3em 1.5em 4em 1.5em; }
	.contact-info { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.info-row { flex-direction: column; gap: 0.2em; }
	.info-row .info-label { min-width: unset; }
}