.hero-background-image {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../../../img/hero-background-pasta.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 1;
}

.hero-background-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}

.hero-content .tagline {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 20px;
  font-family: var(--font-heading);
}

.hero-content h1 {
  font-family: var(--font-condensed);
  font-size: 54px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

.hero-content p {
  font-family: var(--font-primary);
  color: #E8E9E9;
  font-size: 21px;
  font-weight: 300;
  max-width: 650px;
}

.view-menu {
    position: relative;
    display: block;
    padding: 20px 40px;
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.5s ease;
}

.view-menu:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-style-two {
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 12px;
    border: 2px solid var(--color-accent);
    border-radius: 0px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.btn-style-two:before {
    transition-duration: 1200ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    z-index: 1;
    background: var(--color-accent);
}

.btn-style-two:hover:before {
    top: 0%;
}

.btn-style-two .btn-wrap {
    position: relative;
    z-index: 1;
    float: left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-two .btn-wrap .text-one {
    position: relative;
    display: block;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
    transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
}

/* RESPONSIVE TABLET (≤1024px) */
@media screen and (max-width: 1024px) {
  .hero-content {
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 18px;
  }
}

/* RESPONSIVE MOBILE (≤768px) */
@media screen and (max-width: 768px) {
  .hero-background-image {
    justify-content: center;
    text-align: center;
    padding: 0 16px;
  }

  .hero-content {
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .hero-content .tagline {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .view-menu {
    padding: 16px 32px;
    font-size: 14px;
  }
}

/* RESPONSIVE SMALL MOBILE (≤480px) */
@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .view-menu {
    padding: 14px 24px;
    font-size: 10px;
  }
}