:root {
  --cl-black: #000000;
  --cl-white: #ffffff;
  --cl-accent: #FAF2F0;
  --cl-accent-dark: #542A24;
  --cl-bg-1: #E5EEED;
  --cl-bg-2: #FAF4EB;
  --cl-bg-3: #F9E9E4;
  --fs-h1: clamp(2.6rem, 5vw, 3.2rem);
  --fs-h2: 2.4rem;
  --fs-h3: 2.1rem;
  --fs-h4: 1.8rem;
  --fs-text: 1.6rem;
  --fs-s: 1.4rem;
  --fs-xs: 1.2rem;
  --line-height: 1.5;
}

.container {
  max-width: 132rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.6rem;
  }
}
@media (min-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--fs-text);
  line-height: var(--line-height);
  font-weight: 300;
  color: var(--cl-black);
  background-color: var(--cl-white);
  letter-spacing: 2.21%;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  font-size: var(--fs-h1);
  margin: 3rem auto;
  font-weight: 300;
}

h2 {
  font-size: var(--fs-h2);
  text-transform: uppercase;
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin: 1.25rem 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

#header {
  padding: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header img {
  display: block;
  max-width: 10.5rem;
}

.btn-wrapper {
  margin: 3rem 0 10rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.btn, .button, input[type=button], input[type=submit], button[type=submit] {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-text);
  border-radius: 0.5rem;
  padding: 0.8rem 1.6rem;
}

.btn-primary, input[type=button], input[type=submit], button[type=submit] {
  background-color: var(--cl-black);
  color: var(--cl-white);
  border: 0.5px solid var(--cl-black);
}

.btn-secondary {
  background-color: transparent;
  color: var(--cl-black);
  border: 0.5px solid var(--cl-black);
}

.hero {
  background-image: url("images/hero.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.hero::after {
  content: "";
  background: linear-gradient(to bottom, transparent 0%, white 100%);
  position: absolute;
  pointer-events: none;
  z-index: 1;
  display: block;
  position: absolute;
  inset: 80% 0 0 0;
}
.hero .spacer {
  display: block;
  pointer-events: none;
  height: 120vw;
  height: 120svw;
}
@media (min-width: 768px) {
  .hero .spacer {
    height: 30vw;
    height: 30svw;
  }
}
.hero .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero h1 {
    max-width: 80%;
  }
}

.event {
  margin-top: 5rem;
  margin-bottom: 5rem;
  overflow-x: clip;
}
@media (min-width: 768px) {
  .event__intro {
    margin-left: 66.6666666667%;
  }
}
@media (min-width: 768px) {
  .event__intro-bottom {
    margin-left: 8.3333333333%;
    margin-right: 33.3333333333%;
  }
}
.event .image {
  margin: 5rem auto;
  max-width: 94rem;
}
.event__footer {
  margin: 3rem 0 10rem 0;
  font-size: var(--fs-s);
}
.event__footer p:nth-child(1),
.event__footer p:nth-child(2) {
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .event__footer {
    margin-left: 8.3333333333%;
    margin-right: 33.3333333333%;
  }
}
.event__details {
  position: relative;
  margin: 10rem auto 0;
  padding: 3rem;
  background-color: var(--cl-accent);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 10rem);
}
@media (min-width: 768px) {
  .event__details {
    padding: 8.3333333333%;
  }
}
@media (min-width: 768px) {
  .event__details {
    flex-direction: row;
    justify-content: center;
  }
}
.event__details h3 {
  font-weight: 300;
}
.event__details h3::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.1rem;
  background-color: var(--cl-black);
  margin: 1rem 0 2rem;
}
.event__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event__details ul li {
  padding: 0.25rem 0;
}
.event__details .cloud {
  pointer-events: none;
}
.event__details .c-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  scale: 0.7;
  transform-origin: bottom right;
  transform: translateY(50%) translateX(30%);
}
@media (min-width: 768px) {
  .event__details .c-1 {
    scale: unset;
    transform: translateY(50%) translateX(30%);
  }
}

.guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(4rem, 8vw, 10rem);
  align-items: center;
}
.guide__desc h3 span {
  display: block;
  font-size: var(--fs-s);
}
@media (min-width: 768px) {
  .guide__desc.left {
    margin-left: 10rem;
  }
}
@media (min-width: 768px) {
  .guide__desc.right {
    margin-right: 10rem;
  }
}
.guide__desc ul {
  margin-left: 3rem;
}
.guide__image {
  order: -1;
}
@media (min-width: 768px) {
  .guide__image.left {
    order: -1;
  }
}
@media (min-width: 768px) {
  .guide__image.right {
    order: 2;
  }
}
@media (min-width: 480px) {
  .guide__image {
    order: -1;
  }
}
.guide__info {
  margin: 5rem 0;
}
@media (min-width: 768px) {
  .guide__info__cols {
    margin-left: 10rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8.3333333333%;
  }
}
.guide__info__col {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .guide__info__col {
    width: 28.6666666667%;
  }
}
@media (min-width: 768px) {
  .guide__info__col.last {
    margin-left: 10rem;
  }
}

.guide-container {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.hotel {
  background-color: var(--cl-bg-1);
}
@media (min-width: 768px) {
  .hotel__desc {
    margin-left: 10rem;
  }
}
.hotel h2 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hotel h2 {
    margin-left: 10rem;
  }
}

.attractions {
  background-color: var(--cl-bg-2);
}

.shopping {
  background-color: var(--cl-bg-3);
}

.contact {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contact p {
  margin: 0.5rem 0;
}

.registration {
  position: relative;
}
.registration .cloud {
  pointer-events: none;
}
.registration .c-2 {
  position: absolute;
  left: 0;
  top: -7rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .registration .c-2 {
    left: 0;
    top: 20%;
    z-index: -1;
  }
}
.registration .c-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  transform: translateY(50%);
}

.registration {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
.registration h2 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .registration h2 {
    margin-left: 8.3333333333%;
  }
}

.register {
  position: relative;
  z-index: 10;
  background-color: var(--cl-white);
}
@media (min-width: 768px) {
  .register {
    max-width: 60%;
    margin-left: 8.3333333333%;
  }
}

.form-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.form-row-wide {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}

.form-row-special {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row-special {
    grid-template-columns: 0.5fr 1fr 1fr;
    gap: 3rem;
  }
}

.wpcf7 input[type=submit], .wpcf7 button[type=submit] {
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.wpcf7 label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
}
.wpcf7 small {
  display: block;
  font-size: var(--fs-xs);
  line-height: 1;
  margin-top: -1.5rem;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=date],
.wpcf7 select,
.wpcf7 textarea {
  margin-bottom: 2rem;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--cl-black);
  background: transparent;
  padding: 1rem 0;
  font-family: inherit;
  font-size: var(--fs-text);
  color: var(--cl-black);
  outline: none;
  transition: border-color 0.3s ease;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=date]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-bottom-color: var(--cl-accent-dark);
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 select::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 select::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.wpcf7 textarea {
  resize: vertical;
  height: 3rem;
  transition: height 0.3s ease;
}
.wpcf7 textarea:focus, .wpcf7 textarea:active {
  height: 10rem;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: var(--fs-s);
  margin-top: 0.5rem;
  display: block;
}
.wpcf7 .wpcf7-validation-errors {
  background-color: #ffe6e6;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
  font-size: var(--fs-s);
}
.wpcf7 .wpcf7-mail-sent-ok {
  background-color: #e8f5e8;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 0.5rem;
  font-size: var(--fs-s);
}
.wpcf7 .wpcf7-not-valid {
  border-bottom-color: #e74c3c !important;
}/*# sourceMappingURL=theme.css.map */