@charset "UTF-8";
/**
 * Theme 2026 - Components CSS
 * Composants réutilisables du site
 *
 * @version 1.0.0
 * @date 2026-02
 */

/* ==========================================================================
   SOUND TOOLTIP
   ========================================================================== */

.sound-btn-wrapper {
	position: relative;
	display: block;
	float: left;
	height: 50px;
}

.sound-btn-wrapper button {
	float: left;
}

.sound-tooltip {
	position: absolute;
	bottom: 100%;
	right: 0px;
	margin-bottom: 25px;
	background: #a86f37;
	color: white;
	padding: 18px 24px 22px 24px;
	border-radius: 8px;
	font-size: 22px;
	font-weight: 400;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	z-index: 1000;
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	gap: 12px;
}

.sound-tooltip.active {
	opacity: 1;
	visibility: visible;
}

.sound-tooltip-icon {
	font-size: 32px;
	opacity: 0.9;
}

.sound-tooltip-arrow {
	position: absolute;
	bottom: -12px;
	right: 10px;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #a86f37;
}

@media (max-width: 768px) {
	.sound-tooltip {
		display: none;
	}
}

/* ==========================================================================
   EMBED CONTAINER (VIDEO)
   ========================================================================== */

.embed-container {
	--video--width: 1296;
	--video--height: 400;
	position: relative;
	padding-bottom: calc(var(--video--height) / var(--video--width) * 100%);
	overflow: hidden;
	max-width: 100%;
	background: black;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: -25%;
	left: -25%;
	width: 150%;
	height: 150%;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btnintro {
	padding: 20px;
	font-size: 14px;
	color: white;
	text-decoration: none;
	background: rgba(0,0,0,0.70);
	border: 1px solid #8E8E8E;
}

.btnintro:hover,
.btnintro:active {
	color: black;
	background: rgba(255,255,255,0.70);
}
