/* RESET & GRID -------------------------------------------------- */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Crimson Text', serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

[class*='col-'] {
  float: left;
  padding-right: 20px;
}

.col-2-3 { width: 66.66%; }
.col-1-3 { width: 33.33%; }
.col-1-4 { width: 25%; }
.col-1-2 { width: 50%; }

[class*='col-']:last-of-type { padding-right: 0; }

.inside {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

/* TYPOGRAPHY -------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  font-weight: 700;
}

p { margin: 1em 0; }

/* HEADER -------------------------------------------------- */

.main-header {
  height: 141px;
  background: #171717 url("../img/header-gradient.png");
  overflow: hidden;
}

.main-header .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 100%;
}

.main-header .logo {
  position: relative;
  top: 20px;
  left: 22px;
  text-indent: -999em;
  background: url("../img/logo.png") no-repeat;
  display: block;
  width: 663px;
  height: 121px;
}

.main-header .mod-languages {
  position: relative;
  float: right;
  top: 55px;
  right: 24px;
}

.main-header .mod-languages li img {
  border-radius: 100px;
  background: #2a2a2a;
  transition: background 0.3s ease-out;
}

.main-header .mod-languages li:hover img,
.main-header .mod-languages li.lang-active img {
  background: #facc3a;
}

.main-header .mod-languages li {
    margin: 0;
}

.main-header .mod-languages li img {
    -webkit-transition: background 0.3s ease-out;
    -moz-transition: background 0.3s ease-out;
    -o-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
    border-radius: 100px;
    background: #2a2a2a;
}

.main-header .mod-languages li:hover img,
.main-header .mod-languages li.lang-active img {
    -webkit-transition: background 0.3s ease-out;
    -moz-transition: background 0.3s ease-out;
    -o-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
    background: #facc3a;
}

.main-header .mod-languages .img {
    border-radius: 100px;
    text-indent: -999em;
    display: block;
    width: 46px;
    height: 46px
}

div.mod-languages ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

div.mod-languages ul.lang-inline li {
  display: inline;
}

.main-header .col-1-3{
  width: unset;
}

/* NAVIGATION -------------------------------------------------- */

.main-nav {
  background: url("../img/menu.png");
  height: 65px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  display: inline-block;
  border-left: 1px solid rgba(0,0,0,0.25);
}

.main-nav li:last-child {
  border-right: 1px solid rgba(0,0,0,0.25);
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 25px 23px 17px 23px;
  display: block;
  font-size: 16px;
  transition: background 0.3s ease-out;
}

.main-nav a:hover {
  background: rgba(0,0,0,0.14);
}

/* MAIN CONTENT -------------------------------------------------- */

.main {
  background: url("../img/main-pattern.png") repeat-x top;
  padding-top: 80px;
  padding-bottom: 20px;
}

.main .hero-header .beer-icon {
  background: url("../img/beer.png");
  width: 762px;
  height: 650px;
  position: absolute;
  right: -193px;
  top: -98px;
}

.main .content {
  background-color: white;
  margin: 0 10px 10px 0;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  padding: 1px 10px;
}

article h2{
  font-family: "Crimson Text";
  color: white;
  font-size: 24px;
  font-style: italic;
  position: absolute;
  top: -55px;
}

article h3 {
    font-family: "Crimson Text";
    color: #53613e;
    font-size: 19px;
    margin: 10px 0 0;
}

article h2.homepage-article-heading{
	color: #53623e;
}

.content .menu table {
    width: 100%;
    border-collapse: collapse;
}


.content .menu table tbody tr:nth-child(odd) {
    background-color: white;
}

.content .menu table tbody tr:nth-child(even) {
    background-color: #f0f0f0;
}

.content .menu td:nth-last-of-type(1) {
    text-align: right;
}

.content table td {
    padding: 7px;
    font-size: 14px;
}

.content table td:nth-child(1){
    font-size: 12px;
}

.content table td:nth-child(3){
    font-weight: bold;
}

/* HERO HEADER -------------------------------------------------- */
.main .hero-header div.custom {
    position: relative;
    height: 524px;
    overflow: hidden;
    margin-top: -80px;
}

.main .hero-header div.custom .background {
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/hero-pattern.png"); /* older browsers */
    background: radial-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6)), url("../img/hero-pattern.png");
    width: 100%;
    height: 403px;
}

.inside .text>p{
    display: none;
}

.main .hero-header div.custom .beer-icon {
    background: url("../img/beer.png");
    width: 762px;
    height: 650px;
    pointer-events: none;
    position: absolute;
    right: -193px;
    top: -98px
}

.main .hero-header div.custom .text {
    overflow: hidden;
}

.main .hero-header div.custom h2 {
    color: #fff;
    margin: 0;
    font-size: 44px;
    line-height: 58px;
    text-align: center;
    font-style: italic;
    font-weight: 700;
    text-shadow: 2px 3px 0 rgba(18,18,18,0.5);
    position: absolute;
    left: 0;
    top: 110px;
    max-width: 580px;
    z-index: 2;
}

