/* Helvetica */
@font-face {
  font-family: 'Helvetica';
  src: url('/assets/webfonts/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Helvetica Neue */
@font-face {
  font-family: 'Helvetica Neue';
  src: url('/assets/webfonts/HelveticaNeueBold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Optima */
@font-face {
  font-family: 'Optima';
  src: url('/assets/webfonts/OPTIMA.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Eina 01 */
@font-face {
  font-family: 'Eina 01';
  src: url('/assets/webfonts/eina-01-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}


/* Custom CSS for h1 header */
.custom-h1 {
    font-family: 'Space Odyssey', sans-serif; /* Use the Google font you linked */
    font-size: 3rem; /* Default font size */
    font-weight: bold;
    color: #333; /* Default text color */
    text-transform: uppercase;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-bottom: 2px solid #007bff; /* Add a bottom border */
  }

.full-screen-section {
  min-height: 100vh; /* Full viewport height */
  width: 100%; /* Full width within parent */
  background-size: cover; /* Scale to cover the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
  display: flex; /* Optional: for centering content */
  align-items: center; /* Optional: vertical centering */
  justify-content: center; /* Optional: horizontal centering */
}

    /* Navigation Bar */
.custom-navbar {
  background-color: rgb(35, 41, 41); /* Solid brown color */
  height: 10%;
  position: sticky;
  top: 0;
  z-index: 1000; /* Stay above other content */
  width: 100%; /* Full width */
  max-width: 100vw; /* Prevent overflow */
  overflow: hidden; /* No scrolling within navbar */
  box-sizing: border-box;
}
  
  .navbar-brand img {
    height: 13vh;
    padding-bottom: 1vh;
  }
  
  .navbar-nav .nav-link {
    font-family: 'Helvetica', Arial, sans-serif;
    color: #969e9e !important; /* White text for links */
    font-size: 2.5vh; /* Font size for links */
    font-weight: bold;
    margin-left: 2vw; /* Spacing between links */
  }
  
  .navbar-nav .nav-link:hover {
    color: rgb(110, 107, 71) !important; /* Light gray on hover */
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .custom-navbar {
      height: auto; /* Auto height for mobile */
    }
  
    .navbar-nav .nav-link {
      font-size: 16px; /* Smaller font size for mobile */
      margin-left: 0; /* Remove margin for mobile */
    }

    .navbar-brand img {
      height: 7vh; /* Icon height */
      padding-bottom: 1vw;
    }
  }



/* Main Menu Section */


.main-menu {
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 10%); /* Subtract navbar height */
  width: 100%;
  max-width: 100vw; /* No horizontal overflow */
  position: relative;
  color: #392c1d;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  overflow: hidden; /* No scrolling */
  box-sizing: border-box;
}

/* Remove padding from container-fluid to allow full-width background */
.main-menu .container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  max-width: 100%; /* Prevent container from exceeding parent */
}

/* Remove margins from row to prevent gaps */
.main-menu .row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Restore padding for content alignment */
.main-menu .top-left-text,
.main-menu .main-button-container {
  padding-left: 1.25vw; /* Match Bootstrap’s default container padding */
  padding-right: 1.25vw;
  box-sizing: border-box;
}

/* Top Left Text */
.top-left-text {
  position: absolute;
  top: 10vh;
  left: 3vw;
  padding: .9vw;
  line-height: 0.96;
}

.main-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 5vw;
  max-width: 50%; /* Limit the width of the screen */
  word-wrap: break-word; /* Wrap text if it exceeds the width */
}

.main-subtitle {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 5vw;
  margin-bottom: 0;
  max-width: 35%; /* Limit the width of the screen */
  word-wrap: break-word; /* Wrap text if it exceeds the width */
}

/* Button Styling */
.main-button-container {
  position: absolute;
  top: 40vh; /* Adjust this value to position the button below the text */
}

.main-custom-button {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #a0722d; /* background */
  color: white; /* White text */
  border: none;
  border-radius: 4.2vw;
  padding: 0.63vw 2.5vw;
  font-size: 1.6vw;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.main-custom-button:hover {
  background-color: #463d33; /*  on hover colour */
}

/* Triangular Footer */
.triangle-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top right, #484034, #2e2523);
  clip-path: polygon(100% 0, 0 85%, 0 100%, 100% 100%);
  overflow: hidden; /* Prevent footer content from overflowing */
}

/* Social Icons */
.main-social-icons {
  position: absolute;
  bottom: 3.75vw;
  right: 7.5vw;
  display: flex;
  gap: 2.25vw;
  max-width: calc(100% - 7rem); /* Prevent icons from overflowing right edge */
}

.main-social-icon {
  color: white; /* White icons */
  font-size: 2vw;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-social-icon:hover {
  color: #463d33; /* Yellow on hover */
}

/* Media Query for Mobile Devices */
@media (max-width: 767px) {
  /* Adjust text size for mobile */
  .main-title,
  .main-subtitle {
    font-size: 2.5rem;
    max-width: 80%; /* Allow text to take more space */
    text-shadow: 1px 1px 1.2px rgba(46, 43, 43, 0.5); /* Text shadow for readability */
  }

  .top-left-text {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 20px;
  }

  /* Move button to just above the footer */
  .main-button-container {
    position: absolute;
    top: 300%; /* Reset top position */
    left: 50%;
    transform: translateX(-50%); /* Center alignment */
  }

  /* Shrink button size */
  .main-custom-button {
    padding: 0.5rem 1.5rem;
    font-size: 3vh;
  }

  /* Adjust footer size */
  .triangle-footer {
    height: 22%; /* Reduce footer height */
    clip-path: polygon(100% 0, 0 34%, 0 100%, 100% 100%);
  }

  /* Shrink social icons */
  .main-social-icons {
    bottom: 2rem; /* Move icons up */
    right: 2rem; /* Move icons closer to the center */
    gap: 1rem; /* Reduce gap between icons */
  }

  .main-social-icon {
    font-size: 1.5rem; /* Shrink icon size */
  }
}



/* Image Gallery Section */
.image-gallery {
  background-color: #b8acb2; /* Background color */
  padding: 2.5vw 0;
  color: #fff; /* Font color */
  background-attachment: fixed; /* Ensure the background image scrolls */
}

.gallery-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 9vh;
  margin-top: 1vh;
  text-align: center;
  margin-bottom: 2vh;
  color: #392c1d; /* White text */
  text-shadow: 2px 2px 4px rgba(101, 93, 93, 0.5); /* Small shadow */
}

.image-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 2.2vw; /* Font size */
  text-align: center;
  margin-bottom: 1.5vw;
  color: #e1dada; /* White text */
  text-shadow: 2px 2px 4px rgba(101, 93, 93, 0.5); /* Small shadow */

}

.image-link {
  padding-left: 1.6vw;
  padding-right: 1.6vw;
  padding-bottom: 1.8vw;
}

/* Image Container */
.image-container {
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 25vw; /* Set a fixed height to make images taller */
  object-fit: cover; /* Ensure images cover the container */
  border: 0px none #796253; /* Border color */
}

/* Overlay styles */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  opacity: 0.7; /* Hidden by default */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity 0.3s ease;
  z-index: 1; /* Ensure overlay is above image */
}

/* Show overlay on hover or tap */
.image-container:hover .image-overlay,
.image-container.active .image-overlay {
  opacity: 1;
}

.image-subtitle {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 2.2vw; /* Subtitle font size */
  margin: 0;
  color: #d8d0d0; /* White text */
  text-shadow: 2px 2px 4px rgba(101, 93, 93, 0.5); /* Small shadow */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .image-link {
    padding-left: 3vw;
    padding-right: 3vw;
    margin-bottom: 3vh;
  }
  .gallery-title {
    font-size: 5vh; /* Smaller font size for mobile */
    margin-bottom: 2vh;
    margin-top: 2vh;
  }

  .gallery-image {
    height: 30vh; /* Smaller height for mobile */
  }

  .image-container::before {
    left: 2.5vw;
    width: 94.5%;
    height: 65vw;
  }

  .image-title {
    font-size: 4vh; /* Smaller title font size for mobile */
  }

  .image-subtitle {
    font-size: 4vh; /* Smaller subtitle font size for mobile */
  }
}

/* Invisible borders */
.border-left,
.border-right {
  border-color: transparent; /* enable this if you want a visible border */
}

/* Specific Project Page Styles */
.specific-project {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 10%);
}

.specific-project-left {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2.5vw;
  padding-right: 5vw;
}

.specific-project-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Place it behind other content */
}

.specific-project-title-container {
  text-align: left;
}

.specific-project-title {
  font-family: 'Optima', Arial, sans-serif;
  text-align: left;
  font-size: 6.5vh;
  padding-top: 5vh;
  padding-left: 2.5vw;
  color: #392c1d; /* Adjust text color as needed */
  text-shadow: .5px .5px 1px rgba(0, 0, 0, 0.5); /* Text shadow for readability */
}

.specific-project-description-container {
  margin-top: 5vh; /* Space between title and rich text field */
  padding-left: 3vw;
  padding-right: 7vw;
  width: 100%;
  max-width: 50vw;
}

.specific-project-rich-text {
  font-family: 'Eina 01', Arial, sans-serif; /* Eina 01 font */
  border: none;
  border-radius: .4vw;
  padding-left: 1.25vw;
  font-size: 2.2vh;
  color: #392c1d; /* Text color */
  width: 100%;
  height: 1.6vw; /* Fixed height for the rich text field */
  resize: none; /* Prevent resizing */
}

.specific-project-rich-text::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Placeholder text color */
}

