body {
  margin: 0;
  padding: 0;
  /* font-family: Arial, Helvetica, sans-serif */
  font-family: 'Playfair Display', serif;
  background-color: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main h1 {
  font-size: 3em;
  font-weight: 500;
}

.banner {
  width: 100%;
  height: 50vh;
  display: grid;
  grid-template-columns: 1fr; 
}

.banner div {
  grid-row-start: 1;
  grid-column-start: 1;
}

.banner-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  max-width: 30%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4em; 
  border-radius: 0.7em;
}

.banner-text h1 {
  margin-bottom: 25px;
}

.banner-info-text {
  font-size: 1.2em;
  line-height: 1.15em;
  max-width: 80%;
}

.banner-cuisines-text {
  margin-top: 25px;
}

@media (max-width: 900px) {
  .banner-text {
    max-width: 80%;
    max-height: 80%;
    padding: 2em;
    margin: 1em;
  }
  .banner-info-text{
    max-width: 100%;
  }
}

.banner-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.1em;
  background-color: black;
}

@media (max-width: 900px) {
  .banner {
    grid-template-columns: 1fr;
  }
  .banner-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #banner-image-1, #banner-image-3 {
    display: none;
  }
}

.banner-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 4em;
  margin-bottom: 2em;
}

.main-content div {
  margin-bottom: 2em;
}

.main-content h3 {
  font-size: 1.5em;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.5em;
}

.main-content p, ul {
  font-size: 1.2em;
  line-height: 1.3em;
  text-align: left;
}

.main-content a {
  color: rgb(237, 167, 47);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.main-content a:hover {
  color: rgb(227, 109, 43);
  transition: 0.2s;
}

.review-button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  /* 0.5em gap between buttons */
  gap: 0.5em; 
  padding: 0;
  margin: 0;
}

.slideshow-button {
  border: none;
  background: none;
}

.slideshow-button img {
  width: 2em;
  height: 2em;
  transition: all 0.1s ease-in-out;
}

.slideshow-button img:hover {
  transform: scale(1.1);
}


@media (max-width: 600px) {
  .main-content {
    width: 90%;
    padding: 1.5em;
    margin-bottom: 0;
  }
  .main-content h3 {
    font-size: 1.5em;
  }
  .main-content p, ul {
    font-size: 1.2em;
    line-height: 1.3em;
  }
  .main-content ul {
    margin-bottom: 0.5em;
  }
}

.slideshow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}