section.main {
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* ======== Welcome part ============ */

section.welcome article {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

section.welcome article>img {
    width: 60%;
    border-radius: 15px;
    max-width: 400px;
}

section.welcome article p {
    width: 30%;
}

/* ============ Food presentation part ======= */


section#food_presentation {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    margin-top: 2%;
    margin-bottom: 25%;
}

section#food_presentation :nth-child(even) {

    transform: translateX(10%);
}

section#food_presentation :nth-child(odd) {
    transform: translate(-10%, 50%);
}

section#food_presentation>img.food {
    width: 49%;
    border-radius: 15px;
    max-width: 400px;
}


/* =========== Find us part ======== */

section.findus article {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

section.findus article section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 1%;
}

img.storefront {
    margin-top: 2%;
    max-width: 50%;
    border-radius: 15px;
    width: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-height: 500px;
    max-width: 400px;
}

section.storefront {
    display: flex;

}

.access {
    width: 40%;
}

#positionmap {
    justify-content: space-evenly;
    align-items: center;
}

#locationinfo {
    width: 80%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

}

iframe {
    background-color: white;

}

#map {
    width: 95%;
    height: 300px;
    font-size: 0.1em;
}

/* ================= Review part ============ */

.google_review {
    /* background-color: white; */
    border-radius: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #444d24;
    max-height: fit-content;
    
}

.google_review .logo {
    background-image:
        url("../pages/media/img/palmanovah_logo.jpg");
    background-origin: border-box;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    border-radius: 50%;
    width: 70%;
    height: 0px;
    font-size: 0em;
    padding-bottom: 70%;
    margin: 0%;

}

.review_section q {
    max-width: 20%;
    min-width: 200px;
    text-align: center;
}

.customer_review {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.customer_review > *{
    padding: 10px;
}

#google_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 20px;
  background-color: white; 
  color: black;

  font-family: 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
}

#google_button:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

#google_button:hover span {
  text-decoration: underline;

}

#google_button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

