.button-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.card {
  border-top: 4px solid var(--secondary-color);
  background-color: var(--hero-overlay);
}

.badge-title {
  display: inline-block;
  padding: 5px 35px;
  background-color: var(--hero-overlay);
  border: solid thin var(--accent-color);
  border-radius: 20px;
}

.logo-title{
  mask-image: url('../assets/LogoType_Transparent.png');
  margin-block: 24px;
  width: 350px;
  height: 35px;
  mask-size: cover;
  mask-position: center;
}

.logo-title-white{
  background-color: whitesmoke;
}

.logo-title-red{
  background-color: red;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.intro p {
    font-size: 1.2rem;
    color: #666;
}

.margin-0{
  margin: 0;
}

.filler{
  flex: auto;
}

.filler-4{
  flex: 0 0 4px;
}

.filler-8{
  flex: 0 0 8px;
}

.filler-16{
  flex: 0 0 16px;
}

.flex{
  display: flex;
}

.flex-column{
  display: flex;
  flex-direction: column;
}

.grid-layer{
  grid-area: 1/1;
}

.content-container{
  padding: 32px;
  max-width: 1400px;
  margin-inline: auto;
  text-align: center;
}

.width-full{
  width: 100%;
}

.height-full{
  height: 100%;
}

.width-half{
  width: 50%;
}

.width-quarter{
  width: 25%;
}

.object-cover{
  object-fit: cover;
}

.tag-pill{
  background-color: var(--hero-overlay);
  padding-block: 2px;
  padding-inline: 8px;
  border: solid thin var(--accent-color);
  border-radius: 16px;
  margin-right: 8px;
  font-size: small;
}

.align-stretch{
  align-items: stretch;
}

.button-clear{
  background-color: transparent;
  border: none;
  border-radius: 4px;
}

.button-clear:hover{
  background-color: var(--hero-overlay);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    border: solid thin var(--accent-color);
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--secondary-color);
    border: none;
}

.block{
  display: block;
}

.background-root{
  display: none;
  width: 100%;
  height: 100%;
  transition: opacity 2s ease;
  opacity: 0;
}

.background-image{
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/chureito-pagoda-2.jpg');
  background-size: cover;
}

.background-root.active {
    display: block;
    opacity: 1;
}

.dots-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px;
}

.dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 32px 4px;
  background-color: antiquewhite;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 2s ease;
}

.dot.active {
    background-color: var(--secondary-color);
}

a.clean-link{
  text-decoration: none;
  color: inherit;
}

.section-container{
 
  overflow: hidden;
}

.place-card{
  width: 120px;
  flex-shrink: 0;
  height: 150px;
  margin-inline: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.place-card.active{
  width: 335px;
  height: 450px;
}

.place-card-image-h{
  width: fit-content;
  height: 100%;
}

.place-card-image-v{
  width: 100%;
  height: fit-content;
}

.attrib-link{
  color: var(--secondary-color);
  padding: 2px 10px;
  background-color: var(--hero-overlay-thick);
}

.section-paragraph{
  padding: 40px;
}

.section-paragraph>p{
  margin-block: 32px;
}

.preview-area{
  padding-inline: 40px;
}

.padding-no-bottom{
  padding-bottom: 0;
}

.themed-item{
  flex: 0 0 64px;
  display: flex;
  align-items: flex-end;
  margin-block: 4px;
  border-radius: 6px;
  overflow: clip;
  color: var(--text-color-light);
}

.themed-thumbnail-text{
  padding: 4px;
  text-align: end;
  background-color: var(--hero-overlay-thick);
  border-top: solid thin var(--accent-color);
}

.image-container{
  width: 100%;
  height: 100%;
}

.btn-support{
  flex: 0 0 200px;
  background-color: var(--hero-overlay-thick);
  border-radius: 6px;
  border: solid thin var(--accent-color);
  margin: 8px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 24px;
}

.icon-support{
  font-size: 48px;
  padding-bottom: 14px;
}

.btn-media{
  margin-inline: 8px;
}

.btn-contact{
  background-color: var(--hero-overlay);
  padding-block: 2px;
  padding-right: 8px;
  border-radius: 6px;
  border: thin solid;
}

.pointer{
  cursor: pointer;
  transition: 0.6s ease;
}

.pointer:hover{
  scale: 1.05;
}

.height-limit{
  min-height: 945px;
}

.flex1{
  flex: 1;
}

.flex2{
  flex: 2;
}

.flex3{
  flex: 3;
}

.flex-dynamic{
  flex: 1 1 0;
}

.min-content-width{
  max-width: min-content;
}

.site-map{
  display: flex;
  flex-direction: column;
  flex: 0 0 180px;
  padding-top: 65px;
  text-align: end;
}

.search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background: var(--hero-overlay); /* Subtle background */
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* The actual input field */
.search-input {
  width: 0;
  border: none;
  outline: none;
  background: transparent;
  transition: width 0.3s ease;
  padding: 0;
  color: inherit;
}

/* The Icon */
.fa-magnifying-glass {
  cursor: pointer;
  font-size: 1.2rem;
  padding-left: 5px;
}

/* When the wrapper is active */
.search-wrapper.active {
  /*background: rgba(255, 255, 255, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.3);*/
  background: var(--hero-overlay);
  border: solid thin var(--accent-color);
}

.search-wrapper.active .search-input {
  width: 200px; 
  padding-right: 10px;
}

.w-350{
  width: 350px !important
}

.hero-box{
  background-color: var(--hero-overlay);
  border-radius: 8px;
  border: solid thin var(--accent-color);
  padding: 8px;
}

.attribution-item{
  height: 140px;
}

.info-section{
  text-align: start;
}

.gap-bottom-8{
  margin-bottom: 8px;
}

.image-list{
  overflow-y: auto;
}

.image-preview{
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.article-card{
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.article-card h5,.article-card i,.article-card a{
  background-color: var(--hero-overlay-thick);
  font-weight: bold;
  color: var(--text-color-light);
  padding: 8px; 
}

.article-card i{
  text-align: start;
  font-weight: 600;
}

.article-card a{
  border: solid thin var(--accent-color);
}