.specific-project-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specific-project-image {
  width: 100%;
  height: 50%; /* Image covers half the height of the right column */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .specific-project {
  }

  .specific-project-left {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .specific-project-title {
    font-size: 5vh; /* Adjust font size for mobile */
    padding-top: 4vh;
    padding-left: 5vw;
  }

  .specific-project-description-container {
    margin-top: 3vh; /* Adjust spacing for mobile */
    padding-left: 5vw;
    padding-right: 5vw;
    max-width: 100%; /* Full width for mobile */
  }

  .specific-project-rich-text {
    font-size: 2vh; /* Adjust font size for mobile */
    padding-left: 2vw;
    height: auto; /* Allow height to adjust automatically */
  }

  .specific-project-image {
    height: 30vh; /* Adjust image height for mobile */
  }
}

/* Carousel Container */
.carousel-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Carousel Background */
.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Title in the top-right corner */
.carousel-title {
  font-family: 'Optima', Arial, sans-serif;
  position: absolute;
  top: 8vh;
  left: 8vw;
  font-size: 8vh;
  color: white;
  text-shadow: 2px 2px 4px rgba(85, 82, 82, 0.5);
  z-index: 10;
}

/* Preview Images */
.carousel-previews {
  display: flex;
  justify-content: center;
  gap: 4vw;
  width: 100%;
  height: 52%;
}

.carousel-preview {
  width: 18vw;
  height: 60vh;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid transparent;
}

.carousel-preview:hover img {
  border-color: #fff;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0.5vw;
  cursor: pointer;
  width: 3vw;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: 1vw;
}

.carousel-control-next {
  right: 1vw;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2vw;
  height: 2vw;
  background-color: white;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>');
  mask-size: cover;
}

.carousel-control-next-icon {
  transform: rotate(180deg);
}

/* Overlay for Full-Size Image */
.carousel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden; /* Prevent any overflow */
}

