/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Carousel Container */
.carousel-item {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for text readability */
.carousel-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* optional: tweak for brightness */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text Content */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-text {
  font-size: 1.2rem;
  color: #f1f1f1;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
}

/* Navigation Arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .carousel-item {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }
}

  
  /* Jordan Section Styles */
  .jordan-section {
    background-color: #111;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
  }
  
  .jordan-bg {
    position: absolute;
    width: 40%;
    top: 0;
    bottom: 0;
    right: 15%;
    background-color: #d32f2f;
    z-index: 0;
  }
  
  .jordan-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .jordan-text {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    max-width: 400px;
  }
  
  .jordan-btn {
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    margin-right: 1rem;
    position: relative;
    z-index: 1;
  }
  
  .btn-primary {
    background-color: #ff9800;
    border-color: #ff9800;
  }
  
  .btn-outline-light {
    color: white;
    border-color: white;
  }
  
  .jordan-shoe {
    position: relative;
    z-index: 1;
    transform: rotate(10deg);
    max-width: 100%;
    transition: transform 0.3s ease;
  }
  
  .jordan-shoe:hover {
    transform: rotate(15deg) scale(1.05);
  }
  
  .color-variants {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .color-variant {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
    padding: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  
  .color-variant:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  .color-variant img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Product Section Styles - Overrides for home page */
  .product-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff9800;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
     
    .jordan-bg {
      width: 50%;
      right: 5%;
    }
  
    .color-variants {
      flex-direction: row;
      position: relative;
      top: auto;
      right: auto;
      transform: none;
      justify-content: center;
      margin-top: 2rem;
    }
  
    .color-variant {
      margin: 0 5px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }

  
    .jordan-bg {
      width: 100%;
      right: 0;
      bottom: 40%;
      top: 0;
    }
  
    .jordan-shoe {
      margin-top: 2rem;
    }
  }
  