<link href="/wp-content/themes/hillter-child/reservations/datepicker3.css" rel="stylesheet" />

<style>

	.res-form {
		margin:0;
		padding:0;
		margin-top: 2px;
	}

	.res-form .form-group {
		margin: 0;
	}

	.res-form input, .res-form select, {
		font-family: Roboto, Helvetica, Arial, sans-serif !important;
	}

	.res-form label{
		color: #fff;
		font-size: 12px;
		font-weight: 400;
		line-height: 1.07143;
		margin: 9px 0 0;
	}

	.res-form input[type="search"],
	.res-form input[type="text"],
	.res-form input[type="url"],
	.res-form input[type="number"],
	.res-form input[type="password"],
	.res-form input[type="email"],
	.res-form input[type="file"],
	.res-form input[type="tel"],
	.res-form select,
	.res-form textarea {
		background: none;
		border: 0;
		border-bottom:2px solid  !important;
		border-color:rgba(255,255,255, 0.8) !important;
		border-right:none !important;
		border-left:none !important;
		border-top:none !important;
		color: #fff;
		font-family: Roboto, Helvetica, Arial, sans-serif !important;
		font-size: 12px;
		padding: 5px ;
		width: 100%;
		height: auto;
		line-height: 19px;
	}

	.form-control, .form-group .form-control {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
	background-color:none;
	border-bottom:1px solid #fff;
	}

	.res-form .form-control::-webkit-input-placeholder { font-size: 12px; }
	.res-form .form-control:-moz-placeholder { font-size: 12px; }
	.res-form .form-control::-moz-placeholder { font-size: 12px; }
	.res-form .form-control:-ms-input-placeholder { font-size: 12px; }

	.res-form .input-group-addon {
		background: none;
		border: 0;
		border-radius: 0;
		color: #fff;
		font-size: 14px;
		font-weight: 400;
		line-height: 1;
		padding: 25px 12px 0;
		text-align: center;
	}

	#begindate{ color:#fff;}

	.btn-group-raised .btn.btn-primary, .btn-group-raised .input-group-btn .btn.btn-primary, .btn.btn-fab.btn-primary, .btn.btn-raised.btn-primary, .input-group-btn .btn.btn-fab.btn-primary, .input-group-btn .btn.btn-raised.btn-primary {
	background-color: rgba(255, 255, 255, 1) !important;
    color: #333333;
	font-family:Arial, Helvetica, sans-serif;
}

	.btn.btn-raised.btn-primary:hover {
    background-color: #8f0b15 !important;
    /*color: rgba(255, 255, 255, 1);*/
    color: #ffffff;
		border: 1px #ffffff solid;
}

	.form-control::-moz-placeholder {
    color: #fff;
}

.btn {
    font-family: 'Roboto';
    font-size: 16px!important;
}

.datepicker-dropdown {
    z-index: 99999;
}

.form-group option {
    color:#333333;
}

.adultes-res{
	margin-top:5px;
}
.date-fin{
	margin-bottom:10px;
}

@media only screen 
and (min-device-width : 200px) 
and (max-device-width : 767px) {
.adultes-res{
	margin-top:-2px;
}
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
.adultes-res{
	margin-top:2px;
}
}

</style>

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" />

<div class="row">
<form class="res-form" action="https://secure.reservit.com/front169855/front.do" target="_blank">

			<div class="col-sm-1">
            </div>
            <div class="col-sm-3">
				<div class="input-group date" data-provide="datepicker" data-date-format="dd/mm/yyyy">
					<label>&nbsp;</label>
					<input type="text" name="begindate" id="begindate" class="form-control" placeholder="Arrival">
					<div class="input-group-addon">
						<i class="fa fa-calendar"></i>
					</div>
				</div>
			</div>
			<div class="col-sm-3">
				<div class="input-group date-fin date" data-provide="datepicker" data-date-format="dd/mm/yyyy">
					<label>&nbsp;</label>
					<input type="text" name="enddate" id="enddate" class="form-control" placeholder="Departure">
					<div class="input-group-addon">
						<i class="fa fa-calendar"></i>
					</div>
				</div>
			</div>
			<div class="col-sm-3">
				<div class="form-group">
					<label>Adult(s)</label>
					<select id="adultes" name="adultes" class="form-control adultes-res" >
						<option value="1">1</option>
                        <option value="2">2</option>
						<option value="3">3</option>
						<option value="4">4</option>
					</select>
				</div>
			</div>


            <div class="col-sm-2 pull-right">
				<button id="reserve" type="submit" class="btn btn-primary btn-raised">Book now</button>
			</div>
		</div>


	<input type="hidden" id="roomAge1" name="roomAge1" value=""/>
	<input type="hidden" name="m" value="booking"/>
	<input type="hidden" name="custid" value="58"/>
	<input type="hidden" name="hotelid" value="169855"/>
	<input type="hidden" name="langcode" value="FR"/>
	<input type="hidden" id="dateformat" value="dd/mm/yy"/>
