body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    /*font-family: 'Segoe UI', sans-serif;*/
    transition: background 0.3s, color 0.3s;
  }
  
  .light-mode {
    background: #fefefe;
    color: #111;
  }
  
  .dark-mode {
    background: #1a1a1a;
    color: #f9f9f9;
  }
  
  header {
    display: flex; 
   
    justify-content: space-between;
  
    padding: 10px 20px;
    align-items: center;
    background: burlywood;
  }
  
  .logo {
    width: 80px;
  }

  .admin-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2ac5eb;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
  }
  
  .admin-btn:hover {
    background: #ffcc00;
    color: #1c866d;
  }
  
  
  nav button {
    margin: 0 15px;
    padding: 8px 12px;
    background: #3a97c6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }


  .side-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .side-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .side-nav ul li {
    margin: 20px 0;
  }
  
  .side-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .side-nav ul li a:hover {
    color: #ffcc00;
  }
  

 

  .hero {
    h1{
      font-style: italic;
      font-size: 50px;
  
     }
     p{
      font-style: italic;
      font-size: 50px;
      color: #c6780a;
     }
    text-align: center;
    padding: 50px 10px;
    background-color: #FFF5E4;
    animation: fadeIn 2s ease-in;

    /*background: url('assets/bg.jpg') center/cover;*/

  }

  .hero-text {
    font-size: 3rem;
    font-family: 'Baloo 2', cursive;
    color: #f31f1f;
    text-align: center;
    margin-top: 100px;
  }
  
  .hero-text span {
    font-family: 'Orbitron', sans-serif;
    color: #ffcc00;
  }
  
  .start-order-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d, #ff9900);
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif; /* Or the same font you used */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .start-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    z-index: 0;
  }
  
  .start-order-btn:hover::before {
    left: 100%;
  }
  
  .start-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  

  .menu-preview-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #fff7f0, #ffe9e9);
    text-align: center;
  }
  
  .menu-preview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .menu-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 200px;
    padding: 15px;
    transition: transform 0.3s ease;
  }
  
  .menu-card:hover {
    transform: scale(1.05);
  }
  
  .menu-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .menu-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .menu-card p {
    font-size: 1rem;
    color: #ff4d4d;
  }
  
  .menu-card .discount {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
    font-size: 0.9rem;
  }
  
  .menu-card button {
    margin-top: 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .menu-card button:hover {
    background: #e03d3d;
  }
  
  .view-full-menu-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: #333;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
  }
  
  
  .features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 20px;
    background: #FF6F61;
  }
  
  .feature {
    width: 200px;
    text-align: center;
    margin: 15px;
  }
  
  /*.login-area {
    padding: 30px;
    text-align: center;
    color: #151718;
    background-image: url('../images/anand.png') ;
  
  }
  */
  .login-area {
    position: relative;
    padding: 30px;
    text-align: center;
    color: #151718;
    z-index: 1; /* text and content stay on top */
    overflow: hidden;
  }

  .login-area::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/anand.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* 👈 adjust this value */
    z-index: -1; /* put image behind text */
  }
  
  
  #cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    background: white;
    width: 300px;
    height: 100%;
    box-shadow: -3px 0 10px rgba(0,0,0,0.3);
    padding: 20px;
    display: none;
  }
  
  #cart-panel.hidden {
    display: none;
  }
  
  #cart-panel h2 {
    margin-top: 0;
  }
  
  .qr-mode {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
  }
  
  .qr-mode img {
    width: 150px;
    margin-top: 20px;
    border: 4px solid #fff;
    border-radius: 10px;
  }


  .menu-preview-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #fff7f0, #ffe9e9);
    text-align: center;
  }
  
  .menu-preview-section h2 {
    font-size: 2rem;
    color: #ff4d4d;
    margin-bottom: 30px;
  }
  
  .menu-preview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .menu-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 200px;
    padding: 15px;
    transition: transform 0.3s ease;
  }
  
  .menu-card:hover {
    transform: scale(1.05);
  }
  
  .menu-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .menu-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .menu-card p {
    font-size: 1rem;
    color: #ff4d4d;
  }
  
  .menu-card .discount {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
    font-size: 0.9rem;
  }
  
  .menu-card button {
    margin-top: 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .menu-card button:hover {
    background: #e03d3d;
  }
  
  .view-full-menu-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: #333;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .text-link {
    display: inline-block;
    margin-top: 2px;
    font-size: 25px;
    color: #000000; /* stylish red or your theme color */
    text-decoration:double;
    font-weight: 650;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .text-link:hover {
    color: #1e1c1c; /* lighter red on hover */
    text-decoration: underline; /* optional hover effect */
  }
  

  /* About Section */
.about-section {
  padding: 60px 20px;
  background: #fff8f0;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #f31f1f;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
}

.creators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.creator-card {
  width: 200px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s;
}

.creator-card:hover {
  transform: scale(1.05);
}

.creator-card img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.creator-card h4 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #111;
}

.creator-card p {
  font-size: 0.95rem;
  color: #777;
}

/* Footer */
.main-footer {
  background: #333;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.footer-links a {
  margin: 0 10px;
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  color: #fff;
}

/* Contact Us Button */
.bottom-contact {
  text-align: center;
  padding: 30px 0;
  background: #ffe9e0;
}

.contact-btn {
  background: linear-gradient(to right, #ff4d4d, #ff9900);
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  background: #ff6f61;
  transform: scale(1.05);
}
