@import 'variables.css';
@import 'helpers.css';

@import "header.css";
@import 'top-banner.css';
@import "footer.css";
@import '../index.css';
@import "pages/carte.css";
@import "pages/contact.css";
@import "pages/legal.css";

@font-face {
	font-family: 'osifont';
	src: url('../fonts/osifont.woff2') format('woff2'),
		url('../fonts/osifont.woff') format('woff'),
		url('../fonts/osifont.ttf') format('truetype');
}

@font-face {
	font-family: 'Old London';
	src: url('../fonts/Old_London.woff2') format('woff2'),
		url('../fonts/Old_London.woff') format('woff'),
		url('../fonts/Old_London.ttf') format('truetype');
}

* {
	box-sizing: border-box;
}

/* Style global pour la page */

body {
	margin: 0;
	padding: 0;
	background-color: var(--light-brown-color);
	color: var(--brown-color);
	font-family: 'osifont', sans-serif;
	background-image: url("../img/enluminures_test4.png");
	background-position: center;
	background-size: 100%;
	background-repeat:  space repeat;
}

body.noscroll {
	overflow: hidden;
}

.footer-legal-information-body main {
	margin-top: 100px;
}

p {
	font-size: var(--font-size-16);
	margin: 0 auto;
}

h2 {
	font-size: 64px;
	font-family: var(--font-family-titles);
	margin: 20px 0;
	color: var(--brown-color);
	font-weight: normal;
}

h3 {
	font-size: 32px;
	font-family: 'osifont', sans-serif;
}


main {
	text-align: center;
}

.fading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2.1s ease-out, transform 2.1s ease-out;
}

.fading.visible {
    opacity: 1;
    transform: translateY(0);
}

.follow-us img {
	width: 80px;
	transition: transform 0.3s ease-in-out;
	filter: sepia(1);
}

.follow-us:hover img {
	filter: sepia(0);
}

.alcool-is-dangerous {
    font-family: 'Old London', sans-serif;
    font-size: 24px;
    font-style: italic;
}


/*-------------------- MEDIA QUERIES ----------------------- */

@media all and (max-width: 992px) {
	body{
		background-image: none;
	}

	h2 {
		font-size: 50px;
	}
}
