/* Body background */
body {
  background-color: #e6ccf2; /* Light purple */
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Header styling */
header {
  background-color: #d1b3e0;
  padding: 30px 0 20px;
}

/* Title */
h1 {
  margin: 0 0 15px;
  color: #4b0082;
}

/* Navigation buttons */
.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.nav-button {
  padding: 10px 18px;
  background-color: #a64ca6;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #9932cc;
}

/* Shop Now button in main */
.shop-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #a64ca6;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.shop-button:hover {
  background-color: #9932cc;
}

/* Sections */
section {
  margin: 40px 0;
  padding: 0 20px;
}

/* Carousel wrapper */
.carousel {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Carousel container */
.carousel-container {
  display: flex;
  animation: scrollCarousel 15s linear infinite;
}

/* Carousel images */
.carousel-image {
  width: 800px;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
  border-right: 2px solid #fff;
}

/* Animation for auto-scrolling */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1600px);
  }
}

/* Form styling */
form {
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

form label {
  display: block;
  margin: 10px 0 4px;
  font-weight: bold;
}

form input, form select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .carousel-image {
    width: 100%;
    height: auto;
  }

  .nav-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .shop-button {
    width: 80%;
    font-size: 1rem;
  }

  form {
    width: 90%;
  }
}


/* Welcome Section */
.welcome-heading {
  color: #4b0082;
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

.welcome-text {
  color: #4b0082; /* Dark purple */
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

