/* Custom CSS for Navbar */
.navbar {
    padding: 15px 0;
    background-color: #343a40;
}

.navbar-brand {
    color: hotpink;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: #000000;
}

.navbar-brand:hover {
    color: #ffffff;
}

.nav-link {
    color: #fff;
    margin: 0 15px;
}

.nav-link:hover {
    color: hotpink;
}
.search-bar {
    position: relative;
}

.search-bar input {
    width: 0;
    opacity: 0;
    transition: width 0.3s ease, opacity 0.3s ease;
    border-radius: 20px;
    border: 1px solid #fff;
    padding: 5px 20px;
    color: #fff;
    background: #495057;
}

.search-bar input:focus {
    outline: none;
    width: 200px;
    opacity: 1;
}

.search-bar .search-icon {
    color: #fff;
    cursor: pointer;
}
.search-bar .search-icon:hover {
    color: hotpink;
    cursor: pointer;
}

.modal-content {
    border-radius: 8px;
}

.product-suggestion {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.product-suggestion:hover {
    background-color: #f8f9fa;
}

.btn-add-to-cart, .btn-wishlist {
    margin-right: 5px;
}
.carousel-item {
    height: 90vh; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 20%;
    text-align: left;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 500px;
}

.carousel-caption .btn {
    padding: 10px 25px;
    font-size: 1.2rem;
    background-color:#d32d7f;
    border: none;
    border-radius: 5px;
}

.carousel-caption .btn:hover {
    background-color: hotpink;
}

.carousel-indicators [data-bs-target] {
    background-color: black;
}
.category-item {
    position: relative;
    overflow: hidden;
}

.category-item img {
    transition: transform 0.3s ease-in-out;
}

.category-item:hover img {
    transform: scale(1.1);
}

.category-item .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 50%;
}

.category-item:hover .overlay {
    opacity: 1;
}

.category-item .link-icon {
    font-size: 1.5rem;
    color: #fff;
}

.category-item h5 {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}
#best-deals {
    background: hotpink; /* Adding a dark overlay */
    color: #fff;
}

.deal-item img {
    max-height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #333;
    color: #333;
}
.card img {
    height: 200px;
    object-fit: cover;
}
.heroSection h1 span{
    color:  black;
}
.headingText
{
    text-align: center;
    font-size: 25px;
    color:  black;
    margin: 50px;
    text-transform: uppercase;
}
.aboutUs
{
width: 75%;
margin: 30px auto;
background-color: rgb(229, 253, 253);
border-radius: 30px;
padding: 50px;
text-align: center;
}
.aboutUs p
{
    font-size: 18px;
    font-weight: 400;
    color: black;
    line-height: 1.9;
    text-align: justify;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #333; /* Black background for carousel controls */
}

#product-showcase h2 {
    font-weight: bold;
    color: #333;
}
/* Newsletter Section */
.newsletter-section {
    background-color: rgb(238, 238, 255) ;
    padding: 40px 0;
}
.newsletter-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.newsletter-subheading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #666;
}

.newsletter-form .form-control {
    border-radius: 20px;
    padding: 15px;
    border: 1.5px solid black;
}

.newsletter-form .btn {
    border-radius: 10;
    padding: 15px 30px;
    background-color: black;
    color: white;
}

.newsletter-section img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* Features Section */
.features-section {
    background-color: #f9f9f9;
  }
  
  .feature-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
  }
  @media (max-width: 575px) {
    .contact .info-wrap {
      padding: 20px;
    }
  }

.bookingForm
{
    width: 40%;
    background-color:  rgb(229, 253, 253);
    padding: 20px;
    margin: 20px auto;
}

.bookingForm form
{
    width: 80%;
    padding: 10px;
    margin: auto;
}
.bookingForm form input{
    width: 100%;
    padding: 8px 10px;
}

.bookingForm form textarea{
    width: 100%;
}
  /* Footer Section */
  .footer {
    background-color: #333;
    color: #fff;
  }
  
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .social-icons i {
    font-size: 1.5rem;
  }
  
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  