@keyframes moveRightUp {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -10px);
    }
    100% {
      transform: translate(0, 0); 
    }
  }
  

/* Keyframe animasyonları */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9); /* Başlangıçta biraz küçük */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* Sonunda normal boyuta gelsin */
    }
}

#send-response-success , #send-response-unsuccessful{
  display: none;
}
#phoneNumber {
  padding: 8px 50px;
}
#home-banner {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 744px;
  bottom: 75px;
  margin-bottom: 40px;
}

#home-banner .home-banner-outer {
  position: absolute;
  right: 0;
  top: 0;
}

#home-banner .home-banner-outer video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#home-banner .home-banner-outer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#home-banner .banner-content {
  padding-top: 165px;
  position: relative;
  z-index: 10;
}
#home-banner .banner-exhibition {
  background: #F3F3F3;
  align-items: center;
  width: 57%;
  gap: 15px;
  /* color: #000; */
}
#home-banner .banner-exhibition a{
  color: #000;
}
#home-banner .banner-exhibition a .title {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.7;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}
#home-banner .banner-exhibition a .description {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
}
/* about */
#home-about {
  margin-bottom: 80px;
}
/* piece */
#home-piece {
  margin-bottom: 120px;
}
#home-piece .section-title-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
#home-piece .piece-tab-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
#home-piece .piece-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
    border-radius: 50px;
}

#home-piece .piece-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid #000;
}

#home-piece .piece-tab-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

#home-piece .piece-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

#home-piece .piece-tab-btn:hover {
    border-color: #000;
    color: #000;
    transform: translateY(-2px);
}

#home-piece .piece-tab-btn.active {
  border-color: #000;
  transform: scale(1.05);
}

/* ========================================
   Tab Content & Animation
   ======================================== */

#home-piece .piece-tab-content {
    position: relative;
    min-height: 400px;
}

#home-piece .piece-tab-pane {
    animation: fadeInContent 0.4s ease;
    display: none;
}

#home-piece .piece-tab-pane.active {
    display: block !important;
    animation: fadeInContent 0.4s ease;
}

#home-piece .piece-item-card:hover .piece-zoom-btn {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.3);
}

#home-piece .piece-item-content {
    padding: 16px;
}

#home-piece .piece-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

#home-piece .piece-item-desc {
  color: #000;
  font-size: 16px;
  margin-top: 10px;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   WOW Animation Integration for Piece
   ======================================== */

.wow.fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

/* art gallery */

#home-art-gallery {
    margin-bottom: 80px;
}

#home-art-gallery .section-title-head {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

#home-art-gallery .section-title-head .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

#home-art-gallery .section-title-head .section-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Gallery Layout
   ======================================== */

#home-art-gallery .gallery-layout-wrapper {
    width: 100%;
}

#home-art-gallery .gallery-item {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

#home-art-gallery .gallery-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
}

#home-art-gallery .gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#home-art-gallery .gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

/* Gallery Overlay */
#home-art-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#home-art-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#home-art-gallery .gallery-overlay i {
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
}

#home-art-gallery .gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

#home-art-gallery .gallery-layout-row .col-lg-7 .col-lg-4 {
  padding: 5px;
  margin-bottom: 10px;
}