body {
  background: url('/media/register.jpg') no-repeat cover;
  background-size: cover;
  background-position: left;
  height: 100vh; 
  position: relative;
}
/**********************************************************************Hero*/

/* General Hero Section Styling */
.hero-section {
  background: url('/media/banner1.jpg') no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 100vh; 
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.hero-content {
  margin-top: auto; 
  margin-bottom: auto; 
}

/* Hero Button */
.btn-hero {
  background-color: #b57edc;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 25px 5px 25px 5px;
  padding: 12px 30px;
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin-top: 23rem; 
  position: absolute;
  z-index: 10;
  top: 60%; /* Center vertically */
  right: 20%
}

.btn-hero:hover {
  background-color: #a56cc1;
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-decoration: none;
}

/******************************************************************** Media Queries */

/* Large screens (min-width: 1200px) */
@media (min-width: 1200px) {
  .hero-section {
    height: 80vh; 
    padding: 6rem 2rem;
  }

  .btn-hero {
    font-size: 1.3rem;
    padding: 12px 35px; 
    margin-top: 2rem;
  }
}

/* Medium screens (max-width: 992px) */
@media (max-width: 992px) {
  .hero-section {
    height: 70vh;
    padding: 4rem 1.5rem;
    margin-top: 2rem; 
  }

  .btn-hero {
    font-size: 1rem;
    padding: 8px 20px;
    margin-top: 110px; 
  }
}

/* Small screens (max-width: 768px) */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh; 
    padding: 3rem 1rem;
  }

  .btn-hero {
    font-size: 0.9rem;
    padding: 8px 15px;
    margin-top: 0px; 
  }
}

/* Extra Small screens (max-width: 576px) */
@media (max-width: 576px) {
  .hero-section {
    height: 50vh; 
    padding: 2rem 1rem;
  }

  .btn-hero {
    font-size: 0.8rem;
    padding: 6px 12px; 
    margin-top: 110px;
    border-radius: 15px 5px 15px 5px; 
  }
}

/* Ultra Small screens (max-width: 400px) */
@media (max-width: 400px) {
  .hero-section {
    height: 40vh; 
    padding: 1.5rem 0.5rem;
  }

  .btn-hero {
    font-size: 0.5rem;
    padding: 5px 10px;
    margin-top: 4rem;
    border-radius: 12px 4px 12px 4px; 
  }
}


/**********************************************************************Navbar and Footer*/
.petalia-logo {
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem; 
  color: #6a0dad; 
  letter-spacing: 1px;
} 

/* Footer */
.bg-custom-footer {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('/media/register.jpg') no-repeat center / cover;
  color: #ffffff;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-custom-footer h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.bg-custom-footer a {
  color: #ffffff;
  text-decoration: none;
}

.bg-custom-footer a:hover {
  color: #b57edc;
  text-decoration: underline;
}

.social-icon {
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #b57edc;
}

#newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

#newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#newsletter-form .btn-light {
  background-color: #b57edc;
  border: none;
  color: #000000;
  transition: background-color 0.3s;
}

#newsletter-form .btn-light:hover {
  background-color: #c6b5d3;
}

.bg-custom-footer hr {
  border-color: rgba(255, 255, 255, 0.3);
}

