/* FONTS */
@font-face {
  font-family: 'raw';
  src: url('fonts/raw.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'marker';
  src: url('fonts/marker.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* GENERAL LAYOUT */
body {
  font-family: 'raw', serif;
  color: #000;
}
a {
  font-family: 'marker', serif;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section--content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0 2em;
  background-color: #CEB9A6;
}

.section--background {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  background-image: url('images/cafedebout-background.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.logo {
  margin: 4em 0;
}
.logo img {
  display: block;
  width: 480px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}
.intro {
  margin-bottom: 1em;
}
.intro p {
  font-size: 1.5em;
}
.info {
  margin-bottom: 1em;
}
.info p {
  font-size: 1em;
}

/* DESKTOP LAYOUT */
@media screen and (min-width: 800px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section {
    width: 50%;
    min-height: 100vh;
  }
  .section--background {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  .section--content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .logo {
    margin: 4em 0 2em 0;
  }
  .intro {
    margin-top: auto;
  }
  .intro p {
    font-size: 2.5em;
  }
}
