/* Section 1 */
.our-location {
  position: relative;
}

.centered-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 3rem;
  font-style: bold;
  font-family: "Cormorant Garamond", serif;
}

.our-location img {
  height: 30vh;
  object-fit: cover;
  display: block;
}

.custom-container {
  position: relative;
  text-align: left;
  color: rgb(252, 252, 252);
  margin: 0;
  padding: 0;
}

/* Section 2 */
#location-section-2 {
  background-color: #5A827E;
  padding-top: 20px;
}

#suggestions-2 {
  max-height: content;
  overflow-y: auto;
  position: absolute;
  width: 600px;
  background-color: white !important;
  z-index: 9999;
  margin-top: 0;
  display: none;
  border: 1px solid grey;
  margin-top: 10px;
  width: 80vw;
}

.custom-heading-one {
  color: black !important;
  font-family: "Cormorant Garamond", serif;
  ;
}

.restaurant h1 {
  margin-top: 0px;
}

.restaurant h1,
.restaurant p {
  color: black;
}

.rest-btn {
  width: 150px;
  /* Set a fixed width */
  padding: 8px 0;
  /* Set vertical padding for height */
  border-radius: 25px;
  border: 1px solid #033331;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 10px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  margin-bottom: 50px;
}

.btn-1 {
  background-color: #033331;
  color: white;
}

.btn-2 {
  background-color: transparent;
  color: #033331;
}

.rest-btn:hover {
  background-color: #ff6900;
  color: white;
  border-color: #ff6900;
}

/* Section 3 */

.loc-custom-img img {
  object-fit: cover;
  width: 100%;
  height: 400px;
  border-top-left-radius: 360px;
  border-top-right-radius: 360px;
  margin-top: 50px;
}

/* section 4 */
#location-section-4 {
  padding: 50px 0px;
  background-color: #137571;
}

.loc-custom-col>img {
  border-radius: 25px;
  width: 400px;
  object-fit: cover;
  display: block;
  height: 40vh;
  width: 100%;
  margin: 20px 0px;
}

.loc-custom-col>h1,
.loc-custom-col>p {
  color: white;
  margin-top: 20px;
}

.loc-section-4-btn {
  background-color: transparent !important;
  border: 1px solid white;
  color: white;
  margin-top: 20px;
}

.loc-section-4-btn {
  background-color: transparent;
}

/* Medium Devices */
@media (min-width: 768px) {

  /* Section 1: */
  .centered-text {
    font-size: 6rem;
  }

  /* Section 4: */
  #location-section-4 {
    padding: 50px 0px;
    background-color: #137571;
  }

  .loc-custom-col>img {
    border-radius: 25px;
    width: 400px;
    object-fit: cover;
    display: block;
    height: 50vh;
    width: 100%;
    margin: 20px 0px;
  }

  .loc-custom-col h1 {
    margin-top: 20%;
  }
}

/* Large Devices */
@media (min-width:992px) {

  /* Section 1:*/
  .centered-text {
    font-size: 8rem;
  }

  /* section-4 */
  .loc-custom-col>h1 {
    font-size: 5rem;
  }

  .loc-custom-col {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: left;
  }

}