/* ======================= */
/* FASHION BANNER STYLES  */
/* ======================= */
.fashion-banner {
  background: linear-gradient(120deg, #ffe6f0, #ffffff, #fff5fa);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* image left, content right */
  flex-wrap: nowrap;
  gap: 60px;
  text-align: left;
  border-radius: 16px;
}

/* Background Animation */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Image Styling */
.fashion-banner-image {
  flex: 1; /* take half or more space */
  display: flex;
  justify-content: center;
}

.fashion-banner-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fashion-banner-image img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Content Styling */
.fashion-banner-content {
  flex: 1; /* take half or more space */
  max-width: 600px;
}

/* Heading + Stylish Underline */
.fashion-banner-content h2 {
  font-size: 40px;
  color: #a30043;
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}

.fashion-banner-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: #a30043;
  border-radius: 2px;
}

.fashion-banner-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.fashion-banner-content a {
  display: inline-block;
  padding: 14px 28px;
  background-color: #a30043;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(163, 0, 67, 0.3);
}

.fashion-banner-content a:hover {
  background-color: #7c0032;
  box-shadow: 0 0 12px rgba(163, 0, 67, 0.6);
  transform: translateY(-3px) scale(1.02);
}

/* ======================= */
/* Responsive Styles       */
/* ======================= */
@media (max-width: 1024px) {
  .fashion-banner {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .fashion-banner {
    flex-direction: column-reverse; /* content first, image below */
    text-align: center;
    gap: 40px;
    padding: 60px 20px;
  }

  .fashion-banner-content {
    text-align: center;
  }

  .fashion-banner-content h2 {
    font-size: 30px;
  }

  .fashion-banner-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .fashion-banner-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fashion-banner {
    padding: 40px 15px;
    gap: 30px;
  }

  .fashion-banner-content h2 {
    font-size: 26px;
  }

  .fashion-banner-content p {
    font-size: 15px;
  }
  
  .fashion-banner-content a {
    padding: 12px 24px;
    font-size: 15px;
  }
}
