/**
 * Theme Name:  Hommage Custom Theme
 * Description: Theme for Hommage Watch Russia
 *
 * Author:      Philippov Pavel
 * Author URI:  https://philippovpavel.ru
 *
 *
 * Version:     1.0.1
 */

 .foil {
  background-image: url(assets/images/texture.webp);
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: color-mix(in srgb, currentColor 35%, transparent);
  color: #FFFFFF;
}

.foil.light {
  -webkit-text-fill-color: color-mix(in srgb, currentColor 65%, transparent);
}

@media (max-width: 782px) {
	.foil-mobile {
		background-image: url(assets/images/texture.webp);
		background-size: cover;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: color-mix(in srgb, currentColor 35%, transparent);
		color: #FFFFFF;
	}

	.foil-mobile.light {
		-webkit-text-fill-color: color-mix(in srgb, currentColor 65%, transparent);
	}
}

.paralax > section.paralax__section {
	position: relative;
	/* min-height: 100vh; */
}

.paralax__section.has-veil::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--wp--preset--color--custom-dark);
  opacity: var(--veil-opacity, 0);
  pointer-events: none;
}