/* ===== Styles specific to index.html page ===== */

/* اگر بنر یا هر بخش خاص صفحه اصلی داری، اینجا تعریف کن */
.banner {
  width: 100%;
  height: 320px;
  background-image: url('../images/logooo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 20px #d4af37);
  margin: 1.5rem 0;
  border-radius: 16px;
  transition: filter 0.3s ease;
}
.banner:hover {
  filter: drop-shadow(0 0 35px #f5a623);
}

/* اگر عکس پروفایل خاصی برای index داری */
#profilePhoto {
  width: clamp(180px, 15vw, 270px);
  height: clamp(180px, 15vw, 270px);
  border-radius: 20%;
  object-fit: cover;
  box-shadow: 0 0 50px #d4af37;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  margin: 0 auto 3rem auto;
}
#profilePhoto:hover {
  transform: scale(1.1);
  box-shadow: 0 0 75px #f5a623;
}

/* ===== Responsive adjustments for index page ===== */
@media (max-width: 768px) {
  .banner {
    height: 220px;
  }
  #profilePhoto {
    width: clamp(150px, 30vw, 220px);
    height: clamp(150px, 30vw, 220px);
  }
}

@media (max-width: 400px) {
  .banner {
    height: 160px;
  }
  #profilePhoto {
    width: clamp(120px, 40vw, 180px);
    height: clamp(120px, 40vw, 180px);
  }
}
