* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: #3e2723;
  line-height: 1.6;
  background-color: #f9f6f2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("back.jpg") no-repeat center center/cover;
  color: #fff;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(62, 39, 35, 0.9);
}

.logo {
  font-size: 38px;
  font-weight: bold;
  margin-left: 20px;
  color: #d7ccc8;
}

.logo span {
  color: #8d6e63;
  font-size: 28px;
}

.img-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  margin-right: 20px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #d7ccc8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #8d6e63;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #d7ccc8;
}

.btn {
  display: inline-block;
  background-color: #8d6e63;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #6d4c41;
}

/* About Section */
.about {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #5d4037;
}

.about p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* Menu Section */
.menu {
  padding: 80px 0;
  background-color: #f9f6f2;
}

.menu h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #5d4037;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 10px;
}

.menu-categories button {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  cursor: pointer;
  color: #5d4037;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.menu-categories button.active,
.menu-categories button:hover {
  border-bottom: 2px solid #8d6e63;
  background-color: rgba(141, 110, 99, 0.1);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 20px;
}

.menu-item-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #5d4037;
}

.menu-item-content p {
  margin-bottom: 15px;
  color: #795548;
  font-size: 0.95rem;
}

.price {
  font-weight: bold;
  color: #8d6e63;
  font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background-color: #fff;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #5d4037;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f9f6f2;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #5d4037;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #5d4037;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info i {
  width: 30px;
  color: #8d6e63;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.whatsapp-btn i {
  margin-right: 10px;
}

.map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: #5d4037;
  color: #d7ccc8;
  text-align: center;
  padding: 30px 0;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  color: #d7ccc8;
  font-size: 1.5rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #8d6e63;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px 0;
  }

  .logo {
    margin-bottom: 10px;
  }

  header {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .menu-categories {
    flex-wrap: wrap;
  }

  .menu-categories button {
    margin-bottom: 10px;
  }
}

.new {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #5d4037;
}
