* {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #3a2e2e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #111;
  color: #fff;
}

.header {
  background-color: transparent;
  padding: 20px 40px;
  position:sticky;
  z-index: 100;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  letter-spacing: 2px;
}

.navbar {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #c89b6d;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 10px 15px;
  color: white;
  border-bottom: 1px solid #333;
}

.dropdown-content a:hover {
  background-color: #c89b6d;
  color: #111;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/home.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #c08a53;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a56c3d;
}

.about {
  padding: 80px 20px;
  background-color: #f8f5f2;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
}

.about-image {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 600px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #3e2f24;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b3f35;
  margin-bottom: 15px;
}

.about .btn {
  background-color: #c08a53;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}

.about .btn:hover {
  background-color: #a56c3d;
}

.menu-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.menu-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.menu-section p {
  font-size: 1.1rem;
  color: #5a4c4c;
  margin-bottom: 40px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.menu-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-content {
  padding: 16px;
}

.menu-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.menu-price {
  font-size: 1rem;
  color: #a0522d;
  margin-bottom: 8px;
}

.menu-desc {
  font-size: 0.95rem;
  color: #6e5d5d;
  line-height: 1.4;
}

.services-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: left;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-description {
  color: #5a4c4c;
  font-size: 1rem;
  line-height: 1.5;
}

.footer {
  position: relative;
  color: white;
  overflow: hidden;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  opacity: 0.3;
  z-index: -1;
  filter: blur(2px);
}

.footer-overlay {
  padding: 60px 20px 30px;
  background: rgba(20, 8, 4, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 80% 80% 0 0 / 15%;
  animation: slideUp 1s ease-in-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-box {
  flex: 1 1 220px;
  min-width: 250px;
}

.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}

.footer-box p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #ddd;
}

.footer-box i {
  color: #c89b6d;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: white;
  background-color: transparent;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #c89b6d;
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  max-width: 100%;
}

.newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
}

.newsletter button {
  padding: 12px 20px;
  background-color: #c89b6d;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter button:hover {
  background-color: #a87445;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom span {
  color: #c89b6d;
  font-weight: bold;
}

.footer-bottom a {
  color: #c89b6d;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  .navbar {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: white;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-box {
    text-align: center;
  }

  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
    border-radius: 5px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
  }

  .about-content {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-image {
    width: 100%;
    height: 200px;
  }

  .service-content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .menu-title {
    font-size: 1.1rem;
  }
}
