/* -------- Offer Bar -------- */
.offer-bar {
  background: linear-gradient(90deg, #d4145a, #fbb03b, #d4145a);
  color: #fff;
  font-size:18px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.offer-bar span {
  display: inline-block;
  padding-left: 100%;
  animation: offerScroll 18s linear infinite;
}

@keyframes offerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* -------- Slider Container -------- */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #000;
}

/* -------- Slides -------- */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideAnim 12s infinite;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  transition: opacity 1s ease-in-out;
}

/* Background images */
.slide:nth-child(1) { 
  background-image: url('https://pianosdubai.com/storage/piano-bg.webp'); 
  animation-delay: 0s; 
}
.slide:nth-child(2) { 
  background-image: url('https://pianosdubai.com/storage/piano-bg1.jpg'); 
  animation-delay: 4s; 
}
.slide:nth-child(3) { 
  background-image: url('https://pianosdubai.com/storage/piano-bg3.jpg'); 
  animation-delay: 8s; 
}

/* -------- Black Overlay -------- */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* -------- Slide Content -------- */
.content {
  position: relative;
  color: #fff;
  max-width: 500px;
  z-index: 2;
  animation: textAnim 12s infinite;
}

.slide:nth-child(2) .content { animation-delay: 4s; }
.slide:nth-child(3) .content { animation-delay: 8s; }

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffcf00;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ffffffd9;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #ff8c00, #ff0080);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #ff0080, #ff8c00);
}

/* -------- Side Text -------- */
.side-text {
  position: absolute;
  right: 5%;
  top: 30%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffcf00;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0;
  animation: sideAnim 12s infinite;
  text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.slide:nth-child(2) .side-text { animation-delay: 4s; }
.slide:nth-child(3) .side-text { animation-delay: 8s; }

/* -------- Keyframes -------- */
@keyframes slideAnim {
  0%, 33.33%, 100% { opacity: 0; transform: translateX(10%); }
  5%, 28% { opacity: 1; transform: translateX(0); }
}

@keyframes textAnim {
  0%, 33.33%, 100% { opacity: 0; transform: translateY(-40px); }
  7%, 25% { opacity: 1; transform: translateY(0); }
}

@keyframes sideAnim {
  0%, 33.33%, 100% { opacity: 0; transform: translateX(60px); }
  8%, 25% { opacity: 1; transform: translateX(0); }
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .content h1 { font-size: 2.2rem; }
  .content p { font-size: 1.2rem; }
  .side-text { display: none; }
  .slider { height: 60vh;}
}

@media (max-width: 480px) {
  .content { max-width: 90%; }
  .content h1 { font-size: 2.2rem; }
  .content p { font-size: 1.2rem; }
  .slider { height: 60vh;}
}


.tp-header-main {
 padding-bottom: 7px; 
  padding-top: 7px; 
}
.tp-category-menu-btn {
    background-color:#fff;
  color:#000;
}