.white-bold a {
  color: #ffffff;   /* white text */
  font-weight: bold;
  text-decoration: none; /* optional */
}


.als-gold-gradient-text {
  background-image: linear-gradient(90deg, #938B61, #e0dcae, #d4af37, #ffd700);
  background-size: 400% 400%;
  animation: gold-sweep 4s linear infinite;
  -webkit-background-clip: text;
  color: transparent;           /* for all browsers */
  -webkit-text-fill-color: transparent; /* WebKit */
}


@keyframes gold-sweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.gold-gradient{
 	background: linear-gradient(
  90deg,
  #b8860b,   /* dark gold */
  #d4af37,   /* base gold */
  #ffd700,   /* bright gold */
  #d4af37,   /* base gold again */
  #b8860b    /* dark gold */
);   
}

.als-gold-gradient-bg {
  position: relative;
  background-color: #bcbc94; /* static base */
  overflow: hidden;
}

.als-gold-gradient-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  /* narrow shimmer band */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 45%, /* white shine */
    #ffd700 50%,                  /* bright gold */
    rgba(255, 255, 255, 0.6) 55%, /* white shine after */
    transparent 100%
  );

  background-size: 200% 100%;
  animation: gold-sweep2 10s ease-in-out infinite;
}

.als-gold-gradient-bg > * {
  position: relative;
  z-index: 1;
}


@keyframes gold-sweep2 {
  0%   { background-position: -150% 0; } /* start far left */
  10%  { background-position: 150% 0; }  /* quick sweep */
  100% { background-position: 150% 0; }  /* stay off right until next run */
}

/*Photo album collapse*/

.photo-album {
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }

  .photo-album.collapsed {
    max-height: 700px; /* Enough for ~3 rows */
  }

  .photo-album.expanded {
    max-height: 3000px; /* Enough for full height */
  }

  .more-button {
    display: block;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    color: #BCBC94;
    font-weight: bold;
    font-size: 1.1em;
    font-family:'Josefin Sans', serif;
  }

.zpform-help-text {
    color: white;
    text-align:center !important;
}

.zpform-label-container{
 	text-align:center;   
}

/*Mobile adjustments*/

@media only screen and (max-width:1000px){
	/*Remove mobile menu to center logo*/
	.theme-header.theme-header-navigation-style {
    	display: none;
	}

	/*Remove mobile padding from logo*/
	.zpheader-style-02 .theme-header .zpcontainer .theme-branding-info {
    	padding-inline-end: 0px !important;
	}

	.theme-header .zpcontainer .theme-branding-info {
		display: flex;
    	align-items: center;
    	justify-content: flex-start;
    	flex: 0 1 auto;
    	margin-inline-end: 0px !important;
    	flex-wrap: wrap;
    	min-inline-size: 1%;
    	padding-block-start: 20px;
    	padding-block-end: 20px;
    	transition: 0.2s linear;
    	padding-inline-start: 0;
    	padding-inline-end: 0;
	}
}

/*iPad Pro hero width*/
@media only screen and (min-width:1000px){
	.zprow.zprow-container.zpalign-items-center.zpjustify-content-center.zpdefault-section.zpdefault-section-bg {
    	width: 100% !important;
	}
}

/*Form text*/

.zpform-errormsg {
    text-align: center !important;
}