/*
--------------------------------------
Footer Template 1 - Figma Design
Layout: Logo + Social | Legal Links | Credit + Slogan
--------------------------------------
*/

/*
--------------------------------------
Hide default copyright section (credit is in template)
--------------------------------------
*/

.main-footer__container.footer-variant-1 .main-footer__copyright {
	display: none;
}

/*
--------------------------------------
Top + Middle Combined
--------------------------------------
*/

.footer-variant-1 .footer-template-1__top-middle {
	display: grid;
	grid-template-columns: 1fr auto;
	text-align: left;
	grid-template-rows: auto auto;
	column-gap: var(--spacing-lg, 24px);
	row-gap: 50px;
}

/*
--------------------------------------
Top Section: Logo + Social Icons
--------------------------------------
*/

.footer-variant-1 .footer-template-1__top {
	display: none;
}

.footer-variant-1 .footer-template-1__logo {
	display: flex;
	align-items: center;
	width: 159px;
	height: 32px;
	aspect-ratio: 159 / 32;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}

.footer-variant-1 .footer-template-1__logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: none;
}

.footer-variant-1 .footer-template-1__logo-svg {
	display: flex;
	align-items: center;
}

.footer-variant-1 .footer-template-1__logo-svg svg {
	width: 100%;
	height: 100%;
}

.footer-variant-1 .footer-template-1__social {
	display: flex;
	align-items: center;
	justify-self: start;
}

.footer-variant-1 .footer-template-1__credit {
	align-self: end;
}

.footer-variant-1 .footer-social .footer-social__icon {
	width: 100%;
	height: 100%;
}

/*
--------------------------------------
Middle Section: Legal Links
--------------------------------------
*/

.footer-variant-1 .footer-template-1__middle {
	display: none;
}

.footer-variant-1 .footer-template-1__legal {
	width: 100%;
	max-width: 300px;
	justify-self: end;
	align-self: end;
}

.footer-variant-1 .footer-legal .footer-legal__link {
	color: var(--color-black, #000000);
	font-family: var(--font-primary, 'Aptos', sans-serif);
	font-size: 19px;
	font-style: normal;
	font-weight: var(--font-weight-light, 300);
	line-height: normal;
}

/*
--------------------------------------
Bottom Section: Slogan
--------------------------------------
*/

.footer-variant-1 .footer-template-1__bottom {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding-top: var(--spacing-2xl, 48px);
	margin-top: var(--spacing-2xl, 48px);
	gap: var(--spacing-lg, 24px);
	border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.footer-variant-1 .footer-template-1__credit {
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	clip-path: inset(0);
}

.footer-variant-1 .footer-template-1__credit-text {
	color: var(--color-black, #000000);
	font-family: var(--font-primary, 'Aptos', sans-serif);
	font-size: 19px;
	font-style: normal;
	font-weight: var(--font-weight-light, 300);
	line-height: normal;
	margin: 0;
}

.footer-variant-1 .footer-template-1__slogan {
	display: flex;
	align-items: flex-end;
	flex: 1;
	width: 100%;
	justify-content: flex-end;
}

.footer-variant-1 .footer-template-1__slogan-text {
	color: var(--color-text);
	font-family: var(--font-primary);
	font-size: 8vw;
	font-style: normal;
	font-weight: var(--font-weight-normal);
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: normal;
	margin: 0;
	white-space: nowrap;
	width: 100%;
	text-align: right;
}

/*
--------------------------------------
SplitText Animation Preparation
--------------------------------------
*/

.footer-variant-1 .footer-template-1__slogan-text {
	/* Prépare le texte pour l'animation SplitText */
	overflow: visible;
	clip-path: none;
}

/* Style pour les lettres individuelles après split */
.footer-variant-1 .footer-template-1__slogan-text .char {
	display: inline-block;
	will-change: opacity, transform, filter;
}

/* Masque SplitText par ligne */
.footer-variant-1 .footer-template-1__slogan-text .split-line {
	display: block;
	overflow: hidden;
}
