/*!****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/main.scss ***!
  \****************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Georama:wght@700&family=Great+Vibes&family=Julius+Sans+One&family=Roboto:wght@300;400;500&family=Trirong:wght@300&display=swap);
/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/main.scss (1) ***!
  \********************************************************************************************************************************************************************/
@charset "UTF-8";
dialog {
  border: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  background: #39473f;
  color: #fff;
  width: calc(100% - 40px);
  max-width: 720px;
  padding: 60px 80px; }
  dialog[open] {
    animation: dialoganimation 0.5s ease forwards; }
    dialog[open]::backdrop {
      cursor: pointer;
      animation: backdropanimation 0.5s ease forwards; }
    dialog[open].close {
      animation: dialoganimation-reverse 0.5s ease forwards; }
      dialog[open].close::backdrop {
        cursor: default;
        animation: backdropanimation-reverse 0.5s ease forwards; }
  dialog h2 {
    color: #fff;
    margin: 20px 0; }
  @media (max-width: 600px) {
    dialog {
      padding: 40px 20px; } }

@keyframes dialoganimation {
  from {
    translate: 0 25%;
    scale: 0.5;
    opacity: 0; }
  to {
    translate: 0 0;
    scale: 1;
    opacity: 1; } }

@keyframes dialoganimation-reverse {
  from {
    translate: 0 0;
    scale: 1;
    opacity: 1; }
  to {
    translate: 0 25%;
    scale: 0.5;
    opacity: 0; } }

@keyframes backdropanimation {
  from {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px); }
  to {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px); } }

@keyframes backdropanimation-reverse {
  from {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px); }
  to {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px); } }

/*
font-family: 'Georama', sans-serif;
font-family: 'Great Vibes', cursive;
font-family: 'Julius Sans One', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Trirong', serif;
*/
/* CSS RESET START */
*:where(:not(html, iframe, canvas, img, svg, video, audio, dialog, st-img):not(svg *, symbol *)) {
  all: unset;
  display: revert;
  box-sizing: border-box; }

main {
  overflow: hidden; }

dialog {
  box-sizing: border-box; }
  dialog .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ceae7b;
    font: 400 32px/32px 'Roboto', sans-serif;
    cursor: pointer; }
    dialog .close:hover {
      color: #fff; }

a,
button {
  cursor: pointer; }

ol,
ul,
menu {
  list-style: none; }

strong {
  font-weight: 500; }

img {
  display: block;
  max-inline-size: 100%;
  max-block-size: 100%; }

/* CSS RESET END */
body {
  font: 300 18px/2em 'Roboto', sans-serif; }

header {
  padding: 40px 20px;
  background: #39473f top center url(../images/bg-waves.svg);
  background-size: 9vw; }
  header img {
    margin: 0 auto;
    width: 560px; }
  @media (max-width: 600px) {
    header {
      padding: 20px;
      background-size: 23vw; }
      header img {
        width: 80%; } }

footer {
  padding: 40px 20px; }
  footer > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.2em;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto; }
    @media (max-width: 600px) {
      footer > div {
        flex-direction: column; } }

h2 {
  color: #39473f;
  font: 400 32px/1.2em 'Julius Sans One', sans-serif;
  text-align: center; }
  @media (max-width: 600px) {
    h2 {
      font-size: 24px; } }

button,
dialog .stButton {
  display: block;
  margin: 0 auto;
  padding: 15px 80px;
  font: 400 18px/1em 'Roboto', sans-serif;
  letter-spacing: 0.1em;
  background: #39473f;
  border: 3px solid #ceae7b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: all 0.25s ease;
  text-align: center; }
  button:hover,
  dialog .stButton:hover {
    background: #ceae7b; }
  @media (max-width: 600px) {
    button,
    dialog .stButton {
      padding: 15px;
      width: 100%; } }

#hero {
  display: grid;
  grid-template: auto / 3fr 1fr; }
  #hero st-img:first-child {
    grid-row-start: span 2; }
    #hero st-img:first-child h1 {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
      font: 400 4vw/1em 'Julius Sans One', sans-serif; }
      #hero st-img:first-child h1 span {
        font-family: 'Great Vibes', cursive;
        font-size: 2.1em; }
  @media (max-width: 600px) {
    #hero {
      grid-template: auto / 1fr 1fr; }
      #hero st-img:first-child {
        grid-row-start: span 1;
        grid-column-start: span 2; }
        #hero st-img:first-child h1 {
          padding: 30px 20px;
          font-size: 5vw; } }

