* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', 'Lora', 'Montserrat', sans-serif;
  }
  
  body {
    background: #C7B7B3;	
  }

  hr {
    max-width: 1172px;
    margin: 0 auto;
    border: none;
    height: 3px;
    background-color: #ccc;
  }
  
  
  .navbar {
    background: #d9d9d9;
    height: 80px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    position: sticky;
    top: 0;
    z-index: 999;
    border-radius: 85px;
    box-shadow: 0px 4px 7px -2px rgba(43, 38, 38, 0.25);
    margin-left: auto; /* Add this line to push the navbar to the center */
    margin-right: auto; /* Add this line to push the navbar to the center */
    max-width: 1172px;
  }
  
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 50px;
  }
  
  .navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
  }
  
  .navbar__item {
    height: 80px;
  }
  
  .navbar__links {
    font-family: 'Montserrat', sans-serif;
    color: #403024;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 15px;
    padding: 0 20px;
    height: 50px; /* thinner height */
    border-radius: 25px; /* half of the height for a rounded effect */
    border: none; /* remove the default button border */
    background-color: #D9D9D9; /* add a background color */
    transition: background-color 0.5s ease-in-out;
  }
  .navbar__links:hover {
    background-color: #9E93A2;
    color: #574F88;
  }
  .navbar__links.active {
    background-color: #725A7B;
    color: #D9D9D9;
  }
  
  @media screen and (max-width: 960px) {
    .navbar__container {
      display: flex;
      justify-content: space-between;
      height: 80px;
      z-index: 1;
      width: 100%;
      max-width: 1300px;
      padding: 0;
    }
  
    .navbar__menu {
      display: grid;
      grid-template-columns: auto;
      margin: 0;
      width: 100%;
      position: absolute;
      top: -1000px;
      opacity: 1;
      transition: all 0.5s ease;
      height: 50vh;
      z-index: -1;
    }
  
    .navbar__menu.active {
      background: #d9d9d9;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      height: 50vh;
      font-size: 1.6rem;
    }
  
    #navbar__logo {
      padding-left: 25px;
    }
  
    .navbar__toggle .bar {
      position: flex;
      width: 25px;
      height: 3px;
      margin: 6.5px auto;
      transition: all 0.3s ease-in-out;
      background: #484848;
    }
  
    .navbar__item {
      width: 100%;
    }
  
    .navbar__links {
      text-align: center;
      padding: 2rem;
      width: 100%;
      display: table;
    }
  
    .navbar__btn {
      padding-bottom: 2rem;
    }
  
    .button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 80%;
      height: 80px;
      margin: 0;
    }
  
    #mobile-menu {
      position: absolute;
      top: 20%;
      right: 5%;
      transform: translate(5%, 20%);
    }
  
    .navbar__toggle .bar {
      display: block;
      cursor: pointer;
    }
  
    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }
  
    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

  .main {
    font-family: sans-serif;
    padding-top: 20px;
  }
  
.hero-contact {
    background-image: url('images/contact-bg.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 70px 0 0px;
    font-size: 24px;
    min-height: 70vh;
  }
  
.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
  }
  
.hero-text {
    flex: 1;
    text-align: center;
    margin-left: 60px;
  }
  
.hero-text h1 {
    padding: 10px 10px;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 96px;
    line-height: 109px;
    text-align: center;
    text-transform: capitalize;
    color: #3C3C3C;
    text-shadow: 7px 6px 9px #D6BDA4;
  }
  
.hero-text p {
    max-width: 535px;
    font-family: 'Lora', serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 31px;
    text-align: center;
    color: #3C3C3C;
  }
  
@media only screen and (max-width: 768px) {
    .hero-container {
      padding: 0;
    }
    .hero-content {
      flex-direction: column;
      text-align: center;
      margin-left: 30px;
      margin-right: 30px;
    }
  
    .hero-text {
      margin: 0;
      text-align: center;
    }

    .hero-text h1 {
      font-size: 62px;
      text-align: center;
      line-height: 60px;
      padding-bottom: 30px;
    }

    .hero-text p {
      text-align: center;
      font-size: 24px;     
      line-height: 30px;
    }
  }

  .btn-content {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #D7D5D2;
    
  }
  
.hero-btn {
    margin: 20px auto;
    padding: 16px 59px;
    width: 354px;
    height: 61px;
    border: none;
    background: #3C3C3C;
    box-shadow: 0px 0px 10px 3px rgba(55, 45, 45, 0.32), inset 0px 1px 7px 2px rgba(172, 106, 106, 0.59);
    border-radius: 82px;
    transition: all 300ms ease-in-out;
  }
  
