/* Import Proxima Nova Font Family */
@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_boldit.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('/assets/fonts/proximanova_blackit.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* Import Forum Font Family */
@font-face {
  font-family: 'Forum';
  src: url('/assets/fonts/forum_regular.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

.container {
  max-width: 1000px !important;
}

.has-background-creme {
  background-color: #edefea;
}

.has-background-creme .title {
  color: #666b50;
}

.button.is-primary {
  background-color: #51585a;
  color: #fff;
  border-radius: 0;
}

.has-background-light-grey {
  background-color: #fbfbfb;
}

.has-background-dark-grey {
  background-color: #f0f0f0;
}

.has-background-stone {
  background-color: #7a8283;
  color: #fff;
}

.has-background-stone .title {
  color: #fff;
}

.title {
  font-family: "Forum", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

p,
li {
  font-family: "Proxima Nova", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.brand {
  height: 20px;
}

.footer .icon .brand {
  filter: invert(1) brightness(100%);
}

/* Image zoom effect */
.image-zoom-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.zoom-image {
  transition: transform 0.8s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-zoom-container:hover .zoom-image {
  transform: scale(1.1);
}

.decorated-heading, .decorated-heading-fw {
  position: relative;
  padding-bottom: 1.5rem;
}

.decorated-heading::after, .decorated-heading-fw::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1.5px;
  background-color: #333;
}

.decorated-heading-fw::after {
  left: 0%;
  width: 100%;
}

@media (min-width: 767px) {
  .gradient-left-to-right {
    background: linear-gradient(to left, #f0f0f0 50%, #fbfbfb 50%);
  }
  .our-services-tile {
    align-items: center;
  }
  
  .our-services-tile p {
    font-size: 0.75rem;
  }
  
  .our-services-tile .image-column {
    padding: 0;
  }
}


.has-line-height-130 {
  line-height: 130%;
}

@media (max-width: 767px) {
  .reverse-columns {
    flex-direction: column-reverse;
    display: flex;
  }

  .our-services-tile .title {
    font-size: 2rem;
  }
  
  .our-services-tile p {
    font-size: 1rem;
  }
  
  .our-services-tile .image-column .image {
    padding: 1rem;
    width: 100%;
  }
  
  .our-services-tile .text-column {
    text-align: center;
  }

  .decorated-heading, .decorated-heading-fw {
    text-align: center;
  }

  button.button {
    text-align: center;
    padding: 1rem 2rem;
  }

  a.button {
    text-align: center;
    padding: 1rem 2rem;
  }
}

.navbar-burger {
  color: #000;
}

.navbar {
  padding: 1rem 0;
  background-color: transparent;
}

.navbar-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.navbar-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a4a4a;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.navbar-brand .navbar-item {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

/* Add space between navbar items */
.navbar-end > .navbar-item,
.navbar-end > .navbar-item.has-dropdown {
  margin: 0 0.5rem;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-loader img {
  width: 150px; /* Adjust based on your logo size */
  height: auto;
  z-index: 10000;
}

@media (max-width: 767px) {
  .page-loader {
    animation: shrinkLoader 2s ease-in-out 2s forwards;
  }
  
  @keyframes shrinkLoader {
    0% {
      clip-path: inset(0 0 0 0);
    }
    100% {
      clip-path: inset(50% 0 50% 0);
      opacity: 0;
      visibility: hidden;
    }
  }
}

/* Add this to hide content during loading */
body.is-loading {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.mobile-menu.is-active {
  transform: translateX(-100%);
}

.menu-items .navbar-item {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: white;
  text-transform: uppercase;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.close-button:focus {
  outline: none;
}

.navbar {
  padding: 0;
}

.navbar.is-fixed-top {
  background-color: #fff  ;
}

.navbar .navbar-item, .navbar .navbar-link {
  font-weight: 300;
}

a.navbar-item.is-active {
  color: #919191;
  background-color: #fff;
}