.stripes {
  height: 40px;
  background: center center repeating-linear-gradient(to right, #ceae7b, #ceae7b 15px, #fff 15px, #fff 30px); }

.text {
  display: grid;
  gap: 40px;
  padding: 80px 20px;
  max-width: 1140px;
  margin: 0 auto; }

.photorow {
  display: flex; }
  .photorow st-img {
    flex: 1; }
  @media (max-width: 600px) {
    .photorow st-img:first-child {
      display: none; } }

.blocks {
  display: grid;
  grid-template: auto / 1fr 1fr 1fr;
  gap: 2px; }
  @media (max-width: 600px) {
    .blocks {
      grid-template: auto / 1fr 1fr; } }
  .blocks > div {
    background: #ceae7b;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    font: 700 24px/1.2em 'Georama', sans-serif;
    letter-spacing: 0.2em;
    transition: all 0.5s ease; }
    @media (min-width: 601px) {
      .blocks > div:hover {
        z-index: 1;
        scale: 1.2;
        filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5)); }
      .blocks > div:nth-child(even) {
        background: #39473f; } }
    @media (max-width: 600px) {
      .blocks > div {
        font-size: 3vw;
        padding: 20px 0; }
        .blocks > div:nth-child(4n), .blocks > div:nth-child(4n + 1) {
          background: #39473f; }
        .blocks > div:last-child {
          grid-column-start: span 2; } }

.emblem {
  width: 140px;
  margin: 0 auto; }

.siteplan {
  position: relative;
  padding: 0 20px; }
  .siteplan st-img {
    max-width: 1280px;
    margin: 0 auto; }
    .siteplan st-img:before {
      content: '';
      position: absolute;
      left: -50vw;
      top: 10%;
      width: 200vw;
      height: 80%;
      background: #e4e5e6;
      z-index: -1; }
  .siteplan p {
    margin: 20px 0 0 0;
    text-align: center; }
  @media (max-width: 600px) {
    .siteplan p {
      font-size: 14px;
      line-height: 1.1em; } }

.location {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template: auto / 3fr 2fr;
  gap: 40px 80px;
  padding: 40px 20px 80px 20px; }
  .location > div {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    .location > div .emblem {
      width: 80px; }
  @media (max-width: 600px) {
    .location {
      grid-template: auto / 1fr; } }

.faq {
  display: grid;
  gap: 40px;
  background: #e4e5e6;
  padding: 80px 20px; }
  .faq > h2 {
    font-size: 62px; }
  .faq > div {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 70px; }
    .faq > div > div {
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: all 0.5s ease; }
      .faq > div > div > div {
        transition: all 0.5s ease;
        border-top: 0px solid #ceae7b;
        padding-top: 0px;
        display: grid;
        gap: 20px;
        overflow: hidden;
        cursor: default; }
    .faq > div:before {
      content: '+';
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #7c8070;
      color: #ceae7b;
      font: 700 32px/1em 'Roboto', sans-serif;
      border-radius: 50%;
      cursor: pointer; }
    .faq > div.active:before {
      content: '−'; }
    .faq > div.active > div {
      opacity: 1;
      grid-template-rows: 1fr; }
      .faq > div.active > div > div {
        border-top: 1px solid #ceae7b;
        padding-top: 20px; }
    .faq > div h2 {
      display: flex;
      align-items: center;
      text-align: left;
      font: 400 22px/25px 'Roboto', sans-serif;
      min-height: 50px;
      margin-bottom: 20px;
      cursor: pointer; }
  @media (max-width: 600px) {
    .faq > div {
      padding-left: 45px; }
      .faq > div :before {
        width: 30px;
        height: 30px;
        font-size: 24px; } }

.requestinfo {
  padding: 80px 20px;
  background: #39473f top center url(../images/bg-waves.svg);
  background-size: 9vw;
  color: #fff; }
  .requestinfo > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto; }
    .requestinfo > div h2 {
      color: #ceae7b; }
    .requestinfo > div p {
      margin: 0 auto; }
  @media (max-width: 600px) {
    .requestinfo {
      padding: 60px 20px;
      background-size: 23vw; } }

