/* Import Fonts */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff8f0;
    color: #333;
    scroll-behavior: smooth;
  }
  
  h1, h2, h3 {
    font-family: 'Yatra One', cursive;
    color: #8B0000;
  }
  
  .hero {
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/51/The_delicious_Rajasthani_food.png') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero .overlay {
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    padding: 2rem;
  }

  .hero h1 {
    font-size: 4rem;
    background: linear-gradient(
      90deg,
      #fff 20%,
      #ffd700 40%,
      #ff8c00 60%,
      #fff 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s linear infinite;
    position: relative;
    z-index: 1;
  }
  
  @keyframes shine {
    0% {
      background-position: 200% center;
    }
    100% {
      background-position: -200% center;
    }
  }
  .hero h1:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 140, 0, 0.6);
  }
  
  .btn {
    background-color: #e65100;
    color: white;
    padding: 10px 20px;
    margin-top: 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #bf360c;
  }
  
  .about, .menu, .gallery, .contact {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .menu-items, .images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .menu-items .item, .images img {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .menu-items .item:hover, .images img:hover {
    transform: scale(1.05);
  }
  
  .contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact input, .contact textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact button {
    padding: 1rem;
    background-color: #e65100;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact button:hover {
    background-color: #bf360c;
  }
  
  footer {
    background: #5d4037;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-items, .images {
      flex-direction: column;
      align-items: center;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .btn {
      padding: 8px 16px;
    }
  }

/* Old Rajasthani background styles */

.about, .menu, .gallery {
  background-image: url('https://www.transparenttextures.com/patterns/brick-wall-dark.png');
  background-color: #f4e0b9;
  background-blend-mode: multiply;
  color: #3e2723;
  border-top: 4px double #8b0000;
  border-bottom: 4px double #8b0000;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.about h2, .menu h2, .gallery h2 {
  color: #8B0000;
  text-shadow: 1px 1px 1px #fff8f0;
}

.menu-items .item, .images img {
  background-color: #fffaf0;
  border: 2px solid #d7ccc8;
  padding: 10px;
}
