@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(assets/fonts/Open-Sans.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
  background: url(assets/BG.jpg);
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

a, a:visited {
  color: #e6332a;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

a:hover, a:active, a:focus-within {
  color: #fefefe;
}

p {
  line-height: 1.1;
  margin-block: 0 2rem;
  text-wrap: balance;
}

header {
  margin-bottom: 3rem;
}

.logo {
  width: 35%;
  height: auto;
}

main {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto 6rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: flex-end;
  justify-content: space-between;
}

.content {
  flex: auto 1 1;
  color: #fefefe;
  text-shadow: 0 0 0.5rem rgba(0,0,0,0.7);
  font-size: 1.5rem;
  font-weight: 400;
}

.booking {
  font-size: 1.375rem;
  text-align: center;
  flex: auto 1 0;
  width: fit-content;
  color: #fefefe;
  padding: 1rem;
  background-color: #e6332a;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.7);
  border-radius: 0.5rem;
  transform: rotate(-5deg);
}

.booking p {
  margin-block: 0 0.5rem;
}

.tel {
  font-size: 2rem;
  font-weight: 700;
  color: #fefefe;
  transition: color 0.2s ease;
}

.tel:hover {
  color: #ccc;
}

@media screen and (max-width: 480px) {
  body {
    padding: 1.5rem;
  }

  .logo {
    width: 70%;
  }

  main {
    flex-direction: column;
    margin-block: 0;
  }

  .content {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  .booking {
    font-size: 1.25rem;
  }

  .tel {
    font-size: 1.5rem;
  }
}