:root {
  --main-color: #4b2e1e;
  --background: #f3e5d0;
  --color: #b86b4b;
  --light-color: #d38e70;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  color: #4b2e1e;
  font-size: 28px;
  cursor: pointer;
}
.navbar {
  position: fixed;
  top: 0;
  left:0;
  right:0;

  display: flex;
  justify-content: space-between;
  align-items: center;


  padding: 15px 30px;
  background: #f3e5d0;
  color: #4b2e1e;

  box-sizing: border-box;
  z-index: 1000;
}


body.dark-mode {
  background-color: #1f120c;
  color: var(--cream);
}

body.dark-mode .menu-section {
  background-color: #1f120c;
}

body.dark-mode .menu-card {
  background-color: #2b1810;
}

body.dark-mode .menu-card-title h3,
body.dark-mode .menu-card-content p,
body.dark-mode .section-header h2,
body.dark-mode .section-text {
  color: var(--cream);
}

body.dark-mode .navbar.scrolled {
  background-color: #1f120c;
}

body.dark-mode .navbar.scrolled .logo,
body.dark-mode .navbar.scrolled .nav-links a {
  color: var(--cream);
}

.navbar-scroll {
  box-shadow: 0 4px 15px rgba(75, 46, 30, 0.25);
}
.right a {
  padding: 5px;
  text-decoration: none;
  color: #4b2e1e;
}
.content {
  min-height: 100vh;
  background-image: url(imagens/foto1.jpg);
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f3e5d0;
  padding: 20px;
}

.content h1 {
  font-size: 60px;
  margin-bottom: 30px;
  color: #f3e5d0;
}
.content h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #f3e5d0;
}
.hero-button {
  background-color: #b86b4b;
  color: #f3e5d0;
  border: none;
  padding: 14px 32px;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
}
.hero-button:hover {
  background-color: #f3e5d0;
  color: #b86b4b;
}
.centre {
  text-align: center;
  color: #4b2e1e;
}
.centre-h2 {
  font-size: 28px;
}
.centre p {
  font-size: 20px;
}
.menu-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.menu-filter button {
  background-color: #f3e5d0;
  color: #4b2e1e;
  border: 2px solid #b86b4b;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-filter button:hover {
  background-color: #b86b4b;
  color: #f3e5d0;
}

.menu-filter button.active {
  background-color: #b86b4b;
  color: #f3e5d0;
}

 .menu-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 20px;

  display: grid;
  grid-template-columns: repeat(3, 260px);
  gap: 25px;
  justify-content: center;
}

.menu-item {
  background-color: #f3e5d0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(75, 46, 30, 0.15);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(75, 46, 30, 0.22);
}
.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.menu-text{
    padding: 22px;

}
.menu-text h3{
    font-size: 24px;
    margin-bottom: 8px;
    color: #4b2e1e;
}
.menu-text p{
    font-size: 16px;
    color: #d38e70;
    margin-bottom: 14px;
    line-height: 1.5;
}
.menu-text span{
    font-size: 22px;
    color: #4b2e1e;
    font-weight: bold;
    background-color: #b86b4b;
    border-radius: 20px;
    padding: 8px;
   
}
.menu-text span:hover{
  color: #f3e5d0;

}

.story{
    background-color: #f3e5d0;
    padding: 80px 20px;
    margin-top: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

}
.story-text{
    max-width: 500px;
    color: #4b2e1e;

}
.story-text h2{
    font-size: 42px ;
    margin-bottom: 20px;
}
.story-image img{
    width: 400px;
    height: 400px;
    border-radius: 50px;


}
.gallery {
  padding: 70px 20px;
  text-align: center;
  color: #4b2e1e;
}

.gallery h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery p {
  font-size: 18px;
  color: #d38e70;
  margin-bottom: 35px;
}

.gallery-container {
  max-width: 950px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;

  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(75, 46, 30, 0.15);
  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 30px rgba(75, 46, 30, 0.25);
}

.contact {
  color: #4b2e1e;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px 20px;
}

.visit-us{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 36px;
    color: #4b2e1e;
    display: block;
    text-align: center;
}
#open-status {
  font-weight: bold;
  margin-top: 10px;
}

.open {
  color: green;
}

.closed {
  color: red;
}
#back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background-color: #b86b4b;
  color: #f3e5d0;

  font-size: 24px;
  cursor: pointer;

  display: none;
  z-index: 1000;
}

#back-to-top.show {
  display: block;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;

  width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #d38e70;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background-color: #b86b4b;
  color: #f3e5d0;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #4b2e1e;
}

#form-message {
  font-weight: bold;
  margin-top: 5px;
}
.error-message {
  color: red;
  font-size: 13px;
  text-align: left;
  min-height: 16px;
}

.input-error {
  border: 2px solid red !important;
}

.input-success {
  border: 2px solid green !important;
}

 footer {
  background-color: #f3e5d0;
  color: #4b2e1e;
  font-size: 14px;
  text-align: center;
  margin-top: 32px;
  padding: 25px 20px;
}

.socials {
  margin-top: 10px;
}

.socials i {
  font-size: 20px;
  margin: 0 8px;
  color: #b86b4b;
}
 
.lightbox {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0, 0, 0, 0.8);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 3000;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;

  color: white;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;

  z-index: 3001;
}
.reviews {
  background-color: #f3e5d0;
  padding: 70px 20px;
  text-align: center;
  color: #4b2e1e;
}

.reviews h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.reviews-intro {
  font-size: 18px;
  color: #d38e70;
  margin-bottom: 35px;
}

.reviews-container {
  max-width: 950px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.review-card {
  background-color: white;
  padding: 28px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(75, 46, 30, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(75, 46, 30, 0.22);
}

.review-card i {
  color: #b86b4b;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b2e1e;
}

.review-card h4 {
  margin-top: 18px;
  font-size: 18px;
  color: #b86b4b;
}
.map-container {
  max-width: 950px;
  margin: 30px auto;
  padding: 0 20px;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(75, 46, 30, 0.15);
}


@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .right {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .right.active {
    display: flex;
  }

  .content h1 {
    font-size: 40px;
  }

  .content h2 {
    font-size: 22px;
  }

  .menu-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    justify-items: center;
  }
   .menu-item{
   width: 100%;
   max-width: 320px;
   }
  .story {
    flex-direction: column;
    text-align: center;
  }

  .story-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }
  
.gallery-container {
  grid-template-columns: 1fr;
}

.gallery-container img {
  height: 220px;
}

  .contact {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 30px 20px;
  }


  .reviews-container {
  grid-template-columns: 1fr;
}

.review-card {
  max-width: 320px;
  margin: 0 auto;
}
}