/* Kaptain Loyalty - Application Alpine.js */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--color-primary: #426636;
	--color-secondary: #84CC6C;
}

/* Reset et base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
	color: #FFFFFF;
	overflow: hidden;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Transitions Alpine.js */
[x-cloak] {
	display: none !important;
}

/* Layout principal pour tablettes */
.app {
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
}

.page {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Loading overlay */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top: 4px solid #FFFFFF;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Logo général */
.logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

/* === PAGE D'ACCUEIL === */
.home-page {
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
}

.home-container {
	width: 100%;
	height: 100%;
	padding: 32px 0px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

.top-container {
	padding: 0 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 700px;
}

.home-container .main-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.main-title {
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	font-style: regular;
	color: #FFFFFF;
}

.subtitle {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: black;
}

.start-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #0E1622;
	color: #FFFFFF;
	border: none;
	border-radius: 99px;
	padding: 8px 16px;
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	width: fit-content;
	margin-top: 32px;
}

.start-button:hover {
	background: #1a2332;
	transform: translateY(-2px);
}

.arrow {
	font-size: 32px;
}

/* Carousel */
.carousel-section {
	overflow: hidden;
}

.carousel-container {
	width: 100%;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	gap: 16px;
	animation: scroll-infinite 15s linear infinite;
	will-change: transform;
}

/* Animation de défilement continu */
@keyframes scroll-infinite {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}



.carousel-item {
	flex-shrink: 0;
	{{/* width: 215px; */}}
	{{/* height: 280px; */}}
}

.carousel-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* === PAGE TÉLÉPHONE === */
.phone-page {
	background: #F1F7FF;
}

.phone-container {
	width: 100%;
	height: 100%;
	display: flex;
}

/* Section gauche turquoise */
.left-section {
	height: 100%;
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	padding: 5vh 4vw;
}

/* Bouton retour */
.phone-back-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: none;
	color: rgba(252, 254, 255, 0.7);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	cursor: pointer;
	transition: color 0.2s ease;
	padding: 2vh 0;
}

.phone-back-button:hover {
	color: rgba(252, 254, 255, 1);
}

.phone-back-button svg {
	width: 0.375rem;
	height: 0.75rem;
}

.left-sub-section {
	display: flex;
	flex-direction: column;
	gap: 25%;
	flex: 1;
	padding: 1vh 1vw;
}

/* Logo dans la page téléphone */
.phone-logo {
	width: 8vw;
	height: 8vh;
}

.phone-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Contenu principal gauche */
.phone-main-content {
	display: flex;
	flex-direction: column;
}

.phone-main-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 3.33vw, 2rem);
	color: #FFFFFF;
	margin-bottom: 0.83vh;
}

.phone-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.875rem, 1.5vw, 1.125rem);
	line-height: 1.16;
	color: rgba(252, 254, 255, 0.73);
}

/* Indicateur de progression */
.progress-circle-t {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	background-color: transparent;
	border: 8px solid rgba(0, 0, 0, 0.21);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	rotate: 45deg;
}

.step-1 {
	border-top-color: white;
	border-right-color: white;
}

.step-2 {
	border-color: white;
}

.text {
	font-family: 'Montserrat', sans-serif;
	rotate: -45deg;
	color: white;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 2px;
}

.text .large {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
}

.text .small {
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1;
}

/* Section droite - Clavier */
.right-section {
	flex: 1;
	background: #F1F7FF;
	color: #0E1622;
	display: flex;
	flex-direction: column;
	padding: 5vh 4vw;
}

/* Zone d'affichage du numéro */
.phone-display-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8vh 4vh 2vh;
}

/* Affichage du numéro */
.phone-display {
	flex: 1;
	height: 3.5rem;
}

.phone-input {
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 32px;
	color: #0E1622;
	text-align: center;
	outline: none;
}

.phone-input::placeholder {
	color: rgba(14, 22, 34, 0.5);
}

/* Message d'erreur pour le téléphone */
.error-message {
	color: #FF6B6B;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin: 0 4vh 2vh;
	min-height: 20px;
	background: rgba(255, 107, 107, 0.1);
	border-radius: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 107, 107, 0.3);
}

/* Bouton supprimer */
.delete-button {
	/* width: 3rem; */
	/* height: 2rem; */
	background: transparent;
	border: none;
	cursor: pointer;
	opacity: 0.8;
	transition: opacity 0.2s ease;
	flex-shrink: 0;
	/* margin-left: 1rem; */
}

.delete-button:hover {
	opacity: 1;
}

.delete-button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Container du clavier */
.keypad-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Grille du clavier */
.keypad {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap: 2.5rem 3rem;
	min-width: 20rem;
	position: relative;
}

.test {
	position: relative;
}

.key-button {
	background: transparent;
	border: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(3rem, 6vw, 6rem);
	color: #637187;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4rem;
	border-radius: 50%;
}

.key-button:hover:not(.empty):not(:disabled) {
	color: var(--color-primary);
	transform: scale(1.1);
	background: rgba(0, 172, 175, 0.1);
}

