html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  background-color: #FFEBF0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  margin: 0;
  padding: 0;
}

.content {
  min-height: auto;
  margin: 0;
  padding: 0;
}

h1 {
  font-family: 'Mansalva';
  font-size: 24px;
  text-transform: uppercase;
  color: black;
  margin: 0;
  padding: 0;
  line-height: 1;
}

h2 {
  font-family: 'Mansalva';
  font-size: 20px;
  text-transform: uppercase;
  color: black;
  margin: 0;
  padding: 0;
  line-height: 1;
}

h3 {
  font-family: 'Montserrat';
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 10%;
  text-transform: uppercase;
  color: black;
  margin: 0;
  padding: 0;
  line-height: 1;
}

p {
  font-family: 'Montserrat';
  font-size: 16px;
  color: black;
  margin: 0;
  padding: 0;
  line-height: 1;
}

div {
  position: relative;
  display: block;
  margin: 0;
}

header {
  width: 100vw;
  height: 60px;
  background-color: #FFEBF0;
  padding: 0;
}

.hero {
  height: calc(100vh - 120px);
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.hero_image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: -1;
}

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

div.hero_text {
  text-align: center;
  z-index: +1;
}

div.hero_text h1,
div.hero_text h3 {
  color: black;
  margin-top: 20px;
}

div.hero_image {
  width: 100%;
} 

.acc_panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: translateY(-8px);
}

.acc_panel.active {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#menu_day .acc_panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  max-width: 500px;
  margin: 0 auto;
}

#menu_day .acc_panel.active {
  display: grid;
}

#menu_day .acc_panel img {
  width: 100%;
  height: auto;
}

#menu_day .acc_panel h2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

div.meal_item {
  display: block;
  margin: 0;
  max-width: 500px;
}

div.meal_item img {
  width: 50%;
  height: auto;
  margin: 10px auto;
  display: block;
}

div.meal_item h2 {
  text-align: center;
  margin-top: 20px;
}

img {
  width: 100vw;
  height: auto;
}

button {
  font-family: 'Montserrat';
  font-size: 16px;
  color: white;
  letter-spacing: 10%;
  text-transform: uppercase;
  margin: 0;
}

section {
  margin: 0;
  padding: 0;
  display: block;
}

.nav_accordeon_01 {
  background-color: #815AEF;
  border: none;
  text-align: left;
  padding: 20px 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.nav_accordeon_01::after,
.nav_accordeon_02::after {
  content: '〉';
  width: 24px;
  height: 24px;
  margin-right: 30px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav_accordeon_01.active::after,
.nav_accordeon_02.active::after {
  transform: rotate(90deg);
}

.nav_accordeon_02 {
  background-color: #0E543D;
  border: none;
  text-align: left;
  padding: 20px 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab;
}

@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
    flex-direction: column;
    padding: 20px;
  }

  .acc_panel,
  #menu_day .acc_panel,
  #menu_meals .acc_panel,
  #menu_drinks .acc_panel {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
  }

  .acc_panel {
    grid-template-columns: none;
  }

  .acc_panel:not(.active) {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }

  .acc_panel.active {
    max-height: 1500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .meal_item {
    width: 100%;
    min-width: auto;
    margin: 0;
  }

  .nav_accordeon_01,
  .nav_accordeon_02 {
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 6%;
  }
}

footer {
  background-color: #0E543D;
  padding: 20px 0;
}

.title_bar {
  background-color: #0E543D;
  padding: 18px 50px;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.footer {
  color: #ffffff;
  text-align: center;
}

.title_bar h1 {
  margin: 0;
  color: #ffffff;
}

.footer h1,
.footer p {
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.acc_panel_op,
.acc_panel {
  padding: 50px;
  box-sizing: border-box;
}

.acc_panel_op:not(.active),
.acc_panel:not(.active) {
  padding: 0;
}

.acc_panel_op p {
  margin: 0 0 8px;
  line-height: 1.6;
  text-align: left;
}

#opening_hours .acc_panel {
  text-align: left;
  display: block;
}