.carousel-overlay-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-overlay-content img {
  max-width: 90%; /* Ensure the image doesn't exceed the viewport width */
  max-height: 90%; /* Ensure the image doesn't exceed the viewport height */
  width: auto; /* Allow the image to scale proportionally */
  height: auto; /* Allow the image to scale proportionally */
  object-fit: contain; /* Maintain aspect ratio and fit within the container */
}

/* Mobile View */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 6vh; /* Adjust font size for mobile */
    top: 1vh;
    right: 2vw;
  }

  .carousel-previews {
    display: flex;
    justify-content: center;
    gap: 4vh;
    margin-top: 8vh;
    width: 60%;
    height: 52%;
    align-content: center;
    flex-wrap: wrap;
  }

  .carousel-preview {
    width: 40vw;
    height: 18vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10vw;
    height: 40vh;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 5vw;
    height: 4vh;
  }
}


/* Services Section */
.services-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5vw 0;
  height: calc(100vh - 10%);
}

.services-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size:  9vh;; /* Title font size */
  color: #392c1d; /* Light brown color */
  text-align: center;
  margin-bottom: 4vh;
  margin-top: 1vh;
}

/* Circle Images */
.circle-image {
  position: relative;
  text-align: center;
  margin-bottom: 3.2vh;
  display: inline-block; /* Ensure the container is inline-block */
}

.circle-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.38); /* Black tint with 50% opacity */
  border-radius: 50%; /* Match the circular shape */
  transition: background-color 0.3s ease;
  z-index: 1; /* Place the overlay above the image but below the text */
}

.circle-image:hover::before {
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease;
}

