:root {
    --font-family: "Delicious Handrawn", cursive;
    --font-weight: 400;
    --font-style: normal;

    --font-family-2: "Protest Riot", sans-serif;
}

body {
    overflow-x: hidden;
    width: 100vw;
}


h1 {
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
}

@keyframes pulse-color {
  0%, 100% {
    background-color: #ac7e50;
    box-shadow: 0 0 0 0 rgba(172, 126, 80, 0.7);
  }
  50% {
    background-color: #c89860;
    box-shadow: 0 0 0 10px rgba(172, 126, 80, 0);
  }
}

.btn-primary {
  background-color: #ac7e50;
  border-color: #ac7e50;
  animation: pulse-color 2s ease-in-out infinite;
}

.btn-primary:hover {
  background-color: transparent;
  border-color: #ac7e50;
  color: #ac7e50;
  animation: none;
}



.card {
    /* background-color: rgba(255, 255, 255, 0.801); */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding-bottom: 10px;
    border-color: #ac7e50;
}

.background-image-logo {
    padding: 0;

    height: 100vh;
    width: 100vw;
    background-image: url("../assets/images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: content-box;
}


.boka {
    mask-image: linear-gradient(to top, transparent 0%, black 40%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 40%);
}

a {
    color: #ab7f51;
}

.when {
    font-family: var(--font-family-2);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
}

.map {
    border: #ab7f51 1px solid;
    border-radius: 21px;
    min-height: 200px;
    height: 50vh;
    padding: 0;
}

iframe {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border-radius: 20px;

}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out;
  }

  #loadingOverlay.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  #loadingVideo {
    width: 50px;
    height: auto;
  }

  #content {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 1s ease-out;
    width: 100vw;
  }

  #content.fade-in {
    opacity: 1;
    margin: 0;
    padding: 0;
    width: 100vw;
  }

#arrow {
    position: absolute;
    bottom: 5vh;
    margin-left: 50%;
    transform: translateX(-50%);
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in, transform 1s ease-in;
}

.info-popup {
    transition: opacity 500ms ease-in-out;
    display: none;
    opacity: 0;
}

.info-popup-op {
    opacity: 1 !important;
}

.info-more-btn {
    margin-top: 20px;
    transition: all 300ms;
}
.info-more-btn:hover {
    background-color: #ab7f51;
    opacity: 80%;
}

.info-card {
    display: flex;
    justify-content: center;
}
.subtitle {
    padding: 0;
    margin-top: -5px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

