@charset "utf-8";
/* CSS Document */

body {
  background-color: #dbd4cf;
  font-family: 'futura', sans-serif;
  color: black;
  width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  padding-left: 20px;
  overflow-x: hidden;
}

.navbar {
  width: 100%;
  padding: auto;
  background-color: transparent;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 20px;
  position: relative; /* Add this line */
  z-index: 10000; /* Add this line */
}


.logo {
  max-height: 200px; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
  padding-bottom: 40px;
  padding-top: 25px;
  scroll-padding-top: 100px;
}

.logo img {
	  display: flex;
    justify-content: center;
    align-items: center;
    max-height: 150px;
}

.navigation-items {
  width: 100%;
  display: flex;
  justify-content: space-around;
	align-items: center;
  padding-bottom: 10px;
  max-width: 100%;
}

.navigation-items ul {
  list-style: none;
}

.navigation-items li {
  font-size: 1.1rem;
}

.navigation-items a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/*INDEX*/
.tagline {
  text-align: center;
  padding: 5px 0;
  font-size: 1.5rem;
  font-family: 'Calgary', sans-serif;
  color: black;
}

/* .company-info {
  /* Layout control */
  /* margin: 20px auto; */
  /* padding: 15px; */
  /* border-radius: 8px; / */

  /* Text styling */
  /* font-family: 'futura', sans-serif;
  color: black;  */
/* }  */


.tagline img {
  max-height: 75px;
  padding: 20px;
}

.seasonalpromo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 300px;
}

.seasonalpromo img {
  padding: 10px;
  background-color: transparent;
  text-align: center;
  justify-content: center;
  align-content: center;
  max-height: 250px;
  max-width: 100%; /* Add this line */
  padding-left: 0;
}

.welcome-section {
  display: flex;
  justify-content: space-between; /* Change from 'center' to 'space-between' */
  align-items: center;
  flex-wrap: wrap;
  padding: 0; /* Remove padding to reduce the space around edges */
  margin: 0 auto; /* Center the section */
  max-width: 1200px; /* Adjust max-width as needed */
}

.welcome-section h3 {
  text-align: center;
}


.welcome-section h2,
.welcome-section p {
  flex: 1; /* This allows the text to fill the space available */
  margin-right: 10px; /* Reduced margin for spacing */
  font-size: 1.1rem;
  font-family: sans-serif;
}

.welcome-section b {
  font-size: 1.3rem;
  font-family:sans-serif
}

.welcome-section .square {
  flex: 0 0 auto; /* Prevents the image from growing and uses the size of the image */
  margin-left: 20px; /* Add margin to create space between the image and text */
}


.square {
  margin-left: 20px; /* Adds some space between the text and the image */
}

.welcome-section .ambs {
  flex: 1; /* This allows the text to fill the space available */
  padding-right: 20px; /* Add padding to create space between the text and image */
  margin: 0; /* Adjust margin as needed */
}
  

.services-home {
  font-size: 1.1rem;
  font-family: sans-serif;
  margin: 20px 0; /* Adjust as needed */
  text-align: left; /* Center the title */
  margin-bottom: 50px; /* Space below the section */
}

.services-container {
  display: flex; /* Aligns children horizontally */
  justify-content: space-between; /* Spreads the children evenly with space around them */
  gap: 30px; /* Adjust the gap between the blocks */
  padding: 20px; /* Padding around the container */
}

.service-block {
  font-size: 1.1rem;
  font-family: sans-serif;
  width: 33%; /* Set a fixed width for each block */
  background-color: #CAC4D1; /* Block background color */
  border: 1px solid #ccc; /* Block border */
  border-radius: 8px; /* Rounded corners for blocks */
  padding: 40px; /* Padding inside blocks */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Shadow for depth */
  opacity: 0; /* Start fully transparent */
  transform: translateX(50%); /* Start to the right */
  transition: transform 1s ease-out, opacity 1s ease-out; /* Smooth transition for all properties */
}

/* Animation class to be added via JavaScript */
.slide-in {
  opacity: 1;
  transform: translateX(0); /* Move into final position */
}


.services-home h3{
  font-size: 1.3rem;
  font-family:sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
}

.company-info {
  font-size: 1.1rem;
  font-family:sans-serif
}

.company-info h3 {
  font-size: 1.3rem;
  font-family: sans-serif;
}



