     * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #4a4e69;
  color: #3e2723;
  line-height: 1.6;
}

/* Dark and Ligt Mode */

body {
    transition: background-color 0.3s, color 0.3s;
    background-color: #4a4e69;
    
}
body.dark-mode {
    background-color: #232739; 
}

.dark-mode .menu-item {
  background: #463D3D;
}
.dark-mode p {
color: white;
}

.theme-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.dark-mode .item-name {
  color: #ffffff;
}



.dark-mode .special-item {
  background: #463D3D
}

.dark-mode .price {
  color: #ffffff;
}

.dark-mode .size {
  color: #ffffff;
}
/* Dark and Ligt Mode  end*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.main-header {
  background-color: #6d4c41;
  color: #f5f1e8;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
}

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

.logo {
  font-size: 3em;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  opacity: 0.9;
}

.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
}

.main-nav {
  margin-top: 20px;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-list a {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 1.1em;
  transition: opacity 0.3s;
}

.nav-list a:hover {
  opacity: 0.7;
}

.menu-section {
  margin-bottom: 50px;
  scroll-margin-top: 20px;
}

.section-title {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

.section-description {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  color: #ffffff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.menu-item, .special-item {
  background-color: #D9D9D9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover, .special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #f5f1e8;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-name {
  font-size: 1.5em;
  color: #6d4c41;
  margin-bottom: 10px;
}

.item-description {
  color: #5d4037;
  margin-bottom: 15px;
  font-size: 0.95em;
}

.item-prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3em;
  font-weight: bold;
  color: #6d4c41;
}

.size {
  color: #795548;
  font-size: 0.9em;
}


.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1em;
}

.specials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* Footer styles */
.main-footer {
  background-color: #6d4c41;
  color: #f5f1e8;
  padding: 60px 20px 30px;
  margin: 50px 0 0 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-section {
  flex: 0 1 auto;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

address {
  font-style: normal;
  line-height: 1.8;
}

address p {
  margin: 8px 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.hours-list li {
  margin: 8px 0;
}

.socials p {
  margin: 8px 0;
  font-size: 1.1em;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(245, 241, 232, 0.3);
  width: 100%;
  font-size: 0.95em;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2em;
  }
  
  .nav-list {
    gap: 15px;
  }
  
  .menu-grid, .specials-container {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2em;
  }
  
  .main-footer {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  
  .footer-section {
    width: 100%;
    max-width: 300px;
  }
  
  .footer-section h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 30px;
  }
  
  .copyright {
    font-size: 0.85em;
  }
}