
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


main {
  flex: 1;
  padding-top: 70px; 
}


.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1020;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

.nav-vl {
  width: 1px;
  height: 24px;
  background-color: #ccc;
  margin: 0 10px;
}

.nav-link i {
  margin-right: 6px;
}


.nav-link:hover {
  color: #b03060; 
  transition: color 0.3s ease;
}
.nav-link.active{
  color: #761471;
  font-weight: bold;
  border-bottom: 2px solid #c16596;
}

.search-input {
  border-radius: 20px;
  padding-left: 15px;
}


.search-icon-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b03060;
}

.hero-slide {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  color: rgb(193, 27, 27);
  text-align: center;
}

.hero-slide h1 {
  font-family: 'Playfair Display', serif;
}


body {
  
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; 
  background-repeat: no-repeat;
  color: #9b3b81;
}

body::before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  background-image:  url('images/banner.jpg');
  filter: brightness(70%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: -1;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7c4f7c; 
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color:  #7c4f7c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subheading {
  font-size: 1.1rem;
  color: #3a3939;
  margin-bottom: 2rem;
}

.theme-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}

.theme-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px;
  filter: brightness(70%); 
}


.theme-wrapper:hover .theme-img {
  filter: brightness(100%);
  transform: scale(1.05); 
}

.theme-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  background: rgba(0, 0, 0, 0.3); 
  text-align: center;
  padding: 1rem;
  opacity: 1; 
  pointer-events: none; 
}

.card-img-top {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.testimonial-section {
  background-color: #f70aff;
  padding: 50px 20px;
}
blockquote {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  color: #444;
}

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
}

.icon-bar a {
  font-size: 1.2rem;
  color: #b91919;
  transition: color 0.3s ease;
}

.icon-bar a:hover {
  color: #e91e63;
}


.card {
  border: none;
  border-radius: 60px;
  box-shadow: 0 4px 16px rgba(146, 31, 111, 0.05);
  transition: transform 0.3s ease;
  background-color: rgb(181, 157, 157);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);

}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size:larger;
  color: #761471;
  justify-content: space-between;
  align-items: center;
}

.card img {
  transition: transform 0.3s ease;
  filter: brightness(90%);
}

.card:hover img {
  transform: scale(1.05); 
}

.carousel-item {
  transition: opacity 1s ease-in-out;
}


.btn-custom {
  background-color: #b03060;
  color: #b74141;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  transition: background-color 0.3s ease;
}
.btn-custom:hover {
  background-color: #8b2252;
}

.footer {
  background-color: #5f6a75;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #e98351;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #e07510;
}

.social-icon {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #7215ab;
}

.city-row {
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  font-size: 14px;
  color: #ccc;
}

.city-row span {
  letter-spacing: 1px;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .product-img {
    height: 300px;
  }
  .card-img-top {
    height: 300px;
  }
}