* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  width: 100%;
  min-height: 100vh;
  background: url('img/Background2.png') no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  color: white;
  overflow-x: hidden;
  transition: background 1.5s ease-in-out;
}

/* === HEADER === */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: orange;
}

.nav {
  display: flex;
  gap: 15px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: orange;
}
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.search {
  font-size: 20px;
  display: flex;
  gap: 15px;
}

.search i {
  cursor: pointer;
  color: white;
  transition: color 0.3s;
}

.search i:hover {
  color: orange;
}

.nav.mobile {
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}

/* === HERO === */
.heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 120px 20px 80px;
  min-height: 100vh;
  text-align: center;
}

#dynamic-text {
  font-size: 28px;
  margin-bottom: 10px;
  font-style: italic;
}

#typed-text {
  color: orange;
}

.left h1 {
  font-size: 4rem;
  margin: 10px 0;
}

.left p:nth-child(3) {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 20px;
}

.left button {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  background-color: orange;
  color: white;
  cursor: pointer;
}

.left button:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}

.right {
  width: 300px;
  height: 300px;
  background-image: url('img/Background2.png');
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-media {
  position: absolute;
  right: 20px;
  top: 120px;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 150px;
  padding: 10px;
}

.social-media a {
  color: white;
  text-decoration: none;
}

.social-media a:hover {
  color: orange;
}

/* === CART MODAL === */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  color: white;
  align-items: center;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
}

#cart-items {
  margin: 20px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#checkout-btn {
  width: 100%;
  padding: 12px;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

#checkout-btn:hover {
  background-color: #e67e22;
}

/* === MENU === */
.menu-section {
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

.menu-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: orange;
}

.menu-category h3 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: white;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  text-align: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.item h4 {
  font-size: 1.5rem;
  color: white;
}

.item p {
  color: #ddd;
  margin: 10px 0;
  font-size: 14px;
}

.price {
  font-weight: bold;
  color: orange;
  font-size: 1.2rem;
}

.add-to-cart {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.add-to-cart:hover {
  background-color: #e67e22;
}

/* === CHEFS === */
.chefs-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #000;
  color: white;
}

.chefs-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: orange;
}

.chefs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.chef {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  width: 250px;
}

.chef img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.chef h3 {
  color: white;
  margin: 10px 0;
}

/* === ABOUT, GALLERY, TESTIMONIALS, LOCATION, CONTACT === */
/* (Same as previous — kept for brevity) */
.about-section, .gallery-section, .testimonials-section, .location-section, .contact-section {
  padding: 80px 20px;
  color: white;
}

.about-section { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.about-content h2 { color: orange; font-size: 3.5rem; padding: 20px; font-weight: bold; }
.about-content p { font-size: 18px; line-height: 1.6; color: #ddd; }
.about-image img { width: 100%; border-radius: 15px; }

.gallery-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
.gallery-container img { width: 220px; height: 200px; object-fit: cover; border-radius: 10px; }

.testimonials-container { max-width: 800px; margin: 0 auto; gap: 30px; }
.testimonial { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 10px; }
.testimonial strong { color: orange; }

footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #000;
  color: #aaa;
  font-size: 14px;
}

footer a {
  color: orange;
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.mobile { display: flex; }
  .left h1 { font-size: 2.8rem; }
  .chefs-container, .about-section, .contact-container { flex-direction: column; text-align: center; }
}
/* === GENERAL INPUT STYLING === */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  font-family: 'Segoe UI', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(500px);
}

/* Placeholder Text */
input::placeholder,
textarea::placeholder {
  color: #ccc;
  opacity: 0.7;
}

/* Focus State - Glow Effect */
input:focus,
textarea:focus {
  outline: none;
  border: 1px solid orange;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
  transform: scale(1.01);
}

/* Hover Effect */
input:hover,
textarea:hover {
  border-color: #ff8c3a;
  background-color: rgba(255, 255, 255, 0.12);
}

/* Textarea Specific */
textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* Form Group (Optional wrapper for spacing) */
.form-group {
  margin-bottom: 20px;
}
/* === BUTTON STYLING === */
.button[type="submit"],
button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background-color: orange;
  border: 2px solid orange;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  letter-spacing: 0.5px;
}

/* Hover Effect */
.button[type="submit"], button:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

/* Active Press Effect */
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Full-width Button (for mobile forms) */
.btn-full {
  width: 100%;
  text-align: center;
}

/* Secondary Button (Outline) */
.button-outline {
  background-color: transparent;
  color: orange;
}
button a{
    color: white;
    text-decoration: none;
}

.button-outline:hover {
  background-color: orange;
  color: white;
}
#food img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;

}
h4{
    font-size: 12px;
    color: #ddd;
    margin-top: 10px;
}
/* === CART MODAL === */
#cart-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: #111;
  margin: 60px auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  color: white;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: slideIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close:hover {
  color: orange;
  transform: scale(1.1);
}

/* Cart Title */
.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: orange;
  font-size: 1.8rem;
}

/* Empty Cart Message */
#cart-items p {
  text-align: center;
  color: #ccc;
  font-style: italic;
  padding: 20px 0;
}

/* Cart Items List */
#cart-items {
  margin: 20px 0;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 5px;
}

#cart-items::-webkit-scrollbar {
  width: 6px;
}

#cart-items::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

#cart-items::-webkit-scrollbar-thumb {
  background: orange;
  border-radius: 10px;
}

/* Individual Cart Item */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 10px;
  gap: 10px;
  transition: all 0.3s ease;
  animation: fadeInItem 0.3s ease;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

@keyframes fadeInItem {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Cart Item Info */
.cart-item > div:first-child {
  flex: 1;
  min-width: 0;
}

.cart-item span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.cart-item strong {
  font-size: 15px;
  color: white;
}

.cart-item small {
  color: #ccc;
  font-size: 13px;
}

/* Quantity Controls */
.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: #333;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: orange;
  transform: scale(1.1);
}

.qty-input {
  width: 50px;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #555;
  background: #222;
  color: white;
  font-size: 14px;
}

.qty-input:focus {
  outline: none;
  border-color: orange;
  background: #333;
}

/* Remove Item Button */
.remove-item {
  background: transparent;
  color: #e74c3c;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.2s ease;
}

.remove-item:hover {
  color: #c0392b;
  transform: scale(1.2);
}

/* Total Price */
#total-price {
  font-size: 1.3rem;
  text-align: center;
  margin: 20px 0 15px;
  color: white;
  font-weight: bold;
}

/* Cart Actions */
.cart-actions {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

/* Clear All Button */
#clear-all-btn {
  background: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

#clear-all-btn:hover {
  background: #e74c3c;
  color: white;
}

/* Checkout Button */
#checkout-btn {
  width: 100%;
  padding: 14px;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#checkout-btn:hover:not(:disabled) {
  background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

#checkout-btn:disabled {
  background: #777;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

/* Cart Icon Counter */
#cart-counter {
  font-size: 12px;
  color: orange;
  font-weight: bold;
  margin-left: -5px;
  margin-top: -15px;
}