.circle-image img {
  width: 23vh;
  object-fit: cover;
  border-radius: 50%; /* Make images circular */
  border: 0px solid #796253; /* Light brown border */
  display: block; /* Ensure the image is block-level */
}

.circle-text {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.6vh, 2vh, 2.2vh); /* Responsive font size */
  color: white; /* White color */
  margin-top: 0;
  width: 80%; /* Restrict width to stay within image */
  max-width: 90%; /* Prevent overflow */
  text-align: center;
  z-index: 2; /* Ensure text is above overlay */
  box-sizing: border-box; /* Include padding in width */
  white-space: normal; /* Allow text to wrap */
  line-height: 1.2; /* Improve readability for wrapped text */
}

/* Full-Width Image */
.services-full-width-image {
  padding: 0;
  width: 100%;
  margin-bottom: 4vh;
}

/* Subtitle and Rich Text */
.services-subtitle {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 3vh;
  color: #392c1d; /* Light brown color */
}

.services-rich-text {
  font-family: 'Eina 01', Arial, sans-serif;
  font-size: 2.1vh;
  background-color: rgba(255, 255, 255, 0.40); /* Black tint with 50% opacity */
  color: #392c1d; /* Light brown color */
  padding: 15px 15px 15px 15px;
  border-radius: 0.7rem; /* Rounded corners for transparent background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .services-section{
    height: 140%;
  }
  .services-title {
    font-size: 8vh; /* Smaller title font size for mobile */
  }

  .circle-image{
    margin-left: 7vw;
    margin-bottom: 1.5vh;
  }


  .circle-image img {
    width: 120px;
    height: 120px; /* Smaller circles for mobile */
  }

  .circle-text {
    font-size: 14px; /* Smaller text for mobile */
  }

  services-full-width-image{
    margin-bottom: 1.5vh;
  }

  .services-subtitle {
    font-size: 3vh;
    text-align: center;
  }

  .services-rich-text {
    font-size: 2vh;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}


/* About Us Section */
.about-section {
  margin: 0;
  padding: 0;
  background-size: cover; /* Ensure the background covers the entire section */
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 10%); /* Subtract navbar height */
  width: 100%;
  background-attachment: scroll; /* Ensure the background scrolls with the page */
}

.about-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 9vh; /* Title font size */
  color: #beb8b4; /* Title color */
  text-align: left; /* Align title to the left */
  margin-bottom: 4vh;
  padding-left: 5vw;
  padding-top: 4vh;
}

/* Rich Text Field */
.about-rich-text {
  font-family: 'Eina 01', Arial, sans-serif;
  font-size: 2.7vh;
  padding-left: 5vw;
  color: #bdb7b3; /* Text color */
  max-width: 100%; /* Never crosses more than 60% of the screen */
  word-wrap: break-word;
}

/* Button */
.about-custom-button {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #996f26; /* Button background */
  color: white; /* White text */
  border: none;
  border-radius: 5vw;
  margin-right: 4vw;
  margin-top: 45vh;
  margin-bottom: 5vh;
  padding: 0.75vw 2.5vw;
  font-size: 1.4vw;

  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.about-custom-button:hover {
  background-color: #463d33; /* Darker shade on hover */
}

/* Social Icons */
.about-social-icons {
  display: flex;
  margin-top: 5vh;
  margin-right: 4vw;
  gap: 2vw; /* Spacing between icons */
}

.about-social-icons a {
  color: #fcf9f6; /* Light brown color */
  font-size: 2vw;
}

.about-social-icons a:hover {
  color: #8f825b; /* Darker shade on hover */
}

/* Position Button and Social Icons Lower */
.col-md-3.d-flex.flex-column.justify-content-end.align-items-end {
  margin-top: 45vh; /* Move the button and icons lower by 10% of the page height */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .about-section{
    height: 100%;
  }
  .about-title {
    font-size: 7vh; /* Smaller title font size for mobile */
    transform: none;
    margin-bottom: -2vh;
  }

  .about-rich-text {
    font-size: 1.8vh; /* Smaller font size for mobile */
    max-width: 100%; /* Full width for mobile */
  }

  .about-custom-button {
    font-size: 2.4vh; /* Smaller button font size for mobile */
    margin-top: 1vh;
    margin-bottom: 0vh;
    margin-right: 0vw;
    margin-left: 0vw;
    align-self: center;
  }

  .about-social-icons a {
    font-size: 3vh; /* Smaller icon size for mobile */
    padding-left: 5vh;
  }

  /* Ensure background scrolls on mobile */
  .about-section {
    background-size: cover;
    background-attachment: scroll; /* Scroll background on mobile */
  }
}


/* Contact Form Section */
.contact {
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  height: calc(100vh - 10%) ; /* Full viewport height */
  position: relative;
  color: #392c1d; /* Text color */
}

.contact-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 9vh;
  padding-top: 4vh;
  padding-left: 7.5vw;
  margin-bottom: -2vh;
  word-wrap: break-word; /* Wrap text if it exceeds the width */
}