</form>

<script src="/wp-content/themes/hillter-child/reservations/bootstrap-datepicker.js"></script>
<script src="/wp-content/themes/hillter-child/reservations/bootstrap-datepicker.fr.js"></script>
<script>
	jQuery(document).ready(function($){

		$('.datepicker').datepicker({
			format: 'dd/mm/yyyy',
			language: "fr"
		});


		$('#reserve').click(function(e){
			e.preventDefault();
			var adultes = parseInt($('#adultes').val());
			var enfants = parseInt($('#enfants').val());
			var roomAge1 = '';
			for (var i = 0, max = adultes; i < max; i++) {
				if(i != 0 ) {
					roomAge1 += ',';
				}
				roomAge1 += '40';
			}
			for (var i = 0, max = enfants; i < max; i++) {
				roomAge1 += ',12';
			}
			$('#roomAge1').val(roomAge1);
			$('.res-form').submit();
			return false;
		});
	})
</script>
{"id":3505,"date":"2017-10-18T15:21:43","date_gmt":"2017-10-18T13:21:43","guid":{"rendered":"https:\/\/beta.latourdulac.ca\/?page_id=3505"},"modified":"2018-07-26T22:02:41","modified_gmt":"2018-07-26T20:02:41","slug":"restaurant-gastronomy","status":"publish","type":"page","link":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/","title":{"rendered":"Restaurant"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row full_width=&#8221;stretch_row&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4234&#8243; parallax_speed_bg=&#8221;0&#8243; enable_overlay=&#8221;&#8221; css=&#8221;.vc_custom_1513251220406{padding-top: 200px !important;padding-bottom: 20px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;titre-page&#8221;][vc_column el_class=&#8221;fadein-h1 fadeInh1&#8243;]<div class=\"awe-special-heading text-left\" style=\"color:#ffffff;\"><h1 style=\"font-size:47px\">Restaurant in the Laurentians<\/h1><\/div>[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4426&#8243; parallax_speed_bg=&#8221;0&#8243; el_class=&#8221;bloc-reservation&#8221;][vc_column][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1532108321300{margin-top: -80px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;]<\/p>\n<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">See availability<\/span><\/h2>\n<p>[\/vc_column_text][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1512056117505{margin-bottom: -80px !important;padding-bottom: 0px !important;}&#8221;][\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1508263247670{margin-top: 25px !important;}&#8221;][vc_column]<div class=\"awe-special-heading text-left\" style=\"padding-bottom:10px;\"><h2>Enjoy fine cuisine in a setting of the last century.<\/h2><\/div>[vc_column_text size=&#8221;0&#8243;]<\/p>\n<p>The six service dinner is\u00a0 served\u00a0 in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.<\/p>\n<p>The music, the ambiance, the smiles, everything is at the rendezvous to please you.[\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1515532266401{margin-top: 40px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_text_separator title=&#8221;Informations&#8221; title_align=&#8221;separator_align_left&#8221;][vc_column_text size=&#8221;0&#8243;]May it be in the dining room or on the terrace, to taste a comforting meal or to drink a glass, you will be conquered.<\/p>\n<p>At the Auberge de la Tour du Lac, the breakfast is included with the overnight stays. It is a continental breakfast served at your room. It includes muffins, croissants, juice, fruits and coffee (cafetiere inside the room).[\/vc_column_text][vc_column_text size=&#8221;0&#8243;]<a title=\"Menu du restaurant\" href=\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/restaurant-menu\/\">See the menu<\/a><br \/>\n<a title=\"Carte des vins\" href=\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/wine-list\/\">See the wine list<\/a>[\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_gallery interval=&#8221;15&#8243; images=&#8221;3984,3986,3988,3990,3992,3994,4004,4006,4008,4010&#8243; img_size=&#8221;700&#215;643&#8243; onclick=&#8221;img_link_large&#8221;][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4234&#8243; parallax_speed_bg=&#8221;0&#8243; enable_overlay=&#8221;&#8221; css=&#8221;.vc_custom_1513251220406{padding-top: 200px !important;padding-bottom: 20px !important;background-position: center;background-repeat: no-repeat !important;background-size: cover !important;}&#8221; el_class=&#8221;titre-page&#8221;][vc_column el_class=&#8221;fadein-h1 fadeInh1&#8243;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; parallax=&#8221;content-moving&#8221; parallax_image=&#8221;4426&#8243; parallax_speed_bg=&#8221;0&#8243; el_class=&#8221;bloc-reservation&#8221;][vc_column][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1532108321300{margin-top: -80px !important;margin-bottom: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}&#8221;] See availability [\/vc_column_text][vc_column_text size=&#8221;0&#8243; css=&#8221;.vc_custom_1512056117505{margin-bottom: -80px !important;padding-bottom: 0px !important;}&#8221;][\/vc_column_text][\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1508263247670{margin-top: 25px !important;}&#8221;][vc_column][vc_column_text size=&#8221;0&#8243;] The six service dinner is\u00a0 served\u00a0 in our&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3505","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Restaurant Ste-Agathe, Laurentians - Auberge La Tour Du Lac<\/title>\n<meta name=\"description\" content=\"The six service dinner is served in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Restaurant Ste-Agathe, Laurentians - Auberge La Tour Du Lac\" \/>\n<meta property=\"og:description\" content=\"The six service dinner is served in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/\" \/>\n<meta property=\"og:site_name\" content=\"La Tour du lac\" \/>\n<meta property=\"article:modified_time\" content=\"2018-07-26T20:02:41+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/\",\"url\":\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/\",\"name\":\"Restaurant Ste-Agathe, Laurentians - Auberge La Tour Du Lac\",\"isPartOf\":{\"@id\":\"https:\/\/latourdulac.ca\/#website\"},\"datePublished\":\"2017-10-18T13:21:43+00:00\",\"dateModified\":\"2018-07-26T20:02:41+00:00\",\"description\":\"The six service dinner is served in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.\",\"breadcrumb\":{\"@id\":\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/latourdulac.ca\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Restaurant\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/latourdulac.ca\/#website\",\"url\":\"https:\/\/latourdulac.ca\/\",\"name\":\"La Tour du lac\",\"description\":\"Un site utilisant WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/latourdulac.ca\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Restaurant Ste-Agathe, Laurentians - Auberge La Tour Du Lac","description":"The six service dinner is served in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/","og_locale":"en_US","og_type":"article","og_title":"Restaurant Ste-Agathe, Laurentians - Auberge La Tour Du Lac","og_description":"The six service dinner is served in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.","og_url":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/","og_site_name":"La Tour du lac","article_modified_time":"2018-07-26T20:02:41+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/","url":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/","name":"Restaurant Ste-Agathe, Laurentians - Auberge La Tour Du Lac","isPartOf":{"@id":"https:\/\/latourdulac.ca\/#website"},"datePublished":"2017-10-18T13:21:43+00:00","dateModified":"2018-07-26T20:02:41+00:00","description":"The six service dinner is served in our magnificent dining room and restaurant built in the last century. We are reserving for you an unforgettable experience due to our tasty plates and to the heart-warming welcoming and service that distinguish us.","breadcrumb":{"@id":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/latourdulac.ca\/en\/restaurant-gastronomy\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/latourdulac.ca\/en\/"},{"@type":"ListItem","position":2,"name":"Restaurant"}]},{"@type":"WebSite","@id":"https:\/\/latourdulac.ca\/#website","url":"https:\/\/latourdulac.ca\/","name":"La Tour du lac","description":"Un site utilisant WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/latourdulac.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages\/3505","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/comments?post=3505"}],"version-history":[{"count":5,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages\/3505\/revisions"}],"predecessor-version":[{"id":4841,"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/pages\/3505\/revisions\/4841"}],"wp:attachment":[{"href":"https:\/\/latourdulac.ca\/en\/wp-json\/wp\/v2\/media?parent=3505"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}