/*BOOKINGS*/
.booking {
  display: absolute;

}

/*SERVICES*/
.small-images {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 10px
}

.small-img {
  width: 125px; /* Adjust the width as needed */
  height: auto;
  cursor: pointer;
  margin: auto; /* Adjust the margin as needed */
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-inner {
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.card-inner.is-flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  width: 100%;
  backface-visibility: hidden;
  position: absolute;
}

.card-front {
  z-index: 2;
}

.card-back {
  transform: rotateY(180deg);
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.card {
  width: 900px;
  height: 600px;
  perspective: 1000px;
  margin-bottom: none;
}

.card-front,
.card-back {
  width: 100%;
}

.image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.image-container img {
  width: 900px;
}




.square-large {
  flex: 3; /* Takes up 3/4 of the space */
  /* You might need to adjust padding, margin, or max-width here as well */
}

.square-large img {
  width: 100%; /* This will make the image stretch to the full width of its container */
  height: auto; /* This maintains the aspect ratio of the image */
}


.square {
  margin-left: 10px;
  /* Adjust padding, margin, or max-width as necessary */
}

.square img {
  /* margin: 0 auto; */
  width: 300px;
  
}

.image-container {
  position: relative;
}

.image-button {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #990dda;
  border-radius: 25px;
  color: rgb(3, 3, 3);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.button-link {
  text-decoration: none;
}


.privacy-policy {
	text-align: right;
  vertical-align: auto;
	padding: auto;
	font-size: 11px;
  

	
	font-style: italic;
}

.shoutout {
  text-align: right;
  padding: 20px 0;
  font-size: 11px;
}

/* testimonials page */
.testimonials {
  width: 1000px;
  max-width:100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-top: 10px;
  padding-bottom: 50px;
  margin: 0 auto;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 0;
}

.testimonial {
  width: 80%;
  max-width: 600px;
  border-radius: 25px;
  padding: 20px;
  padding-top: 50px;
  padding-left: 35px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  position: absolute;
  opacity: 0;
  transition: opacity .5s ease-in-out;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  flex: 1;
  max-width: calc(100% - 40px);
  text-align: center;
  overflow-wrap: break-word;
  display: flex; /* Add this line */
  flex-direction: column; /* Add this line */
  align-items: center; /* Add this line */
  justify-content: center; /* Add this line */
}

.testimonial img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  align-self: center;
}

.testimonial {
  font-family: 'futura', sans-serif;
  font-size: 1.2rem;
  color: black(249, 247, 247);
  text-align: center;
}

/* @keyframes rainbow {
  0% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  14% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  28% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  42% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  57% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  71% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  85% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
  100% {text-shadow: 0 0 8px black, 0 0 15px black, 0 0 25px black;}
} */

.testimonial {
  animation: rainbow 10s linear infinite;
}



.color-changed {
  color: #990dda; /* You can change this color to the desired one */
}


.author {
  font-style: italic;
  text-align: center;
}

.testimonials .active {
  position: relative;
  opacity: 1;
}

.arrow {
  position: relative;
  font-size: 10px;
  color: #990dda;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  max-height: 1;
  
}


.arrows-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 20px; */
}

.arrow-left,
.arrow-right {
  position: static; 
}


.arrow-left, .arrow-right {
  background-color: #ddd; /* Neutral background */
  color: #333; /* Arrow color */
  border: none; /* Removes border */
  cursor: pointer; /* Hand cursor on hover */
  font-size: 24px; /* Adjust size */
  padding: 10px 20px; /* Padding around arrows */
  margin: 10px; /* Space between arrows */
  border-radius: 50%; /* Circular shape */
}

.arrows-container {
  text-align: center; /* Center the arrows below testimonials */
}

/* 
.arrow {
  margin: 0 20px;
}

.arrow-left {
  margin-right: 20px; /* Add some space between the left and right arrows */
/*} */


.arrow.circle {
  border-radius: 50%;
  background-color: #990dda;
  padding: 5px;
  color: black;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow.circle:hover {
  background-color: #6e00be;
  color: #ffffff;
  align-items: center;
  justify-content: center;
}

.arrows-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


footer .footer-link {
  color: #f6f3f3 !important; /* Change this to match your website's color scheme */
  text-decoration: none;
  margin: 0 50px;
}

footer .footer-link:hover {
  color: #990dda !important;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  padding-bottom: 100px; /* Add padding equal to the footer's height */
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Changed from 100% to 100vh */
}

.page-content {
  flex-grow: 1; /* Changed from flex: 1 */
}

footer {
  width: 100%;
  text-align: center;
  padding: 0;
  background-color: #6a4982; /* Change this to match your website's color scheme */
  position: fixed; /* Change from static to fixed */
  bottom: 0; /* Add this property */
  z-index: 1000; /* Add this property to ensure the footer stays on top of the content */
}

.footer-spacer {
  height: 40px; /* Adjust this value to create more or less space */
}


footer a {
  color: #ffffff; /* Replace this with your desired color code */
}

footer a:hover {
  color: black; /* Replace this with your desired hover color code */
  text-decoration: underline;
}

/* Contact Us Page */
.contact-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 500px;
  margin-bottom: 15px;
}

.input-group label {
  margin-bottom: 5px;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group textarea {
  width: 100%;
  border: 1px solid #ffffff;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.input-group input[type="text"]::placeholder,
.input-group input[type="email"]::placeholder,
.input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-group textarea {
  resize: none;
  height: 150px;
}

.form-container button[type="submit"] {
  background-color: #ffffff;
  color: #000000;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.form-container button[type="submit"]:hover {
  background-color: #f1c40f;
  color: #ffffff;
}

.left-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.right-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: -150px;
}

.right-section .connect-header {
  margin-top: 0; /* Remove default margin */
  padding-top: 0px; /* Adjust this value as needed */
}


.container {
  display: flex;
  justify-content: space-between;
}


.socials a {
  text-decoration: none;
  color: black;
}

.socials a.facebook{
  text-decoration: none;
  color: black;
  text-shadow:
      0 0 7px rgb(202, 33, 253),
      /* 0 0 10px rgb(202, 33, 253), */
      /* 0 0 21px rgb(202, 33, 253),
      0 0 42px rgb(202, 33, 253),
      0 0 82px rgb(202, 33, 253),
      0 0 92px rgb(202, 33, 253), */
      0 0 102px #0fa;
      /* 0 0 151px #0fa; */

}

.socials a.instagram{
  text-decoration: none;
  color: black;
  text-shadow:
      0 0 7px rgb(253, 208, 7),
      /* 0 0 10px rgb(253, 208, 7), */
      /* 0 0 21px rgb(253, 208, 7),
      0 0 42px rgb(253, 208, 7), */
      /* 0 0 82px rgb(253, 208, 7),
      0 0 92px rgb(253, 208, 7), */
      0 0 102px #0fa,
      0 0 151px #0fa;

}

.socials a.tiktok{
  text-decoration: none;
  color: black;
  text-shadow:
      0 0 7px rgb(169, 252, 4),
      /* 0 0 10px rgb(169, 252, 4), */
      /* 0 0 21px rgb(169, 252, 4),
      0 0 42px rgb(169, 252, 4), */
      /* 0 0 82px rgb(169, 252, 4),
      0 0 92px rgb(169, 252, 4), */
      0 0 102px #0fa,
      0 0 151px #0fa;

}

.socials a.youtube{
  text-decoration: none;
  color: black;
  text-shadow:
      0 0 7px rgb(4, 62, 252),
      /* 0 0 10px rgb(4, 62, 252), */
      /* 0 0 21px rgb(4, 62, 252),
      0 0 42px rgb(4, 62, 252), */
      /* 0 0 82px rgb(4, 62, 252),
      0 0 92px rgb(4, 62, 252), */
      0 0 102px #0fa,
      0 0 151px #0fa;

}

.contact-us {
  display: none;
}

.contact-us.visible {
  display: flex;
}

.site-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.left-section,
.right-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.left-section img {
  max-width: 100%;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.buttons-container a img {
  max-width: 85%;
}

.button-container a,
.button-container button {
  display: inline-block;
}

.contact-form-container {
  display: none;
}

.contact-form-container.visible {
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input[type="submit"] {
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contact-form input[type="submit"]:hover {
  background-color: #f1c40f;
  color: #ffffff;
}

.comingsoon {
  position: flex;
  text-align: center;

}

@media screen and (max-width: 768px) {


  .tagline {
    max-width: 100%;
    justify-content: center;
    display: flex;
  }

  .tagline img {
    max-width: 100%;
    padding: 20px;
    height: auto;
    object-fit: contain;

  }  

  .navigation-items {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px;
    white-space: nowrap;
    max-width: 100%;
  }  
  
  .navigation-items a {
    padding: 5px 5px;
    font-size: 10px;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
  }  
  

  .logo {
    margin: 0 auto;
    margin-top: 40px;
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }

  .page-content {
    padding: 0 10px;
  }

  .navbar {
    display: flex;
    justify-content: center; /* This will evenly space out the nav items */
    align-items: center; /* This will vertically align the items in the center */
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
  }  


  .testimonial {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: calc(100% - 40px);
    padding: 10px;
  }  

  .testimonial .author {
    font-size: 10px;
  }

  .testimonials {
    display: relative;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    justify-content: center;
  }

  .testimonial testimonial-bg color-transition {
    max-width: 90%;
  }

  .testimonial-controls {
    position: relative; /* Change from absolute to relative */
    top: 0; /* Reset the top positioning */
    left: 0; /* Reset the left positioning */
    display: flex; /* Add display flex */
    justify-content: space-between; /* Distribute arrows on the left and right side */
    padding: 10px 0; /* Add some padding around the arrows */
  }

  .testimonial-controls .arrow-left,
  .testimonial-controls .arrow-right {
    position: static; /* Set the arrow position to static */
    transform: none; /* Remove the transform */
  }


  .seasonalpromo img {
    max-height: 100px; /* Adjust the value as needed */
  }
  .seasonalpromo {
    max-height: 100px; /* Adjust the value as needed */
  }

  .arrow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .arrow-left,
  .arrow-right {
    position: static;
    height: auto;
    width: auto;
  }

  .card img {
    display: flex;
    width: 80%;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .card {
    display: flex;
    justify-content: center;
  }
  
  .site-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
  }

  .left-section {
    margin: 0 auto;
    text-align: center;
  }

  .right-section {
    margin: 20px auto;
    text-align: center;
  }

  .socials {
    margin-bottom: 20px;
  }

  .socials a {
    display: block;
    margin-bottom: 10px;
  }

  .socials p {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .about-me {
    text-align: justify;
    text-size-adjust: auto;
    display: flex;
    justify-content: center;
  }

  .contact-us {
    display: flex;
    flex-direction: column-reverse;
    display: flex;
    justify-content: center;
  }

  body {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  
  img {
    display: block;
    margin: 0 auto;
    justify-content: center;
    max-width: 100%;
    height: auto;
  }

  .comingsoon {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 100%;
  }

  .buttons-container img{
    size: 100px;
  }

  .about-me{
    color: black;
  }

  .welcome-section {
    flex-direction: column; /* Stack the children vertically */
    align-items: center; /* Center align items */
    text-align: center; /* Center the text */
    margin: 20px 10px; /* Add some margin to the top and bottom, and slightly less on the sides */
  }

  .company-info {
      flex-direction: column; /* Stack the children vertically */
      align-items: center; /* Center align items */
      text-align: center; /* Center the text */
      margin: 20px 10px; /* Add some margin to the top and bottom, and slightly less on the sides */
  }

  .welcome-section h2,
  .welcome-section p {
    font-size: 0.9rem; /* Adjust font size for readability */
    margin-right: 0; /* Remove the margin on the right */
    padding: 0 15px; /* Add padding on the sides for some breathing room */
  }

  .welcome-section b {
    font-size: 1.2rem; /* Slightly larger font size for bold text */
  }

  .welcome-section .square,
  .square-large {
    width: 100%; /* Allow the image/button to take full width */
    margin-top: 20px; /* Add some space above the image/button */
    justify-content: center; /* Center the content if it's a flex container */
  }

  .square {
    order: -1; /* This will place the image/button above the text on mobile */
  }
  
  .ambs, .square {
    width: 100%; /* Ensure both text and image/button take full width */
    max-width: none; /* Override any max-width set outside the media query */
  }

  #more-text {
      max-height: 3.6em; /* Set a fixed height to show a snippet of text */
      overflow: hidden;
      transition: max-height 0.3s ease;
  }

  #see-more-button {
    display: inline; /* Show the button only on mobile */
    background: none;
    border: none;
    padding: 10px;
    font-size: 0.9rem; /* Match the text size */
    font-weight: bold;
    text-decoration: underline;
    color: black; /* Use your preferred color */
    cursor: pointer;
  }
  
}

#see-more-button {
  display: none;
}