/* GENEL HERO */
.hero-parallax{
  width:100%;
  height:600px;
  display:flex;
  background:linear-gradient(to bottom,#f6f6f6 60%,#dfe5ec 100%);
  overflow:hidden;
}

/* SOL ALAN */
.hero-left{
  width:35%;
  padding:100px 60px;
  position:relative;
}

.hero-left h1{
  font-size:58px;
  font-weight:600;
  line-height:1.1;
  color:#2f5d8c;
}

.hero-left h1 span{
  font-weight:400;
}

.hero-social{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.hero-social a{
  width:45px;
  height:45px;
  border:1px solid #d9dee5;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2f5d8c;
  font-size:18px;
  transition:.3s;
}

.hero-social a:hover{
  background:#2f5d8c;
  color:#fff;
}

/* SAĞ SAHNE */
.hero-stage{
  width:65%;
  position:relative;
  display:flex;
  align-items:center;
}

/* KÜÇÜK PANELLER */
.hero-panels{
  position:absolute;
  left:0;
  height:100%;
  display:flex;
  align-items:center;
  z-index:3;
}

.hero-panel{
  width:280px;
  height:520px;
  overflow:hidden;
  transform:skewX(-12deg);
  margin-right:-70px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  transition:.6s ease;
}

.hero-panel img{
  width:120%;
  height:100%;
  object-fit:cover;
  transform:skewX(12deg);
  transition:.6s ease;
}

/* BÜYÜK PANEL */
.hero-big-panel{
  position:absolute;
  right:0;
  width:100%;
  height:100%;
  overflow:hidden;
  z-index:1;
}

.hero-big-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

/* -------- HOVER ANİMASYONU -------- */

.hero-parallax:hover .panel-1{
  transform:skewX(-12deg) translateX(-40px);
}

.hero-parallax:hover .panel-2{
  transform:skewX(-12deg) translateX(0px);
}

.hero-parallax:hover .panel-3{
  transform:skewX(-12deg) translateX(40px);
}

.hero-parallax:hover .hero-big-panel img{
  filter:brightness(.85);
}
