@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  -webkit-font-smoothing: antialiased;
}

body, input, button {
  font: 16px 'Roboto', sans-serif;
}

.lodgings-link {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;

  color: white;
  background-color: #5C98F5;
  -webkit-transition: background-color 200ms linear, box-shadow 200ms linear, -webkit-transform 150ms linear;
  transition: background-color 200ms linear, box-shadow 200ms linear, -webkit-transform 150ms linear;
  transition: background-color 200ms linear, box-shadow 200ms linear, transform 150ms linear;
  transition: background-color 200ms linear, box-shadow 200ms linear, transform 150ms linear, -webkit-transform 150ms linear;
}

.lodgings-link:hover {
  background-color: #5893eb;
  box-shadow: 2px 2px 4px #00000020;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.lodgings-link.alt {
  color: white;
  border: 1px solid white;
  background-color: transparent;
  margin-bottom: 30px;
}
.lodgings-link.alt:hover {
  color: #5C98F5;
  background-color: white;
}

.online-link {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;

  color: white;
  background-color: #01b474;
  -webkit-transition: background-color 200ms linear, box-shadow 200ms linear, -webkit-transform 150ms linear;
  transition: background-color 200ms linear, box-shadow 200ms linear, -webkit-transform 150ms linear;
  transition: background-color 200ms linear, box-shadow 200ms linear, transform 150ms linear;
  transition: background-color 200ms linear, box-shadow 200ms linear, transform 150ms linear, -webkit-transform 150ms linear;
}

.online-link:hover {
  background-color: #009761;
  box-shadow: 2px 2px 4px #00000020;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.online-link.alt {
  color: white;
  border: 1px solid white;
  background-color: transparent;
  margin-bottom: 30px;
}
.online-link.alt:hover {
  color: #01b474;
  background-color: white;
}

/**
 * HEADER
*/

header {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

header h1 {
  max-width: 60%;
  align-self: center;
  margin-top: 30px;
}

header h1 img {
  width: 100%;
}

/* header h1 > div {
  text-align: center;
} */

@media screen and (min-width: 768px) {
  header {
    background-attachment: fixed;
    /* height: 100vh; */
  }
  header h1 {
    max-width: 40%;
  }
}

/**
 * FORM CONTACT
*/

.form-contact {
  padding: 30px 0;
}

.form-contact .form-box {
  padding: 30px;
  box-shadow: 6px 6px 12px #00000015;
  border-radius: 8px;
  background-color: #FFFFFF;
}

.form-contact .title {
  font-size: 24px;
  color: #1c1c1d;
  font-weight: 600;
  padding-bottom: 15px;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.form-contact form p {
  margin-bottom: 15px;
}

.form-contact form p:last-of-type {
  margin: 0;
}

.form-contact form p label {
  font-size: 16px;
  color: #1c1c1d;
}

.form-contact form p input {
  position: relative;
}

.form-contact form p input:focus {
  border: 1px solid #5C98F550;
}

.form-contact form p input, .form-contact form p textarea {
  -webkit-appearance: none;
  margin-top: 2px;
  background-color: white;
  border: 1px solid #eee;
  padding: 7px;
  border-radius: 3px;
  width: 100%;
}

.form-contact form p textarea {
  font-size: 16px;
  resize: vertical;
}

.form-contact form p button {
  float: right;
  border-radius: 4px;
  padding: 10px 15px;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  background-color: #01b474;
  -webkit-transition: box-shadow 200ms linear;
  transition: all 200ms linear;
  cursor: pointer;
}

.form-contact form p button:hover {
  background-color: #009761;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
}

.form-contact form p #invalid-phone {
  font-size: 12px;
  color: red;
}

.form-contact form p.phone-container {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

.form-contact form p.phone-container label {
  width: 100%;
}

.form-contact form p.phone-container input:first-of-type {
  width: calc(20% - 7.5px);
  margin-right: 15px;
}

.form-contact form p.phone-container input:last-of-type {
  width: calc(80% - 7.5px);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto; 
}

/**
 * FOOTER
*/

footer {
  padding: 30px 0;
  background-color: #4575bd;
  text-align: center;
}

footer .text {
  color: white;
}

/**
 * NOTIFICATION
*/

.notification {
  max-width: 300px;
  padding: 10px 20px;
  position: fixed;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
  color: white;
  z-index: 5;
}

.notification.success {
  background-color: #68cc68;
}

.notification.error {
  background-color: #e04545;
}

/**
 * SPINNER
*/

.box-spinner {
  position: fixed;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.box-spinner .spinner {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-left-color: #5C98F5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.message-whatsapp {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 0;
  width: 100%;
  max-width: 60px; 
}

.message-whatsapp a {
  text-decoration: none;
  -webkit-animation-name: bounce-2;
          animation-name: bounce-2;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 8px;
  box-shadow: 6px 6px 12px #00000015;
  color: #1c1c1e;
  background-color: white;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  max-width: 500px;
  padding: 15px;
  text-align: center; 
}