
/* fotogalerie */
.gallery-hero h1{
font-size:90px;
text-align:center;
}
.gallery-grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit, minmax(280px,1fr));
  gap:30px;
  padding:60px 80px;
}

.gallery-item{
  background:#151515;
  border:1px solid #222;
  overflow:hidden;
  transition:0.3s;
}

.gallery-item:hover{
  transform:translateY(-6px);
  border-color:#a61d1d;
}

.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  filter:grayscale(100%);
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.05);
  filter:grayscale(20%);
}

.gallery-info{
  padding:20px;
color:#d0d0d0;
}

.gallery-info h3{
  font-size:24px;
   color:#d0d0d0;

}
.gallery-info p{
  color:#999;
  line-height:1.5;

}

/*osudy*/

.hero3{
    background-image: url("parasutiste.png");
    height:80vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:80px;
}
.hero3 h2{
    font-size:90px;
    line-height:0.9;
    margin-bottom:20px;
    color:white;
}
.hero3 p{
   font-size:29px;
   color:#d0d0d0;
}
/*zdroje*/

/* HERO */

.hero-zdroje{
    height:55vh;

    background:
    linear-gradient(rgba(0,0,0,0.7),
    rgba(0,0,0,0.85)),
    url("anthropoid2.jpeg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content h2{
    font-size:90px;
    letter-spacing:8px;
    margin-bottom:20px;
  
}

.hero-content p{
    font-size:24px;
    color:#cfcfcf;
    max-width:800px;
    line-height:1.7;
}

.zdroje-section{
    padding:100px 80px;
    display:flex;
    justify-content:center;
}

.zdroj-box{
    width:100%;
    max-width:900px;
    background:#0b0b0b;
    border:1px solid #222;
    padding:60px;
}

.zdroj-box h3{
    font-size:40px;
    letter-spacing:4px;
    margin-bottom:20px;
}

.line{
    width:100px;
    height:4px;
    background:#8b1e1e;
    margin-bottom:40px;
}

.zdroj-box a{
    display:block;
    text-decoration:none;
    color:#d5d5d5;
    font-size:22px;
    padding:22px 0;
    border-bottom:1px solid #1f1f1f;
    transition:0.3s;
}

.zdroj-box a:hover{
    color:#d63031;
    transform:translateX(10px);
}

