@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Kanit:wght@400;600;700&display=swap");
:root {
  --std-side-padding: 16.5vw;
}
@media screen and (max-width: 1200px) {
  :root {
    --std-side-padding: 5vw;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --std-side-padding: 2em;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Kanit, sans-serif;
  opacity: 1;
  transition: opacity 0.2s; /* min-height: 100vh */
}

div, nav, main, header, footer {
  box-sizing: border-box;
}

button {
  cursor: pointer;
  display: block;
  border: none;
  background: none;
  font-size: 1rem;
  font-family: Kanit, sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.fit-content-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

p {
  margin: 0.5em 0;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

ul {
  margin: 0;
}

em {
  color: #E2A33A;
  font-style: inherit;
}

strong, .strong {
  color: #E2A33A;
  font-style: inherit;
  font-weight: bold;
}

.flex {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 750px) {
  .flex {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .flex > *:not(:first-child) {
    margin-top: 1rem;
  }
}

.flex-align-center {
  align-items: center;
}

.flex-align-start {
  align-items: start;
}

.flex-justify-center {
  justify-content: center;
}

.flex-space-between {
  justify-content: space-between;
}

.flex-space-around {
  justify-content: space-around;
}

.flex1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}
@media screen and (max-width: 750px) {
  .gap-3 > *:not(:first-child) {
    margin-top: 3rem;
  }
}

.grid {
  display: grid;
}
@media screen and (max-width: 750px) {
  .grid {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .grid > *:not(:first-child) {
    margin-top: 1rem;
  }
}
.grid_3fr {
  grid-template-columns: repeat(3, 1fr);
}
.grid_4fr {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1200px) {
  .grid_4fr {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid_1aside {
  grid-template-columns: 1fr 4fr;
  gap: 2em;
}
.grid.std-page {
  grid-template-columns: 1fr 3fr 1fr;
  gap: 3em;
}

.float-right {
  float: right;
  margin: 0 0 1em 1em;
}
@media screen and (max-width: 750px) {
  .float-right {
    float: none;
    margin: 1em auto;
    width: 100%;
  }
}

.mrtop-0 {
  margin-top: 0;
}

.mrtop-½ {
  margin-top: 0.5em;
}

.mrtop-1 {
  margin-top: 1em;
}

.mrtop-2 {
  margin-top: 2em;
}

.mrtop-3 {
  margin-top: 3em;
}

.mrbottom-2 {
  margin-bottom: 2em;
}

.text-align-center {
  text-align: center;
}

.text-align-justify {
  text-align: justify;
}

.text-align-right {
  text-align: right;
}

.text-small {
  font-size: 0.9em;
}

.text-large {
  font-size: 1.1em;
}

.text-xlarge {
  font-size: 1.5em;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-bold {
  font-weight: bold;
}

.block-centered {
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  width: 100%;
}

.no-border {
  border: none;
}

.scroll-margin {
  scroll-margin-top: 10vh;
}

@media screen and (max-width: 750px) {
  .desktop {
    display: none !important;
  }
}

.phone {
  display: none;
}
@media screen and (max-width: 750px) {
  .phone {
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .full-width-on-phone {
    width: 100% !important;
    box-sizing: border-box;
  }
}

.block-centered-on-phone {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media screen and (max-width: 750px) {
  .flex.flex-on-phone {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .flex.flex-on-phone > * {
    margin-top: unset;
  }
}

input, textarea {
  font-family: Kanit, sans-serif;
  font-size: 1rem;
}

textarea {
  resize: none;
}

:root {
  font-size: 13px;
}

header, section, footer {
  padding-inline: var(--std-side-padding);
}

section {
  padding-top: 3em;
  padding-bottom: 5em;
}

h2 {
  font-family: "Dancing Script";
  color: #E2A33A;
  font-size: 2.7rem;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  h2 {
    text-align: center;
    font-size: 2rem;
  }
}

h3 {
  text-transform: uppercase;
  font-size: 2.7rem;
  margin-top: 0.3em;
  font-weight: 600;
  line-height: 1.15em;
}
@media screen and (max-width: 750px) {
  h3 {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.25em;
  }
}

.btn-main {
  background-color: #E2A33A;
  padding: 1.25em 3em;
  border-radius: 2em;
  font-size: 1rem;
  box-shadow: 0 0 5px 0 rgba(119, 119, 119, 0);
  transition: all 0.2s;
}
@media screen and (max-width: 750px) {
  .btn-main {
    width: 100%;
  }
}

.btn-main:hover {
  scale: 1.01;
  box-shadow: 0 0 5px 0 rgba(119, 119, 119, 0.6666666667);
}

p {
  line-height: 1.75em;
}

header {
  background: url("assets/img/band-dented-up.png") no-repeat bottom center/contain, url("assets/img/bg-header-desktop.webp") no-repeat 70% top/cover;
  padding-top: 1em;
  padding-bottom: 4em;
  position: relative;
}
@media screen and (max-width: 750px) {
  header {
    min-height: 700px;
    background: url("assets/img/band-dented-up.png") no-repeat bottom center/contain, url("assets/img/bg-header-mobile.webp") no-repeat center 70%/cover;
  }
}
header #site-name {
  color: #E2A33A;
  font-variant: small-caps;
  font-size: 2.5rem;
}
header #site-name .text-large {
  font-size: 1.3em;
}
@media screen and (max-width: 750px) {
  header #site-name {
    text-align: center;
    font-size: 2rem;
  }
}
header h1 {
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 4.5rem;
  max-width: 500px;
  margin: 2.2em 0 2.5em;
  line-height: 1.15em;
}
@media screen and (max-width: 750px) {
  header h1 {
    font-size: 2.8rem;
    text-align: center;
    max-width: none;
    margin: 1em 0;
  }
}
header .search-bar {
  border: 1px solid #E2A33A;
  padding: 1.5em 4em;
  border-radius: 0.5em;
  position: absolute;
  width: calc(100% - 2 * var(--std-side-padding));
  background-color: white;
  box-shadow: 0 0 3em 0 rgba(136, 136, 136, 0.2);
  z-index: 2;
  transform: translateY(-20px);
}
@media screen and (max-width: 750px) {
  header .search-bar {
    padding: 1.5em 1em;
    bottom: -100px;
  }
}
header .search-bar-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-right: 1.5em;
  max-width: 160px;
}
@media screen and (max-width: 1200px) {
  header .search-bar-title {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  header .search-bar-title {
    font-size: 1.4rem;
    text-align: center;
    max-width: none;
  }
}
header .search-bar .select-categories {
  padding: 1em;
  border: 1px solid #E2A33A;
  border-radius: 2em;
  flex: 1;
}
header .search-bar .select-categories select {
  border: none;
  width: 100%;
  color: #888;
  font-weight: bold;
  background-color: transparent;
}

.section-presentation {
  padding-top: 9em;
  gap: 5vw;
  background-color: #f1f1f1;
}
.section-presentation .translated-img {
  position: relative;
  flex: 0.6;
  height: fit-content;
}
@media screen and (max-width: 750px) {
  .section-presentation .translated-img {
    max-width: 200px;
    margin: 0 auto;
  }
}
.section-presentation .translated-img img {
  border-radius: 0.25em;
  width: 100%;
}
.section-presentation .translated-img::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border: 1px solid #E2A33A;
  border-radius: 0.25em;
  transform: translate(2em, -2em);
}
@media screen and (max-width: 750px) {
  .section-presentation .translated-img::before {
    transform: translate(1em, -1em);
    border-radius: 0.5em;
  }
}
@media screen and (max-width: 750px) {
  .section-presentation p {
    text-align: center;
  }
}

section.border-top-dented {
  background: url("assets/img/band-dented-down.png") no-repeat center top/contain;
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
@media screen and (max-width: 750px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  border: 1px solid #999;
  padding: 1em 1em 2em 1em;
  border-radius: 0.25em;
  box-shadow: 0 0 3em 0 rgba(170, 170, 170, 0.2);
  background-color: white;
  transition: all 0.2s;
}
.card-img-wrapper {
  border: 1px solid #E2A33A;
  overflow: hidden;
}
.card img {
  transition: all 0.2s;
}
.card h4 {
  text-align: center;
  font-size: 1.5rem;
  margin: 1em;
}
@media screen and (max-width: 750px) {
  .card h4 {
    font-size: 1.25rem;
    margin: 1em 0;
  }
}
.card .category-link {
  display: block;
  color: #E2A33A;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: bold;
  text-align: center;
}
.card:not(.card-inactive):hover {
  background-color: #E2A33A;
}
.card:not(.card-inactive):hover img {
  scale: 1.05;
  object-fit: cover;
}
.card:not(.card-inactive):hover .category-link {
  color: #3C3E5E;
}
.card-inactive {
  background-color: #F1F1F1;
  color: #777;
}

footer {
  background-color: #F1F1F1;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 3em;
  font-size: 0.9rem;
}
footer a {
  color: inherit;
}

#legal {
  position: fixed;
  inset: 3em;
  max-width: 600px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #legal {
    max-height: 300px;
    overflow-y: scroll;
  }
}
#legal h4 {
  margin-top: 0.5em;
  border-bottom: 1px solid black;
  font-size: 1.5rem;
}

#btn-close-legal {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}

/*# sourceMappingURL=styles.css.map */