.key-button.empty {
	visibility: hidden;
	cursor: default;
}

/* Bouton de validation */
.validate-button {
	background: #068F34;
	color: #FFFFFF;
	border: none;
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 1.1rem;
	position: absolute;
	bottom: 5%;
	right: -25%;
}

.validate-button:hover {
	background: #057a2c;
	transform: translateY(-2px);
}

.validate-button svg {
	width: 1rem;
	height: 1rem;
}

/* === MODAL === */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.modal {
	background: #FFFFFF;
	color: #0E1622;
	border-radius: 16px;
	padding: 32px;
	max-width: 400px;
	width: 90%;
	text-align: center;
}

.modal h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
}

.modal p {
	font-size: 16px;
	margin-bottom: 12px;
}

.phone-confirm {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary);
	text-align: center;
	margin: 15px 0;
	padding: 10px;
	background: #f0fdfd;
	border-radius: 8px;
	border: 1px solid #b3f0f0;
}

/* Message d'erreur dans la modal */
.modal .error-message {
	color: #FF6B6B;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	margin: 12px 0;
	padding: 8px 12px;
	background: rgba(255, 107, 107, 0.1);
	border-radius: 8px;
	border: 1px solid rgba(255, 107, 107, 0.3);
}

.modal-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: 20px;
}

.button-secondary,
.button-primary {
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	flex: 1;
}

.button-secondary {
	background: #E5E7EB;
	color: #0E1622;
}

.button-secondary:hover:not(:disabled) {
	background: var(--color-primary);
	color: #FFFFFF;
}

.button-secondary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.button-primary {
	background: var(--color-primary);
	color: #FFFFFF;
}

.button-primary:hover:not(:disabled) {
	background: var(--color-secondary);
}

.button-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* === STYLES POUR LA VÉRIFICATION SMS === */

.verification-display {
	margin: 20px 0;
	display: flex;
	justify-content: center;
}

.code-input-container {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.code-digit {
	width: 45px;
	height: 55px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 600;
	background: white;
	transition: all 0.2s ease;
}

.code-digit.filled {
	border-color: var(--color-primary);
	background: #f0fdfd;
	color: var(--color-primary);
}

.code-digit.error {
	border-color: #ff6b6b;
	background: #fff5f5;
	color: #ff6b6b;
	animation: shake 0.5s ease-in-out;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	25% {
		transform: translateX(-5px);
	}

	75% {
		transform: translateX(5px);
	}
}

.verification-keypad {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 200px;
	margin: 20px auto;
}

.verify-key {
	width: 60px;
	height: 60px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.verify-key:hover:not(:disabled) {
	background: var(--color-primary)
	;
	color: white;
	border-color: var(--color-primary)
	;
}

.verify-key:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.verify-key.delete-key {
	background: #ff6b6b;
	color: white;
	border-color: #ff6b6b;
}

.verify-key.delete-key:hover:not(:disabled) {
	background: #e55a5a;
}

.error-message {
	color: #ff6b6b;
	font-size: 14px;
	text-align: center;
	margin: 10px 0;
	padding: 8px 12px;
	background: #fff5f5;
	border-radius: 6px;
	border: 1px solid #ffebee;
}

/* === FORM PAGE - Même structure exacte que la page phone === */
/* Bouton retour (EXACTEMENT comme phone-back-button) */
.form-back-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: none;
	color: rgba(252, 254, 255, 0.7);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	cursor: pointer;
	transition: color 0.2s ease;
	padding: 2vh 0;
}

.form-back-button:hover {
	color: rgba(252, 254, 255, 1);
}

.form-back-button svg {
	width: 0.375rem;
	height: 0.75rem;
}

.form-page {
	background: #F1F7FF;
}

.form-page-container {
	width: 100%;
	height: 100%;
	display: flex;
}

/* Section gauche - Turquoise (EXACTEMENT comme left-section) */
.form-left-panel {
	height: 100%;
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
	padding: 5vh 4vw;
}

.form-left-sub-section {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	gap: 25%;
	flex: 1;
	padding: 1vh 1vw;
}

/* Logo dans la page form (EXACTEMENT comme phone-logo) */
.form-logo {
	width: 10vw;
	height: 10vh;
}

.form-logo .logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Contenu principal gauche (EXACTEMENT comme phone-main-content) */
.form-main-content {
	display: flex;
	flex-direction: column;
}

.form-main-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 3.33vw, 2rem);
	color: #FFFFFF;
	margin-bottom: 0.83vh;
}

.form-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.875rem, 1.5vw, 1.125rem);
	line-height: 1.16;
	color: rgba(252, 254, 255, 0.73);
}


/* Section droite - Formulaire (EXACTEMENT comme right-section) */
.form-right-panel {
	flex: 1;
	background: #F1F7FF;
	color: #0E1622;
	display: flex;
	flex-direction: column;
	padding: 5vh 4vw;
}

.form-fields {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vh, 2.5rem);
	flex: 1;
	justify-content: center;
	min-width: 0;
	/* Force le formulaire à respecter les contraintes flex */
	width: 100%;
}

