/*  ****************  */
/*  *****BESPOKE****  */
/*  ****************  */

/* Left Text Content */
.bespoke-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px !important;
  margin-bottom: 40px !important;
  color: white !important;
}

.bespoke-text h1 {
  font-size: 2.5rem;
  margin-bottom: 40px !important;
}

.bespoke-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.description-mobile {
  display: none;
}
.description-desktop {
  display: block;
}

/* Contact Us Button */
button.contact-button {
  max-width: 150px;
  display: inline-block;
  padding: 12px 20px;
  font-size: 1.2rem;
  text-align: center;
  background-color: white;
  color: black;
  border: 2px solid black;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

button.contact-button:hover {
  background-color: black;
  color: white;
  border-color: white;
  cursor: pointer;
}

/* Carousel Container */
.bespoke-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  padding-left: 40px !important; /* Adds space between text and image */
}

/* Carousel Image */
.bespoke-carousel-img {
  height: 80vh;
  max-height: 600px;
  object-fit: cover;
}

/* Hide Carousel Arrows */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}
.carousel {
  animation: none !important;
  
}


/* Form Inputs */
.contactForm input,
.contactForm textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid white !important;
  background-color: black !important;
  color: white !important;
  border-radius: 5px;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder {
  color: #aaa !important;
}

.form-label {
  color: white !important;
}

/* Send Message Button */
.send-message-button {
  display: block !important;
  width: 100% !important;
  max-width: 300px !important;
  padding: 14px 24px !important;
  font-size: 1.4rem !important;
  font-weight: bold !important;
  text-align: center !important;
  background-color: black !important;
  color: white !important;
  border: 2px solid white !important;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  margin: 15px auto !important;
}

.send-message-button:hover {
  background-color: white !important;
  color: black !important;
  border-color: black !important;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {

  .bespoke-text {
    padding: 0px !important;
    padding-bottom: 20px;
    margin-bottom: 20px !important;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically (optional) */
  }

  .bespoke-carousel-container {
    height: auto;
    padding: 0 !important;
    margin-top: 20px;
    display: none !important;
  }

  .bespoke-carousel-img {
    height: 300px !important;
    max-height: 350px;
  }

  .description-desktop {
    display: none;
  }
  .description-mobile {
    display: block;
  }


  button.contact-button {
    min-width: 95%;
    display: block !important;
    padding: 12px 20px;
    font-size: 1.2rem;
    text-align: center;
    background-color: white;
    color: black;
    border: 2px solid black;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  .bespoke-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0px 20px !important;
  }
  .bespoke-text h1 {
    margin-bottom: 20px !important;
  }
  section.fluid-container {
    padding-bottom: 30px !important;
  }
}