.contact-subtitle {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 4.5vh;
  padding-left: 7.5vw;
  padding-right: 4vw;
  font-weight: normal;
  margin-bottom: 0.65vw;
  max-width: 70%;
  word-wrap: break-word;
  line-height: 5.5vh;
}

.contact-form-box {
  margin-top: 7vh;
  background-color: #272b2a; /* Black background for the form box */
  padding: 2.5vw;
  border-radius: 0px;
  width: 100%;
  max-width: 41.6vw;
  color: #777a79; /* White text color for the form */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 5vh;
  font-weight: bold;
  margin-bottom: 2.2vh;
  color: white; /* White text color for the form title */
}

.contact-form-group {
  margin-bottom: 2.2vh;
}

.contact-form-control {
  background-color: rgb(39, 43, 42); /* White background */
  border: .1vw #fffdfc solid;
  border-radius: .1vw;
  padding: 2.5vh 1vw;
  font-size: 1.75vh;
  color: #d1cbcb; /* Black text color */
  width: 100%;
}

.contact-form-control::placeholder {
  color: #868686; /* Gray placeholder text color */
}

.contact-rich-text {
  font-family: 'Eina 01', Arial, sans-serif;
  background-color: transparent;
  border: none;
  border-radius: .5vw;
  padding-bottom: 0;
  padding-left: 7.5vw;
  font-size: 2.2vh;
  color: #392c1d;
  width: 100%;
}

.contact-custom-button {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #996f26; /* Button background */
  color: white; /* White text */
  border: none;
  border-radius: 4.2vw;
  padding: 0.8vw 2.5vw;
  font-size: 3vh;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.contact-custom-button:hover {
  background-color: #463d33; /* Button background on hover */
}

@media (max-width: 767.98px) {

.contact {
  height: 120%;
  background-attachment: fixed;
}

  .contact-title {
    font-size: 6vh;
    padding-top: 2vh;
    padding-left: 0vw;
    margin-bottom: 0vh;
    text-align: center;

  }

  .contact-subtitle {
    font-size: 4vh;
    padding-left: 0vw;
    padding-right: 0vw;
    text-align: center;
    margin-bottom: 0;
    line-height: 4.5vh;
    max-width: 100%;
  }

  .contact-form-box {
    margin-top: 2vh;
    padding: 2.5vw;
    border-radius: 0px;
    width: 100%;
    max-width: 80vw;
  }

  .contact-form-title {
    font-size: 4vh;
    margin-bottom: 1vh;
  }

  .contact-form-group {
    margin-bottom: 1vh;
  }

  .contact-form-control {
    border-radius: .1vw;
    padding: 1vh 2.5vw;
    font-size: 2.5vh;
    width: 100%;
  }


  .contact-rich-text {
    background-color: transparent;
    border: none;
    border-radius: .5vw;
    text-align: center;
    padding-bottom: 0;
    padding-left: 0vw;
    font-size: 3vh;
    width: 100%;
  }

  .contact-custom-button {
    border-radius: 5vh;
    padding: 1vh 7vw;
    font-size: 2.5vh;
  }

}



/* Testimonials Section */
.testimonials {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding:  5vh 0vw;  /* Add padding to the top and bottom for spacing */
}

.testimonials-container {
  max-width: 80%; /* Adjust this value to control the horizontal squeeze */
  padding-left: 9.75vw;
  padding-right: 9.75vw;
  margin: 0 auto; /* Center the container */
}

/* Testimonials Title */
.testimonials-title {
  font-family: 'Optima', Arial, sans-serif;
  font-size: 9vh;
  margin-top: 1vh;
  color: #392c1d;
  margin-bottom: 5vh;
}

/* Testimonials Images */
.testimonials-image {
  width: 100%;
  max-width: 18.75vw;
  height: 30vh;
  border-radius:0;
}

/* Testimonials Text */
.testimonials-text {
  font-family: 'Eina 01', Arial, sans-serif;
  margin-top: 2.25vh;
  font-size: 2.25vh;
  color: #392c1d;
  padding: 0 1.25vw;
}


/* Testimonials Button */
.testimonials-button {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #95731c; /* background */
  color: white; /* White text */
  border: none;
  border-radius: 4.2vw;
  padding: 0.67vw 2.5vw;
  font-size: 3vh;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.testimonials-button:hover {
  background-color: #463d33; /* Darker shade on hover */
}


/* Custom Shape for Testimonials Images */
.testimonials-custom-shape {
  position: relative;

  max-width: 25vw;
  margin: 0 auto;
}

.testimonials-custom-shape .testimonials-image {
  height: 30vh;
  clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 65% 80%, 50% 100%, 35% 80%, 0% 80%);
  /* Adjust the polygon points to match your desired shape */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonials{
    height: 100%;
  }

  .testimonials-container {
    padding-left: 0;
    padding-right: 0;
  }
  .testimonials-image{
    max-width: 100%;

  }

  .testimonials-title {
    font-size: 5vh;
  }

  .testimonials-custom-shape{
    margin: 0;
    max-width: 100%;
  }

  .testimonials-custom-shape .testimonials-image {
    margin-left:2vw;
    margin-right: 2vw;
  }

  .testimonials-text {
    font-size: 2.5vh;
  }

  .testimonials-button {
    font-size: 3vh;
    border-radius: 4.2vh;
    padding: 1.3vh 6vw;
  }
}

/* Specific Testimonials Section */
.specific-testimonials {
  display: flex;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 10%);
}