.field-group {
	display: flex;
	flex-direction: column;
	gap: clamp(0.5rem, 1vh, 0.75rem);
}

.field-label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: #334155;
	margin: 0;
}

.field-input {
	height: clamp(3rem, 6vh, 4rem);
	background: #FFFFFF;
	border: 2px solid #E5E7EB;
	border-radius: 8px;
	padding: 0 clamp(0.75rem, 2vw, 1rem);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: #334155;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
}

.field-input.error {
	border-color: #EF4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-input::placeholder {
	color: #CDCDCD;
}

.field-input:focus {
	outline: none;
	border-color: var(--color-primary)
	;
	box-shadow: 0 0 0 3px rgba(0, 172, 175, 0.1);
}

.date-group {
	display: flex;
	gap: clamp(0.75rem, 2vw, 1rem);
	min-width: 0;
	width: 100%;
	overflow: hidden;
}

.date-field {
	flex: 1;
	text-align: center;
	min-width: 0;
	max-width: calc(33.333% - clamp(0.5rem, 1.33vw, 0.67rem));
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
	cursor: pointer;
}

.date-field:focus {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ACAF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.date-field option {
	padding: 8px 12px;
	color: #374151;
}

.date-field option:first-child {
	color: #9CA3AF;
	font-style: italic;
}

.field-hint {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: clamp(0.75rem, 1.5vw, 1rem);
	color: var(--color-primary)
	;
	margin: clamp(0.25rem, 0.5vh, 0.5rem) 0 0 0;
	font-style: italic;
}

.field-error {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(0.75rem, 1.5vw, 1rem);
	color: #EF4444;
	margin: clamp(0.25rem, 0.5vh, 0.5rem) 0 0 0;
}

.toggle-group {
	margin: clamp(1rem, 2vh, 1.5rem) 0;
	margin-top: auto;
}

.toggle-container {
	background: #FFFFFF;
	border: 2px solid #E5E7EB;
	border-radius: 8px;
	padding: clamp(1rem, 2vh, 1.5rem);
	display: flex;
	align-items: center;
	gap: clamp(0.75rem, 2vw, 1rem);
}

.toggle-label {
	flex: 1;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	color: #374151;
	line-height: 1.4;
}

.toggle-switch {
	width: clamp(2.5rem, 4vw, 3rem);
	height: clamp(1.25rem, 2vh, 1.5rem);
	background: #D1D5DB;
	border-radius: 12px;
	position: relative;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	padding: 2px;
	flex-shrink: 0;
}

.toggle-switch.active {
	background: #068F34;
	justify-content: flex-end;
}

.toggle-switch:not(.active) {
	justify-content: flex-start;
}

.toggle-button {
	width: clamp(1rem, 1.5vh, 1.25rem);
	height: clamp(1rem, 1.5vh, 1.25rem);
	background: #FFFFFF;
	border-radius: 50%;
	box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.06), 0px 1px 3px 0px rgba(10, 13, 18, 0.1);
	transition: transform 0.3s ease;
}

.submit-button {
	width: 100%;
	background: #D1D5DB;
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	padding: clamp(1rem, 2vh, 1.25rem) clamp(1.5rem, 3vw, 2rem);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: clamp(1rem, 2vw, 1.125rem);
	cursor: pointer;
	transition: all 0.2s ease;
}

.submit-button:not(.disabled) {
	background: var(--color-primary)
	;
}

.submit-button:not(.disabled):hover {
	background: var(--color-secondary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 172, 175, 0.3);
}

.submit-button.disabled {
	cursor: not-allowed;
}

/* === PAGE SUCCÈS - Design Figma === */
.success-page {
	background: linear-gradient(180deg, var(--color-primary) -11.92%, var(--color-secondary) 100%);
	color: #FFFFFF;
}

.success-container {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

/* Logo en haut à gauche */
.success-logo {
	position: absolute;
	top: clamp(3rem, 5.67vh, 4.25rem);
	left: clamp(3rem, 4.58vw, 5.5rem);
	z-index: 10;
}

.success-logo .logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

/* Contenu principal centré */
.success-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 clamp(2rem, 5vw, 4rem);
	gap: clamp(1rem, 2vh, 1.5rem);
}

/* Grande emoji */
.success-emoji {
	font-size: 100px;
}

/* Titre principal */
.success-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 40px;
	color: #FFFFFF;
	text-align: center;
	margin: 0;
	max-width: clamp(600px, 53.8vw, 1033px);
}

/* Sous-titre */
.success-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 24px;
	color: rgba(252, 254, 255, 0.73);
	text-align: center;
}

/* Bouton retour à l'accueil */
.home-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 16px 32px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 40px;
	backdrop-filter: blur(10px);
}

.home-button:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.home-button:active {
	transform: translateY(0);
}

.home-button svg {
	color: white;
}

/* === RESPONSIVE === */

@media (min-width: 768px) {
	.top-container {
		padding: 0 48px;

	}
}


/* Transitions par défaut Alpine.js */
[x-transition] {
	transition-property: opacity, transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
}
