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

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,
center,
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,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  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;
}

input,
textarea,
a,
button,
select,
option {
  outline: none;
}

/* VARIABLES */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap");

:root {
  --primary: #ffc74c;
  --primaryLight: #ffe3a6;
  --secondaryHard: #058f75;
  --secondary: #0a5e4f;
  --secondaryLight: #116b5b;
  --secondaryLighter: #bae2db;
  --texts: #4a4a46;
  --textsLighter: #757571;
  --titles: #3c3b38;

  --crema: #f9f9f5;
  --cremaDarker: #e7e7e1;
  --cremaDarken: #d6d6cf;
  --cremaLighter: #dfe8e4;
  --white: #fff;

  --fontTitle: "Lora", serif;
  --fontTexts: "Poppins", sans-serif;
  --fontBrand: "Gloria Hallelujah", cursive;

  --headerHeight: 4.2rem;

  --defaultShadow: rgba(60, 59, 56, 0.08);
}

:root {
  --mobileGutters: 2rem 2rem;
  --tabletGutters: 2rem 8rem;
  --desktopGutters: 2rem 16rem;
  --desktopLargeGutters: 2rem 22rem;
  --desktopWideGutters: 2rem 35rem;
}

/* INIT */

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: var(--texts);
  font-family: var(--fontTexts);
  background: var(--crema);
}

html {
  margin-top: 0 !important;
}

a {
  color: var(--texts);
}

#wpadminbar {
  opacity: 0;
  transition: opacity 0.2s;
}
#wpadminbar:hover {
  opacity: 1;
}

@media screen and (min-width: 960px) {
  #wpadminbar {
    opacity: 1;
    z-index: 9999999;
  }
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

a:hover {
  text-decoration: none;
}

.link {
  font-weight: bold;
  color: var(--secondaryHard);
}
.link:hover {
  color: var(--secondaryLight);
}

.bretzselle-button {
  display: flex;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: var(--texts);
  border-radius: 5px;
  transition: background 0.2s;
}
.bretzselle-button.centered-button {
  text-align: center;
  margin-top: 1rem;
  display: block;
}

.bretzselle-button.thin {
  padding: 0.3rem 1rem;
}
.bretzselle-button.inline-button {
  display: inline-block;
}

.bretzselle-button:hover {
  background: var(--primaryLight);
}
.bretzselle-button.dark {
  background: var(--secondary);
  color: var(--white);
}
.bretzselle-button.dark:hover {
  background: var(--secondaryLight);
}

.gutters {
  padding: var(--mobileGutters);
}

@media screen and (min-width: 960px) {
  .gutters {
    padding: var(--tabletGutters);
  }
}
@media screen and (min-width: 1100px) {
  .gutters {
    padding: var(--desktopGutters);
  }
}
@media screen and (min-width: 1400px) {
  .gutters {
    padding: var(--desktopLargeGutters);
  }
}
@media screen and (min-width: 1700px) {
  .gutters {
    padding: var(--desktopWideGutters);
  }
}

strong {
  font-weight: bold;
}
.underline {
  text-decoration: underline;
}

h1 {
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 2rem;
}
h2 {
  font-size: 2.1em;
}
h3 {
  font-size: 1.7em;
}
h4 {
  font-size: 1.3em;
}
h5 {
  font-size: 1.1em;
}
h6 {
  font-size: 1em;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 1rem;
  background: var(--secondaryLight);
}

.logo {
}

.logo img {
  display: flex;
  width: 2.5rem;
}

@media screen and (min-width: 960px) {
  .header {
    padding: 1rem 1rem;
  }
  .logo img {
    width: 4rem;
  }
}

.container-top {
  background: var(--secondary);
  color: var(--white);
  border-bottom: 5px solid var(--primary);
}

.container-content {
}

.container-content-borders {
  border-top: 1px solid var(--cremaDarker);
}

.container-content .content-block {
  margin-bottom: 2rem;
}

.container-content p {
  line-height: 2;
  margin-bottom: 1rem;
}

.section-header {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.section-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 5px;
  border-radius: 100px;
  background: var(--primary);
}

.section-header .section-header-title {
  font-weight: bold;
  font-size: 1.8em;
}

.numberFirst {
  line-height: 100%;
  display: inline;
  margin-right: 1rem;
  font-size: 4em;
  font-weight: bold;
}

.basic-list {
  padding-left: 1rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
  list-style-type: square;
}

