﻿.hh-hero {
      position: relative;
      height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color:white;
      /* Background image set on front end and via admin */
    }

    .hh-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hh-hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 1000px;
      width: 100%;
    }

    .hh-logo {
      width:100%;
      max-width: 400px;
      margin-bottom: 40px;
    }

    @media only screen and (max-width: 667px) {.hh-logo{width:65%}}

    .hh-subheading {
      font-size: 1.2rem;
      letter-spacing: 2px;
      margin-bottom: 40px;
    }

    .hh-headline {
      font-size: 2.5rem;
      margin-bottom: 25px;
      font-family: var(--second-font);
          line-height: 3.3rem;
    }

span.underline-white {
    margin-bottom: 7px;
    border-bottom: 1px solid white;
}

span.underline {
    margin-bottom: 7px;
    border-bottom: 1px solid var(--second-color);
}

    .hh-input-container {
    margin-bottom: 15px;
    position: relative;
    display: flex;
    justify-content: center;
}
    

    .hh-input-container input[type="text"] {
      padding: 15px;
      font-size: 1rem;
      width: 100%;
      max-width: 400px;
      border: none;
      opacity: 0.7;
    border:1px solid white;
    position: relative;
    }


/* .hh-input-container::after {
    content: '\f002';
    font-family: 'FontAwesome';
    font-size: 30px;
    position: relative;
    right: 40px;
    top: 16px;
    z-index: 1;
    width: 0px;
} */
.hh-price-input input[type="text"] {
    padding: 8px;
    font-size: 1rem;
    width: 195px;
    max-width: 400px;
    opacity: 0.7;
    border: 1px solid white;
   position: relative;
}

    .hh-price-input input[type="text"]:focus, .hh-input-container input[type="text"]:focus {
        opacity: 1.0;
        outline: none;
        background-color: var(--second-color);
        color: white;
        border: 1px solid white;
    }

    .hh-dropdowns {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 15px;
    }

    .hh-dropdown {
      position: relative;
      width: 92px;
    }

.hh-dropdown-toggle {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: 1px solid white;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
font-size:inherit;
}

    .hh-dropdown-toggle::after {
      content: '▼';
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.7em;
    }

    .hh-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 180px;
      background-color: #222;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      display: none;
      z-index: 10;
    }

    .hh-dropdown.open .hh-dropdown-menu {
      display: block;
    }

    .hh-dropdown-item {
      padding: 10px 16px;
      color: white;
      cursor: pointer;
        text-align: left;
    }

    .hh-dropdown-item:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .hh-cta-button {
      padding: 15px 30px;
      font-size: 1.2rem;
      color: white;
      background-color: var(--third-color);
      border: 1px solid var(--second-color);
      cursor: pointer;
      animation: hh-blink 1.5s ease-in-out 3;
      color:var(--second-color);
      text-transform: uppercase;
      width: 100%;
    max-width: 400px;
    }


.hh-cta-button-adv {
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white ! Important;
    background-color: #ffffff30;
    border: 1px solid white;
    cursor: pointer;
    /* animation: hh-blink 1.5s ease-in-out 3; */
    color: var(--second-color);
    text-transform: uppercase;
    width: 100%;
    max-width: 400px;
display:inline-block;
text-decoration:none;
    }

       .hh-cta-button:hover, .hh-cta-button-adv:hover {opacity: 0.8;} 

    @keyframes hh-blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    @media (max-width: 768px) {
      .hh-headline {
        font-size: 1.5rem;
line-height:1.5;
      }

      .hh-dropdowns {
        flex-direction: row;
        align-items: center;
      }

      .hh-input-container input,
      .hh-dropdown, .hh-price-input input[type="text"] {
        width: 48%;
        max-width: 400px;
      }
    }