.main .hero-header div.custom h2 br{
    display: none;
}


/* SIDEBAR -------------------------------------------------- */

.sidebar img {
  margin: 25px 10px;
}

.opening-hours {
    border: 1px solid #d4d4d4;
    width: 312px;
    padding: 7px;
    border-radius: 2px;
    background: #fff;
    position: relative;
    margin-bottom: 10px;
}

.opening-hours .openin-hours-container {
    padding: 5px 15px
}

.opening-hours:before {
    content: '';
    position: absolute;
    top: -7px;
    right: -7px;
    background-image: url("../img/ribbon.png");
    width: 114px;
    height: 113px
}

.opening-hours h4,
.opening-hours h3 {
    margin: 0
}

.opening-hours .list-times {
    padding: 0 32px 0 29px
}

.opening-hours .list-times li {
    margin-bottom: 1px;
    overflow: hidden;
    line-height: 14px
}

.opening-hours .list-times strong {
    color: #000;
    font-weight: 700
}

.opening-hours .list-times .time {
    color: #8a927f;
    float: right;
    font-weight: 700;
    font-size: 20px;
    line-height: 21px;
    letter-spacing: .3px
}

.opening-hours h3 {
    color: #9e0b0f;
    font-size: 31px;
    margin-bottom: 19px;
    font-family: 'Crimson Text';
    font-weight: 700;
    font-style: italic
}

.opening-hours .reservation {
    margin-top: 14px;
    background: #f0f7e6;
    padding-top: 12px;
    padding-bottom: 13px;
    text-align: center
}

.opening-hours .reservation .phone {
    margin: 0;
    font-size: 18px;
}

.opening-hours a {
    text-decoration: none;
    color: #000;
}


.opening-hours .reservation h4 {
    font-size: 18px;
    margin: 0;
    line-height: 28px;
    margin-bottom: -8px;
}

.button {
    display: inline-block;
    background-image: url("../img/button.png");
    width: 312px;
    height: 132px;
    padding-left: 32px;
    padding-top: 27px;
    line-height: 62px;
    text-indent: 27px;
    font-size: 28px;
    text-decoration: none;
    color: #53613e;
    font-weight: 700;
    font-style: italic
}

.button.icon:before {
    display: block;
    content: '';
    position: relative;
    float: left
}

.button.food-icon:before {
    background-image: url("../img/food-icon.png");
    width: 64px;
    height: 65px
}

.button.drink-icon:before {
    background-image: url("../img/drink-icon.png");
    width: 60px;
    height: 64px
}

.sidebar .button {
    margin-bottom: 10px
}

aside>li.widget_block { 
  list-style: none; 
}

/* FOOTER -------------------------------------------------- */

.main-footer {
    background: url("../img/footer-pattern.png");
    height: 500px;
    -webkit-box-shadow: inset 0 10px 4px -5px rgba(0,0,0,0.06);
    -moz-box-shadow: inset 0 10px 4px -5px rgba(0,0,0,0.06);
    box-shadow: inset 0 10px 4px -5px rgba(0,0,0,0.06);
    /*margin-top: 12px;*/
    padding-top: 30px;
    overflow: hidden;
}

.main-footer .footer-copy {
    color: #7d7d7d;
    border-top: 2px solid rgba(0,0,0,0.25);
    padding-top: 16px;
    margin: 43px 16px 0 16px
}

.main-footer .footer-copy .copy-text {
    width: 60%;
    text-align: center;
    font-size: 12px;
    font-style: italic;
    font-family: sans-serif;
    line-height: 19px;
    margin: 0 auto
}

.main-footer .footer-copy a {
    color: #9e0b0f;
    text-decoration: none
}

.main-footer h4 {
    margin: 0;
    font-size: 23px;
    font-style: italic;
    margin-bottom: 24px
}

.main-footer .map {
    background-image: url("../img/map.png");
    display: block;
    text-indent: -999em;
    width: 456px;
    height: 137px;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.15);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.15);
    box-shadow: 0 0 5px rgba(0,0,0,.15)
}

.main-footer .badge {
    background-image: url("../img/badge.png");
    display: block;
    text-indent: -999em;
    width: 167px;
    height: 168px;
    position: relative;
    bottom: 8px;
    left: 18px
}

.main-footer .footer-address {
    line-height: 20px;
    color: #5d5d5d
}

.main-footer .address-part {
    margin-bottom: 10px
}

/* RESPONSIVE -------------------------------------------------- */

@media screen and (max-width: 970px) {
  .grid {
    display: grid;
  }

  [class*="col-"] {
    width: unset;
  }

  .main-header .logo {
    width: 100%;
    background-size: contain;
    background-position: center;
  }

  .main-nav {
    flex-direction: column;
    height: auto;
  }

  .main-nav li {
    display: block;
    border: none;
  }

  .main-nav a {
    text-align: center;
    padding: 15px;
  }
}

@media screen and (max-width: 600px) {
  .main .hero-header .beer-icon {
    display: none;
  }

  .main .hero-header h2 {
    font-size: 28px;
  }
}