#hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero-img-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;
  text-align: right;
}
#hero .content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#hero .content,
#hero .container {
  height: inherit;
}

#hero .content .heading-1 {
  line-height: 1.1;
}
#welcome .flex {
  flex-direction: column;
  gap: 1.375rem;
}
#welcome .flex .h {
  max-width: 500px;
}
@media (min-width: 992px) {
  #welcome .flex {
    flex-direction: row;
    justify-content: space-between;
  }
}
#welcome .button {
  display: block;
  width: max-content;
  margin-top: 1rem;
}

#popular .heading {
  color: var(--color-secondary);
}
#popular .section-head {
  position: relative;
}
#popular .section-head img {
  width: 50px;
  top: -1.7rem;
  left: -0.5rem;
  position: absolute;
}
@media (min-width: 768px) {
  #popular .section-head img {
    /* width: 70px; */
    top: -1.735rem;
    left: -1rem;
  }
}
@media (min-width: 992px) {
  #popular .section-head img {
    width: 70px;
  }
}

#popular .popular-item .popular-img-ctn {
  height: 490px;
}
#popular .popular-item {
  width: 100%;
}
#popular .grid {
  gap: 2rem;
}
#popular .popular-item-name {
  padding: 1rem;
  text-align: center;
  color: var(--color-secondary);
  background-color: var(--color-primary);
}
@media (min-width: 768px) {
  #popular .popular-item {
    width: 100%;
  }
  #popular .grid,
  #dive .dive-items.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #popular .popular-item {
    width: 100%;
  }
  #popular .grid,
  #dive .dive-items.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#popular .popular-item .popular-img-ctn img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#dive .dive-items.grid {
  gap: 3rem;
}
#dive .dive-items {
  margin-top: 50px;
}
#dive .dive-items .dive-item h3 {
  color: white;
  margin-bottom: 1.375rem;
}
#dive .heading-2 {
  line-height: 1;
}
.section-head {
  margin-bottom: 4.125rem;
}
#dive .cta {
  text-align: center;
  margin-top: 60px;
}

#seafood .detail .cta {
  margin-top: 2rem;
}
#seafood .detail ul {
  list-style: disc;
  position: relative;
}
#seafood .detail ul li {
  position: relative;
  left: 1.5rem;
  color: var(--color-secondary);
}
#seafood .content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
#seafood .seafood-image-ctn {
  order: 1;
  width: 100%;
  height: 580px;
}
#seafood .detail {
  order: 2;
}
#seafood .seafood-image-ctn img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  #seafood .seafood-image-ctn {
    margin: 0;
    order: 2;
    max-width: 500px;
  }
  #seafood .content {
    justify-content: space-between;
  }
}
#seafood .heading-2 {
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 2rem;
}
.section-bg-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/lobster-2.jpg");
  height: 70vh;
}
