/*@import url("https://fonts.googleapis.com/css2?family=Cookie&display=swap&family=Zilla+Slab:wght@300;400&display=swap");*/
* {
	font-family: "Zilla Slab", serif;
}

:root {
	--marron-color: black;
	--marron-medium-color: #d4c2af;
	--marron-clair-color: #e4cdbb;
}

h1,
h2,
h3,
h4,
h5 {
	/*font-family: "Cookie", cursive;*/
}

h1 {
	padding: 5px 0px;
	font-size: 4em;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

h2 {
	font-size: 2.5em;
	margin: 30px 0 30px 0;
	color: var(--marron-color);
	border-bottom: 1px dashed var(--marron-color);
	padding-bottom: 10px;
	position: relative;
}

h2::after {
	content: attr(data-info);
	position: absolute;
	right: 0;
	top: 12px;
	/*font-family: "Zilla Slab", serif;*/
	color: gray;
	font-size: 16px;
	font-style: italic;
}

body {
	margin: 0;
	box-sizing: border-box;
	font-size: 16px;
}

/*body,
main {
	background-color: var(--marron-medium-color);
	background-image: linear-gradient(
			335deg,
			var(--marron-color) 23px,
			transparent 23px
		),
		linear-gradient(155deg, var(--marron-clair-color) 23px, transparent 23px),
		linear-gradient(335deg, var(--marron-color) 23px, transparent 23px),
		linear-gradient(155deg, var(--marron-clair-color) 23px, transparent 23px);
	background-size: 58px 58px;
	background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
}*/

main {
	/*display: flex;
	width: 100%;
	height: 100vh;*/
	justify-content: center;
	align-items: center;
}

/*#coffee_menu {
	--recipe-height: 720px;
	--recipe-ratio: 1.4;
	width: calc(var(--recipe-height) / var(--recipe-ratio));
	height: var(--recipe-height);
	box-sizing: border-box;
	margin: auto;
	overflow: auto;
	background-color: #fff;
	border-radius: 3px;
	position: relative;
	box-shadow: 1px 9px 14px 0px rgba(0, 0, 0, 0.51);
	-webkit-box-shadow: 1px 9px 14px 0px rgba(0, 0, 0, 0.51);
	-moz-box-shadow: 1px 9px 14px 0px rgba(0, 0, 0, 0.51);
	animation: loadPage 1s 1s ease-in-out forwards;
	opacity: 0;
}*/

#coffee_menu::-webkit-scrollbar {
	display: none;
}

.page {
	width: 100%;
	min-height: 100%;
	box-sizing: border-box;
}

#page-1 {
	background-color: black;
	position: sticky;
	top: 0;
	z-index: 1;
}

#page-2 {
	position: relative;
	z-index: 2;
	background-color: white;
	padding: 1px 20px 20px 20px;
}

#page-2 p,
#page-2 dl {
	margin: 0;
}

#page-1 > img {
	width: 100%;
	height: 90vh;
	object-fit: cover;
}

#coffee_menu {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.sea {
	width: 50%;
	display: block;
	margin: 0 auto;
	
}

@media (max-height: 700px) {
	main {
		display: block;
		padding: 20px;
	}
}

@media (max-width: 768px) {
	#page-1 > img {
		height: 85vh;
	}

	.sea {
		width: 100%;
	}
}

#toggleFullScreen {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 20px;
	background-color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	transition: transform 0.3s;
}

#toggleFullScreen:hover {
	transform: scale(0.9);
}

.informations {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
}

.informations address {
	border: 1px solid rgba(255, 255, 255, 1);
	animation: comeOn 0.8s 1.5s ease-in-out forwards;
	opacity: 0;
	padding: 20px;
	font-style: normal;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

.informations address::before {
	content: "";
	background-color: rgba(255, 255, 255, 0.208);
	-webkit-filter: blur(3px);
	-webkit-background-size: cover; /* pour Chrome et Safari */
	-moz-background-size: cover; /* pour Firefox */
	-o-background-size: cover; /* pour Opera */
	background-size: cover; /* version standardisée */
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.informations address svg {
	fill: white;
}

.informations address #loc {
	fill: white;
	transform: scale(2);
	margin-bottom: 20px;
}

.informations address a {
	color: white;
	text-decoration: none;
	font-size: 1.2em;
}

.hours {
	margin: 20px auto;
	animation: comeOn 0.8s 2s ease-in-out forwards;
	opacity: 0;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
}

.prices {
	text-align: right;
	position: relative;
	font-style: italic;
	margin-bottom: 15px !important;
	color: gray;
}

.prices::before {
	content: "Prices";
	position: absolute;
	left: 0;
	top: 0;
}

.description {
	border-left: 1px solid var(--marron-color);
	margin: 5px 0 3px 0;
	padding-left: 15px;
	font-style: italic;
	color: gray;
}

.title {
    display: table;
    margin: 0 auto;
    text-align: center;
}

dt {
    font-size:large;
}

.sub-title {
	font-size: xx-large;
}

.end {
	font-size: x-large;
}

td img {
	width: 40px;
}

@keyframes loadPage {
	0% {
		opacity: 0;
		transform: scale(0.5);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes comeOn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}