.bg-custom-footer .text-center p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/************************************************************************Products****/
.btn-products {
  display: inline-block;
  background-color: #b57edc; 
  color: #fff; 
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 25px 5px 25px 5px; 
  padding: 10px 30px; 
  text-decoration: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 
  transition: all 0.1s ease-in-out;
  margin-top: 190px;

}
.card-img-top {
  width: 100%;
  height: 390px; 
  object-fit: cover; 
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.product-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .card-body {
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h5, .product-card p {
  margin: 0; 
}

.category-card {
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
}

.featured-product {
  transition: transform 0.3s ease;
}

.featured-product:hover {
  transform: scale(1.03);
}

/* Full-width background for the section */
.full-width-bg {
  background: linear-gradient(145deg, #f3e8fa, #e8d4f0); 
  padding: 4rem 0; 
  width: 100%;
}
.container {
  max-width: 1140px; 
  margin: 0 auto; 
  padding: 0 15px; 
}

.lavender-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6a4f99;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

.section-description {
  font-size: 1.1rem;
  color: #7a7099;
  margin-bottom: 1.5rem;
  font-style: italic;
}


.lavender-title:hover {
  color: #9b6eaf;
  transition: color 0.3s ease;
}

.btt-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #d1b3d8; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btt-button:hover {
    background-color: #b89ac8; 
    transform: scale(1.1); 
}

.btt-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Styling for the icon */
.btt-link i {
    font-size: 1.5rem; 
    color: #4c3a63; 
}
/* Styling for the Back to Top button */
.btt-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #d1b3d8; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.btt-button:hover {
  background-color: #b89ac8; 
  transform: scale(1.1); 
}

.btt-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btt-link i {
  font-size: 1.2rem; 
  color: #4c3a63; 
  transition: color 0.3s ease;
}

.btt-button:hover i {
  color: #ffffff; 
}

/**************************************************************Allauth form */

.allauth-form-inner-content p {
  margin-top: 1.5rem; 
  color: #6c757d; 
}

.allauth-form-inner-content input {
  border-color: #000;
  border-radius: 0;
}

.allauth-form-inner-content label:not([for='id_remember']) {
  display: none;
}

.allauth-form-inner-content input::placeholder {
  color: #aab7c4;
}

.allauth-form-inner-content button,
.allauth-form-inner-content input[type='submit'] {
/* btn */
display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #000;
  border: 1px solid #000;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;

  /* standard bootstrap btn transitions */
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.allauth-form-inner-content button:hover,
.allauth-form-inner-content input[type='submit']:hover {	
color: #fff;
  background-color: #222;
  border-color: #222;
}

.allauth-form-inner-content a {
color: #17a2b8; 
}

/*********************************************************************Toasts*/
.toast {
  min-width: 300px;
  background-color: #f9f9ff; 
  color: #333333; 
  border: 2px solid #6a4cad; 
  border-radius: 0.5rem; 
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); 
  overflow: hidden; 
}

.toast-header {
  background-color: #f9f9ff; 
  color: #6a4cad; 
  font-weight: bold;
  border-bottom: 1px solid #6a4cad; 
  padding: 0.5rem 1rem; 
  border-radius: 0.5rem 0.5rem 0 0; 
}

.toast-body {
  font-size: 1rem; 
  padding: 15px 20px; 
  line-height: 1.5; 
  color: #333333; 
}

.toast .close:hover {
  opacity: 1; 
}

/**************************************************************User and shopping bag icons*/
/* User Icon Styling */
.user-icon {
  color: #333; 
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.user-icon:hover {
  color: #bc59b7; 
  text-decoration: none;
}

.icon-wrapper {
  text-align: center;
}

.icon-circle {
  background-color: #f8f9fa; 
  border-radius: 50%; 
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icon-circle i {
  color: #333; 
  transition: color 0.3s ease-in-out;
}

.icon-circle:hover {
  background-color: #bc59b7; 
  color: #fff; 
}

.user-label {
  font-size: 0.85rem; 
  font-weight: 500; 
  color: inherit;
  margin-top: 5px;
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
}

/* Shopping Bag Icon Styling */
.shopping-bag {
  color: inherit; 
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.shopping-bag:hover {
  text-decoration: none;
}

.icon-wrapper {
  text-align: center;
}

.icon-circle {
  background-color: #f8f9fa; 
  border-radius: 50%; 
  padding: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icon-circle i {
  transition: color 0.3s ease-in-out;
  color: #333; 
}

.icon-circle:hover {
  background-color: #bc59b7; 
  color: #fff; 
}

.bag-total {
  font-size: 0.85rem; 
  font-weight: bold; 
  color: inherit; 
  margin-top: 5px;
}


