@font-face {
	font-family: 'Laviossa';
	src: url('Assets/Fonts/Laviossa-Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

body {
	background: #ffefd7;
	margin: 0;
	font-family: 'Outfit', Arial, sans-serif;
	color: #475747;
}

/* Header hérité de style.css : pas de styles supplémentaires ici */

main {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px 40px 20px;
}

.carte-section {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

/* Top Wrapper : Bouton + Texte + Vidéo */
.carte-top-wrapper {
	background: #475747;
	border-radius: 30px;
	padding: 30px 40px;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 35px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.carte-left-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
}

.carte-reserve-btn {
	background: #ffefd7;
	color: #475747;
	border: 2px solid #ffefd7;
	border-radius: 22px;
	padding: 16px 35px;
	font-family: 'Laviossa', serif;
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 4px 12px rgba(255, 239, 215, 0.15);
	white-space: nowrap;
	align-self: flex-start;
}

.carte-reserve-btn:hover {
	background: #f5e5c8;
	color: #475747;
}

.carte-texte-explicatif {
	background: transparent;
	border-radius: 0;
	padding: 0;
	text-align: left;
}

.carte-title {
	font-family: 'Laviossa', serif;
	color: #ffefd7;
	font-size: 2.2rem;
	margin: 0 0 15px 0;
	font-weight: bold;
}

.carte-intro {
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
	font-size: 1.05rem;
	line-height: 1.5;
	margin: 0;
}

/* Vidéo Cuisine */
.carte-video-cuisine {
	width: auto;
	height: 400px;
	aspect-ratio: 9 / 16;
	flex-shrink: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border: 3px solid #ffefd7;
	background: #000;
}

.carte-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Images de la Carte */
.carte-menu-images {
	display: flex;
	gap: 30px;
	align-items: stretch;
}

.carte-menu-image {
	flex: 1;
	background: #475747;
	border-radius: 25px;
	padding: 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.carte-image-full {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	display: block;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
	.carte-top-wrapper {
		flex-direction: column;
		gap: 25px;
		padding: 25px 30px;
		max-width: 100%;
		align-items: center;
	}
	
	.carte-left-column {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.carte-reserve-btn {
		width: auto;
		text-align: center;
		align-self: center;
		font-size: 1.1rem;
		padding: 14px 24px;
		letter-spacing: 0.08em;
		white-space: normal;
		margin: 0 auto;
	}
	
	.carte-texte-explicatif {
		text-align: center;
	}

	.carte-video-cuisine {
		width: 100%;
		max-width: 350px;
		height: auto;
		aspect-ratio: 9 / 16;
		margin: 0 auto;
	}

	.carte-menu-images {
		flex-direction: column;
		gap: 25px;
	}
	
	.carte-menu-image {
		padding: 15px;
	}
	}
