/** FONT-FAMILIES */
/** FONT-SIZE */
/** LINE-HEIGHTS  */
/**
 * The path to the fonts folder, relative to the
 * compiled stylesheet
 *
 * @type String
 */
/**
 * A list of the project's font faces along with
 * thier associated variants
 *
 * @type List
 * Note: The format of this list is important.
 * Do not miss the trailing comma for single line
 * declarations
 */
/**
 * Generates a complete font face declarations
 * where invoked
 *
 * @type mixin
 *
 * @param $font-family The with which the font family will be called
 * @param $font-path   The path to the fonts directory relative to the compiled stylesheet
 * @param $font-file   The name of the actual font file
 * @param $font-weight The font weight (normal, bold, lighter)
 * @param $font-weight The font style (normal, italic)
 *
 * Example Usage:
 * @include font-face('Open Sans', 'fonts/', 'OpenSans-regular-webfont', bold, italic)
 */
/**
 * A loop to run through each font family
 * and print the font face declarations of each
 * variant
 *
 * Dependencies
 * variable - $font-path
 * list     - $font-faces
 * mixin    - font-face
 */
@font-face {
  font-family: "FrutigerBlack";
  src: url("fonts/FrutigerLTStd-Black.eot");
  src: url("fonts/FrutigerLTStd-Black.eot?#iefix") format("embedded-opentype"), url("fonts/FrutigerLTStd-Black.svgFrutigerBlack") format("svg"), url("fonts/FrutigerLTStd-Black.ttf") format("truetype"), url("fonts/FrutigerLTStd-Black.woff") format("woff"), url("fonts/FrutigerLTStd-Black.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Frutiger";
  src: url("fonts/FrutigerLTStd-Roman.eot");
  src: url("fonts/FrutigerLTStd-Roman.eot?#iefix") format("embedded-opentype"), url("fonts/FrutigerLTStd-Roman.svgFrutiger") format("svg"), url("fonts/FrutigerLTStd-Roman.ttf") format("truetype"), url("fonts/FrutigerLTStd-Roman.woff") format("woff"), url("fonts/FrutigerLTStd-Roman.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica";
  src: url("fonts/Helvetica.eot");
  src: url("fonts/Helvetica.eot?#iefix") format("embedded-opentype"), url("fonts/Helvetica.svgHelvetica") format("svg"), url("fonts/Helvetica.ttf") format("truetype"), url("fonts/Helvetica.woff") format("woff"), url("fonts/Helvetica.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Frutiger", sans-serif;
  line-height: inherit;
  overflow-x: hidden;
}

.dropdown-menu {
  max-height: 350px;
  overflow-y: auto;
}

.h1, .h2, .h3, .h4 {
  font-family: "FrutigerBlack", sans-serif;
}

.h1 {
  font-weight: bolder;
}

.hrTitle {
  display: inline-block;
  width: 100%;
  border: 3px solid #FFF;
  margin-bottom: 30px;
}

.h3 {
  display: inline-block;
  padding-top: 30px;
}

.h4 {
  font-size: 20px;
  display: inline-block;
}

.txtDetail {
  line-height: inherit;
}

p {
  /** Bootstrap surcharge styles */
  margin-top: 20px !important;
  margin-bottom: 5px !important;
}

/**
  Bootstrap surcharge styles
 */
.table td, .table th {
  padding: 0.15rem !important;
  border-top: none !important;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.5);
}

.txtVerticalAlignInTd {
  vertical-align: middle !important;
}

.price {
  width: 20%;
}

/**
  Languages menu
*/
#menuLangBloc {
  position: fixed;
  top: 0;
  left: 0;
}
#menuLangBloc span {
  font-size: 0.85rem;
  border-radius: 0 !important;
}

/**
  NAV MENU
 */
nav {
  position: relative;
  z-index: 1028;
  background-color: #FFF;
}
nav a#lbcNavBtn {
  display: inline-block;
  width: 65%;
  padding: 15px 50px;
  font-weight: lighter;
  text-align: center;
  text-decoration: none !important;
  color: #ececec;
  background-color: darkred;
  box-shadow: 1px 1px 10px #858585;
  border-radius: 0 0 10px 10px;
}
nav div#lbcNavListBloc {
  position: absolute;
  top: -500px;
  z-index: 1029;
  width: 100%;
  opacity: 0;
  overflow-y: scroll;
  height: 400px;
}
nav div#lbcNavListBloc ul#lbcNavList {
  margin-bottom: 5px;
  padding-left: 0 !important;
  background-color: #FFF;
  list-style-type: none;
  box-shadow: 1px 1px 10px #858585;
}
nav div#lbcNavListBloc ul#lbcNavList li a {
  display: block;
  margin: 0 auto !important;
  padding: 15px !important;
  text-align: center;
  color: #1d1d1d !important;
  text-decoration: none !important;
  background-color: #FFF;
}
nav div#lbcNavListBloc ul#lbcNavList li a:hover {
  background-color: #1d1d1d;
  color: #FFF !important;
}
nav div#lbcNavListBloc ul#lbcNavList div.dropdown-divider {
  margin: 0 !important;
}

/**
  PAGES
 */
.bgPage {
  border-top: 10px solid #ececec;
}

.page {
  padding-bottom: 60px;
}

/** Home */
#bgHome {
  width: auto;
  min-height: 100vh;
  margin: 0 auto;
  background: url("../img/bgHome.jpg") no-repeat center top;
  background-size: cover;
  /*min-height: 1000px;*/
}

#txtWelcome {
  color: white !important;
  padding: 35px;
  background-color: rgba(255, 255, 255, 0.5);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#menuLangTitle {
  font-size: 1.5em;
}

#linkToMenuContainer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*background-color: rgba(255,255,255, .5);*/
}

.linkToMenu {
  display: block;
  padding: 10px;
  background: rgba(139, 0, 0, 0.75);
  color: white;
  text-transform: uppercase;
  font-size: 1.5em;
  text-align: center;
  text-decoration: none;
}

.linkToMenu:hover {
  color: white !important;
  text-decoration: none !important;
  text-shadow: 1px 1px 3px black !important;
}

/**
  PAGES
 */
/** annule la bordure pour la page1 */
#page1 {
  border-top: 0 !important;
}

#petits-dejeuner > td > span, #table-page1-cc-title {
  padding-top: 90px !important;
  padding-bottom: 20px;
}

.wineCep {
  font-size: 25px;
  font-style: oblique;
}

/*# sourceMappingURL=style.css.map */
