
/* ==========================================
   BANNER SECTION - DIOR LUXURY STYLE
   ========================================== */

.banner-dior-luxury {
  padding: 0;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.banner-dior-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
}

.banner-dior-content {
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1a1a1a;
  position: relative;
  z-index: 2;
}

.banner-dior-tag {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  width: fit-content;
}

.banner-dior-title {
  font-size: 52px;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.banner-dior-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.banner-dior-cta {
  padding: 18px 50px;
  background: transparent;
  color: white;
  border: 2px solid white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.banner-dior-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  transition: left 0.4s ease;
  z-index: -1;
}

.banner-dior-cta:hover {
  border-color: #ff8c42;
  transform: translateY(-3px);
}

.banner-dior-cta:hover::before {
  left: 0;
}

.banner-dior-cta i {
  transition: transform 0.3s ease;
}

.banner-dior-cta:hover i {
  transform: translateX(8px);
}

.banner-dior-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 107, 53, 0.1));
}

.banner-dior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.banner-dior-luxury:hover .banner-dior-image img {
  transform: scale(1.05);
}

.banner-dior-accent {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 140, 66, 0.3));
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 992px) {
  .banner-dior-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .banner-dior-content {
    padding: 60px 50px;
  }
  
  .banner-dior-title {
    font-size: 42px;
  }
  
  .banner-dior-image {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .banner-dior-content {
    padding: 50px 30px;
  }
  
  .banner-dior-title {
    font-size: 32px;
  }
  
  .banner-dior-desc {
    font-size: 14px;
  }
  
  .banner-dior-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 40px;
  }
  
  .banner-dior-image {
    min-height: 350px;
  }
}
