@charset "utf-8";

/* common */
* {
  background: transparent;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: unset;
  list-style: none;
  border: none;
}

html {
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  /* value min 10px - max 20px | viewport 320px - 960px */
  font-size: clamp(0.625rem, 0.313rem + 1.56vw, 1.25rem);

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: var(--header-height);
}

body {
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: #333;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-spacing-trim: trim-auto;
  /* font-feature-settings: "palt"; */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

img {
  width: inherit;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.viewport {
  margin-inline: auto;
  max-width: 960px;
  background: #fff;
  box-shadow: 0 0 1rem #ccc;
}

#header {
  img {
    width: 100%;
  }
}

#flyer {
  margin-top: -3.5rem;
  text-align: center;
  position: relative;
  .flyer {
    img {
      width: 100%;
    }
  }
  .btn {
    position: absolute;
    bottom: 4%;
    left: 50%;
    translate: -50% 0;
    width: 90%;
  }
}

.btn {
  transition: all 0.2s ease-in;
  &:hover {
    scale: 1.05;
    transition: all 0.1s ease-out;
  }
}

#shop-info {
  padding: 3rem;
  text-align: center;
  h2 {
    margin-bottom: 2.5rem;
    img {
      margin-inline: auto;
    }
  }
  .googlemaps {
    iframe {
      aspect-ratio: 4 / 3;
      width: 100%;
    }
  }
}

#aoca {
  padding: 3rem;
  background: image-set(url("../img/aoca-bg.webp") 1x, url("../img/aoca-bg@2x.webp") 2x) center top / 100% auto
    no-repeat #1d2088;
  text-align: center;
  h2,
  p {
    margin-bottom: 2.5rem;
  }
}

.downloadBtn {
  filter: drop-shadow(0.25rem 0.25rem 0 #000);
  cursor: pointer;
  transition: all 0.2s ease-in;

  &:hover {
    filter: drop-shadow(0 0 0 transparent);
    translate: 0.25rem 0.25rem;
    transition: all 0.1s ease-out;
  }
}

#app {
  padding: 5rem 3rem 3rem;
  text-align: center;
  background: image-set(url("../img/app-bg.webp") 1x, url("../img/app-bg@2x.webp") 2x) center top / 100% auto repeat-y;
  padding-bottom: 3.75rem;
  h2,
  p {
    margin-bottom: 4rem;
  }
}

#footer {
  text-align: center;
  .btn {
    margin-inline: 5.9rem;
  }
  #copyright {
    padding: 2rem;
  }
}
