/* STYLES FOR ABOVE THE FOLD */
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60rem; /* 960px - increased height */
    overflow: hidden;
    background-position: center;
    background-size: cover;
    font-family: "Poppins", "Arial", sans-serif;
  }
  #hero .cs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 10;
  }
  #hero .cs-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  #hero .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #hero .cs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    min-width: 100vw;
  }
  #hero .cs-hero-overlay .cs-overlay-img {
    width: 100vw;
    height: 75rem; /* 1200px */
    object-fit: cover;
  }
  #hero .cs-container {
    position: relative;
    z-index: 20;
    max-width: 75rem; /* A bit thinner - 1500px */
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
  }
  #hero .cs-flex-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: -15rem; /* Negative margin to push content up further */
    padding: 0; /* Removed padding to give title full width */
    /* Fade in animation */
    animation: fadeIn 1s ease-in-out;
  }
  #hero .cs-title {
    font-size: clamp(1.875rem, 5vw, 3.75rem); /* 30px - 60px */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    max-width: none; /* Remove any max-width constraint */
  }
  #hero .cs-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.125rem); /* 16px - 18px (smaller on mobile) */
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem; /* Reduced from 32px to 16px */
    color: white;
    text-align: center;
    width: 90%; /* Wider on mobile - increased from 75% to 90% */
    max-width: 100%;
  }
  #hero .cs-button-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem; /* Reduced from 32px to 16px */
  }
  #hero .cs-button-solid {
    margin-bottom: 1rem;
    height: initial;
    line-height: clamp(2.25em, 4.5vw, 2.75em);
    color: white;
    border-radius: 0.25rem;
  }
  #hero .cs-button-transparent {
    z-index: 1;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bodyTextColorWhite);
    margin: 0;
    background-color: transparent;
    /* 36px - 44px */
    height: clamp(2.25em, 4.5vw, 2.75em);
    width: 9.375rem;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
    font-size: 1rem;
    /* 36px - 44px */
    line-height: clamp(2.25em, 4.5vw, 2.75em);
    font-weight: 700;
    color: #fff;
    border-radius: 0.25rem;
  }
  #hero .cs-button-transparent:before {
    z-index: -1;
    position: absolute;
    /* so it sits on top of the border */
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    opacity: 1;
    /* this is what creates the grow affect on hover */
    transform: scaleX(0);
    display: block;
    background: #fff;
    transition: transform 0.3s;
    transform-origin: left;
  }
  #hero .cs-button-transparent:hover {
    color: #333333;
  }
  #hero .cs-button-transparent:hover:before {
    transform: scaleX(1);
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero .cs-container {
    padding: 0 2rem; /* Restore tablet padding */
  }
  #hero .cs-flex-group {
    padding: 0; /* Removed padding on tablet+ too */
  }
  #hero .cs-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem); /* 40px - 60px */
  }
  #hero .cs-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* 20px - 24px */
    width: 75%;
  }
  #hero .cs-button-group {
    flex-direction: row;
    gap: 1rem;
  }
  #hero .cs-button-solid {
    margin-right: 0;
    margin-bottom: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero .cs-title {
    font-size: clamp(3rem, 6vw, 3.75rem); /* 48px - 60px */
    margin-bottom: 2rem;
    max-width: none; /* Remove any max-width constraint */
  }
  #hero .cs-subtitle {
    font-size: 1.25rem; /* 20px */
    width: 75%;
    max-width: 50rem;
  }
  #hero .cs-button-group {
    gap: 2rem;
  }
}

/*# sourceMappingURL=critical.css.map */
