/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.dc-hero{
  position: relative;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.dc-hero .dc-particles{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.2) blur(0.0px);
}

/* obsah hero nad particles */
.dc-hero > *{
  position: relative;
  z-index: 1;
}

/* žádné tónování – jen čitelnost (průhledná mlha) */
.dc-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 45%,
    rgba(255,255,255,.86) 0%,
    rgba(255,255,255,.95) 45%,
    rgba(255,255,255,1) 75%);
  z-index:0;
  pointer-events:none;
}

/* Antigravity fade k okrajům */
.dc-hero .dc-particles{
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, #000 46%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, #000 46%, transparent 78%);
}

@media (prefers-reduced-motion: reduce){
  .dc-hero .dc-particles{ display:none; }
}