.specific-testimonials-container {
  width: 100%;
  padding-right: 1.25vw;
  padding-left: 1.25vw;
  margin-right: auto;
  margin-left: auto;
}

/* Main Column (Title, Large Image, and Text) */
.specific-testimonials-main-column {
  width: 100%; /* Full width of the column */
  padding-right: 0px;
  position: relative; /* Ensure the large image is positioned relative to this column */
}

.specific-testimonials-title {
  font-family: 'Optima', Arial, sans-serif;
  padding-left: 3.75vw;
  font-size: 5vh;
  color: #e0cbbb;
  margin-top: 2.5vw;
  margin-bottom: 2vw;
}

/* Combined container for larger image and text */
.specific-testimonials-combined-container {
  position: relative;
  width: 100%; /* Ensure the container spans the full width */
}

.specific-testimonials-large-image {
  width: calc(100% + 0% ); /* Stretch the image to go 20% off the left of the column */
  max-width: none; /* Remove max-width restriction */
  padding-left: 5vw;
  height: 71vh; /* Constrain the height to 70% of the viewport height */
  object-fit: cover; /* Ensure the image covers the container */
  border-radius: 0; /* Remove rounded corners */
  position: absolute; /* Position the image absolutely */
  right: 0; /* Align the image to the right */
}

.specific-testimonials-text {
  font-size: 2.2vh;;
  color: #c6bebe;
  border-radius: .1vw;
  position: absolute;
  top: 0.625vw; /* Move the text to the top of the image */
  left: 5.2vw;
  padding-left: 3vw;
  padding-right: 3vw;
}

/* Small Image Column (Separately Padded) */
.specific-testimonials-small-image-column {
  padding-top: 6.25vw; /* Add padding to position the small image lower */
}

.specific-testimonials-small-image {
  max-width: 31.25vw;
  padding-right: 2.5vw;
  border-radius: 0;
  position: absolute; /* Position the image absolutely */
  left: 0;/* Make the small image square */
}

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

  .specific-testimonials{
    height: 100%;
    text-align: center;
  }
  .specific-testimonials-title {
    font-size: 5vh;
    padding: 0;
  }

  .specific-testimonials-small-image {
    max-width: 0vh;
  }

  .specific-testimonials-text {
    font-size: 1.8vh;
    padding: 0;
  }

  .specific-testimonials-main-column {
    width: 100%; /* Full width on mobile */
    padding-right: 8vw; /* Remove padding on mobile */
  }

  .specific-testimonials-large-image {
    height: 85vh; /* Reset height for mobile */
    width: 100%; /* Reset width for mobile */
    position: static; /* Reset position for mobile */
  }

  .specific-testimonials-small-image-column {
    padding-top: 2rem; /* Reduce padding on mobile */
  }
}