.basic-list li {
  margin-bottom: 0.7rem;
}

.simple-list {
}
.simple-list li {
  margin-bottom: 1rem;
}

.baseliner {
  margin-top: 1.4rem;
}

.container-call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: var(--primary);
}

.container-call-to-action-medium {
  background: var(--cremaDarker);
}

.container-call-to-action-title {
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
}

.container-call-to-action a {
  font-size: 1.7em;
}

.openning-hours-title {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 1rem;
  font-weight: bold;
}

.openning-hours-title * {
  line-height: 100%;
  margin-right: 0.5rem;
}

.openning-hours-title p {
  margin-bottom: 0;
}
.openning-hours-title span {
  font-size: 0.65em;
  font-weight: normal;
}
.openning-hours {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid var(--cremaDarker);
  border-radius: 7px;
}

.openning-hours-hours {
  padding: 1rem 2rem;
  background: var(--cremaDarker);
  border-radius: 7px;
}

.openning-hours ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2em;
}

.openning-hours ul li:last-of-type {
  margin-bottom: 0;
}

.openning-hours ul li .day {
  font-weight: bold;
  margin-right: 2rem;
}

.centered {
  text-align: center;
}

.disclamer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: var(--primaryLight);
  padding: 1rem 2rem;
  border-radius: 7px;
  margin-bottom: 1rem;
}

.disclamer svg {
  width: 6rem;
  height: 6rem;
  fill: var(--texts);
}
.disclamer p {
  transform: translateY(1px);
  margin-bottom: 0;
  padding-left: 2rem;
}

@media screen and (min-width: 960px) {
  .disclamer svg {
    width: 1.7rem;
    height: 1.7rem;
    fill: var(--texts);
  }
  .openning-hours {
    padding: 2rem;
    padding-top: 1.7rem;
  }
  .openning-hours-hours {
    padding: 1.5rem 2rem;
    width: fit-content;
  }
  .openning-hours ul {
    width: fit-content;
  }
  .openning-hours ul li {
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .openning-hours ul li .day {
    margin-right: 4rem;
  }
}

.ciao {
  text-align: center;
}

.footer {
  border-top: 1px solid var(--cremaDarker);
}

.footer-section {
  padding: 1rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  margin-bottom: 1rem;
  font-weight: bold;
}
.footer-section p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 960px) {
  .footer {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
  }
  .footer-section {
    padding: 1rem 2rem;
    width: 33.33%;
    border-right: 1px solid var(--cremaDarker);
    margin-bottom: 0;
  }

  .footer .footer-section:last-of-type {
    border-right-color: transparent;
  }
}

.bike {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.bike svg {
  width: 3rem;
  height: 3rem;
  fill: var(--secondaryLight);
}

@media screen and (min-width: 960px) {
  .bike {
    padding: 3rem;
  }
}

.buttons-block {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--cremaDarker);
  border-radius: 7px;
}
.buttons-block .buttons-block-title {
  margin-bottom: 1rem;
  font-weight: bold;
}

.buttons-block .bretzselle-button {
  background: var(--cremaDarker);
  color: var(--texts);
  margin-bottom: 1rem;
}
.buttons-block .bretzselle-button:hover {
  background: var(--cremaDarken);
  color: var(--texts);
}

@media screen and (min-width: 960px) {
  .buttons-block {
    padding: 2rem;
    padding-top: 1.7rem;
  }

  .buttons-block .buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }

  .buttons-block .bretzselle-button {
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .buttons-block .bretzselle-button:last-of-type {
    margin-right: 0;
  }
}

.with-image {
  overflow: hidden;
}

.with-image img {
  border-radius: 7px;
  display: flex;
  width: 100%;
  transition: opacity 0.2s;
}

.with-image img:hover {
  opacity: 0.8;
}

.container-content-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.docked-inner-blocks {
  background: var(--cremaDarker);
  padding: 1.5rem;
  border-radius: 7px;
  margin-bottom: 2rem;
}
.docked-inner-block {
}

.docked-inner-block p {
  margin-bottom: 0;
}

.docked-inner-block-main {
}
.docked-inner-block-contextual {
}

.catchphrase {
  font-size: 1.3em;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .docked-inner-blocks {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .docked-inner-block-main {
    width: 80%;
    padding-right: 1.5rem;
  }
  .docked-inner-block-contextual {
    width: 20%;
    padding-left: 1.5rem;
  }
}
