/**
* REFERENCES
* 
* Colors :
* 	- white : #FFFEFD;
* 	- dark brown : #1F0101;
*	- red text : #921911;
*	- brown footer : #460000;
*
* Texts size :
*	- Main title : 32px;
*	- Section title : px;
*	- Section sub title : px;
*	- Reservation title : px;
* 	- Text : 24px;
*/

/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

:root{
	--white-color: #FFFEFD;
	--dark-brown: #1F0101;
	--red-text: #921911;
	--brown-footer: #460000;

	--normal: 22px;
	--main-title: 48px;
	--section-title: 32px;
	--section-sub-title: 28px;
	--booking-title: 40px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* GENERAL */

*{
	font-family: 'Barlow Semi Condensed', sans-serif;
	line-height: 1.4em;
	padding: 0;
	margin: 0;
}


body{
	background: #FFFEFD;
}

.uppercase{
	text-transform: uppercase;
}

#site-header .link{
        color : inherit;
}

#site-header .link:active {
        color : inherit;
}

#site-header .link:visted {
        color : inherit;
}

span{
	color: #921911;
	font-weight: bold;
}

.warning{
        background: var(--red-text);
        color: var(--white-color);
        font-weight: bold;
        font-size: var(--main-title);
text-align: center;
}

.center{
        width: 100%;
        margin: auto;
}

/* SITE HEADER */
#site-header{
	background: #1F0101;
	border-bottom: 1px solid white;
	box-shadow: 0px 0px 10px black;
	position: sticky;
	top: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: #FFFEFD;
	padding: 0px 16px;
	font-size: var(--normal);
	z-index: 5000;
}

/* PARALLAX SECTION */
#parallax-section{
	background: url("background.jpg") no-repeat 0 top;
	background-size: 100%;
}

/* MAIN MENU */

.menu ul{
	list-style: none;
	padding: 16px 0px;
}

.menu ul li{
	display: inline;
	padding: 16px;
	transition: background 0.2s;
}

.menu ul li:hover{
	background: #FFFEFD;
	color: #1F0101;
}

.menu a{
	text-decoration: none;
	color: inherit;
}

/* SITE MAIN */
#site-main{
	width: 70%;
	margin: auto;
	padding: 32px 0px;
}

#site-main-header{
	text-align: center;
	color: #921911;
	font-weight: bolder;
	margin: 32px 0px 0px 0px;
	font-size: var(--main-title);
}

/* SECTIONS */
.inter-section{
	height: 92px;
}

.text-section{
	font-size: var(--normal);
}

.text-section-header{
	text-align: center;
	margin-bottom: 32px;
}

.text-section-title{
	font-size: var(--section-title);
}
.text-section-title:before{
	content: ">>>>>>>> ";
}
.text-section-title:after{
	content: " <<<<<<<<";
}

.text-section-content{
	text-align: justify;
}

/* DETAILS SECTIONS */
.flex{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.details-section{
	flex: 1;
	text-align: center;
	padding: 64px;
}

.details-section header{
	font-size: var(--section-sub-title);
	/*height: 128px;*/
}

.details-section h3{
	margin-bottom: 24px;
}

#address{
	font-size: var(--normal);
}

#price-container p, 
#price-container span,
#price-container div,
#price-container a{
	margin: 0px 0px 16px 0px;
}

#price-container ul{
	list-style:  initial; 
}

/* BOOKING SECTION */
#booking-title{
	font-size: var(--booking-title);
	background: var(--red-text);
	color: var(--white-color);
	display: inline-block;
	padding: 16px;
}
#booking-title:before{
	content: none;
}
#booking-title:after{
	content: none;
}

/* FOOTER */
#site-footer{
	height: 164px;
	background: url("footer.png") right 0 no-repeat, var(--brown-footer);
	z-index: 10000;
}

#forescape{
	padding: 8px;
	box-shadow: 1px 1px 5px black;
}

/* FINE TUNING */


@media screen and (max-width:768px) {
	:root{
		--white-color: #FFFEFD;
		--dark-brown: #1F0101;
		--red-text: #921911;
		--brown-footer: #460000;

		--normal: 18px;
		--main-title: 32px;
		--section-title: 22px;
		--section-sub-title: 20px;
		--booking-title: 32px;	
	}

	.text-section-content{
		display: block;
	}

	.menu{
		display: none;
	}

	#site-header{
		padding: 8px 16px;
	}

	.inter-section{
		height: 32px;
	}

	.details-section{
	flex: 1;
	text-align: center;
	padding: 16px;
}
}	