* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #fdf5e6;
  color: #333;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-track {
  background: #fdf5e6;
}

body::-webkit-scrollbar-thumb {
  background-color: #d4a373;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

header {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #d4a373;
}

.menu-toggle {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  margin: 5px 0;
}

nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 60px;
  left: 0;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav.active {
  opacity: 1;
  visibility: visible;
}

nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

nav ul li {
  margin-bottom: 10px;
}


nav ul li a {
  display: block;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 18px;
}

.hero {
  background-image: url('hero-image.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero h1,
.hero p {
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

section {
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d4a373;
}

#about {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

#about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.menu-item {
  background-color: #fff;
  margin: 20px 0;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: left;
  display: flex;
  align-items: center;
}

.menu-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.menu-item h3 {
  font-size: 22px;
  color: #333;
}

.menu-item p {
  font-size: 16px;
  color: #666;
  margin: 10px 0;
}

.menu-item span {
  font-size: 18px;
  color: #d4a373;
}

#contact {
  margin-top: -45px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10;
  max-width: 600px;
  margin: 0 auto;
}

form label {
  font-weight: bold;
  margin: 10px 0;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

form textarea {
  resize: none;
}

form button {
  padding: 10px 20px;
  border: none;
  background-color: #d4a373;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
}

form button:hover {
  background-color: #c49463;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.modal h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.modal p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.modal button {
  padding: 10px 20px;
  background-color: #d4a373;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.modal button:hover {
  background-color: #c49463;
}

footer {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  color: #777;
}

@media (min-width: 600px) {
  .menu-toggle span {
    width: 30px;
    height: 3px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 24px;
  }

  h2 {
    font-size: 32px;
  }

  section {
    padding: 50px 40px;
  }

  .menu-item {
    margin: 20px auto;
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  nav {
    display: flex;
    position: relative;
    width: max-content;
    top: 0;
    box-shadow: none;
    margin-right: 20px;
    opacity: 1;
  }

  nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }

  nav a:hover {
    color: #d4a373;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }

}

@media (min-width: 900px) {
  .hero {
    padding: 140px 20px;
  }

  header {
    padding: 30px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero p {
    font-size: 28px;
  }

  h2 {
    font-size: 36px;
  }

  section {
    padding: 50px 60px;
  }

  .menu-item {
    margin: 20px auto;
    max-width: 800px;
  }
}