.hero-btn:hover {
    justify-content: center;
    align-items: center;
   /* padding: 16px 59px;*/
    width: 354px;
    height: 61px;
    background-color: #9E93A2;
    box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
    border-radius: 82px;
}

  .footer-pane {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    min-height: 466px;
    background: #16171B;
  }

.opening-hours {
  background-color: #B3A6AA;
  border-radius: 60px;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  padding-top: 10px;
  margin: 50px 280px;
}

.opening-hours h3 {
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Lora', serif;
  font-size: 24px;
  color: #3C3C3C;
  text-align: center;
  text-decoration: overline;
}

.opening-hours ul {
  text-align: center;
  list-style: none;
}

.opening-hours li {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #3C3C3C;
}

#opening-hours {
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 50px auto;
}

@media only screen and (max-width: 960px) {
  .opening-hours {
    margin: 50px ;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
  }
}
  
/* Form container */
.contact-form {
  max-width: 500px;
  margin: 50px auto;
}

/* Form fields */
.contact-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #3C3C3C;
  text-decoration: overline;
}

.contact-form h3 {
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: 'Lora', serif;
  font-size: 20px;
  color: #3C3C3C;
  text-align: center;
  text-decoration: overline;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 9px;
}

/* Submit button */
.contact-form input[type="submit"] {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #D7D5D2;
  margin: 20px auto;
  width: 354px;
  height: 61px;
  border: none;
  background: #3C3C3C;
  box-shadow: 0px 0px 10px 3px rgba(55, 45, 45, 0.32), inset 0px 1px 7px 2px rgba(172, 106, 106, 0.59);
  border-radius: 82px;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}

.contact-form input[type="submit"]:hover {
  justify-content: center;
  align-items: center;
  width: 354px;
  height: 61px;
  background-color: #9E93A2;
  box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
  border-radius: 82px;
}

/* Hide the anti-spam field */
.contact-form div[aria-hidden="true"] {
  display: none;
}

.contact-form textarea {
  width: 100%;
  padding: 10px;
  resize: vertical;
  margin-bottom: 20px;
  border-radius: 9px;
  color: #ccc;
  border: none;
}

@media only screen and (max-width: 960px) {
  .contact-form label,
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form textarea {
    margin: 10px auto ;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
  }
}

.feedback-form {
  background: #D9D9D9;
  border: none;
  border-radius: 85px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 28px auto;
  height: 130px;
}

.feedback-text {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-style: bold;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  color: #403024;
  margin: auto;
  max-width: 300px;
}

.feedback-btn {
  margin: 40px auto;
  padding: 9px auto;
  width: 220px;
  height: 50px;
  border: none;
  background: #3C3C3C;
  box-shadow: 0px 0px 10px 3px rgba(55, 45, 45, 0.32), inset 0px 1px 7px 2px rgba(172, 106, 106, 0.59);
  border-radius: 82px;
  transition: all 300ms ease-in-out;
  z-index: 70;
}

.feedback-btn:hover {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px auto;
  width: 220px;
  height: 50px;
  background-color: #9E93A2;
  box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
  border-radius: 82px;
}

.feedback-btn-content {
  text-decoration: none;
  text-align: center;
  font-style: normal;
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #C2C1BF;
}

@media only screen and (max-width: 960px) {

  .feedback-form {
    padding: auto;
    display: flex;
    width: 100%;
    min-height: 160px;
    align-items: center;
    align-content: center;
  }

  .feedback-text {
    width: 100%;
    margin-bottom: none;
    margin-left: auto;
    margin-right: auto;
  }

  .feedback-btn {
    margin-top: 12px;
    margin-bottom: 20px;
    transition: all 300ms ease-in-out;
  }

  .feedback-btn:hover {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #9E93A2;
    box-shadow: 0px 3px 10px 2px rgba(55, 45, 45, 0.25), inset 0px 1px 8px rgba(97, 60, 60, 0.46);
  }

  .feedback-btn-content {
    text-decoration: none;
    text-align: center;
    font-style: normal;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #C2C1BF;
  }
}

.cta-section {
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  max-width: 1440px;
  min-height: 223px;
  margin: 150px auto;
}

.cta-find-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 18px;
  text-decoration: none;
  color: #D6BDA4;
  margin-right: 20px;
}

.cta-find-us h5 {
  margin-bottom: 10px;
}

.cta-find-us a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #C7B7B3;
  line-height: 22px;
}

.cta-navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 18px;
  text-decoration: none;
  color: #D6BDA4;
  margin-left: 20px;
}

.cta-navigation h5 {
  margin-bottom: 10px;
}

.cta-navigation a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  color: #C7B7B3;
  line-height: 22px;
}

.copyright {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 14px;
  text-decoration: none;
  color: #D6BDA4;
  max-height: 22px;
  margin-top: 150px;
}

.copyright p {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #C7B7B3;
  padding-left: 5px;
}