
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('Make-Mithai-_-More-a-part-of-your-special-day_625cc799-bac3-42ea-a772-e414b1fc3975_2160x - Copy (1).jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  z-index: 0;
}
.logo, h1, p, .categories, .contact-section {
  position: relative;
  z-index: 1;
}
.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}
h1, p {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
  font-size: 2rem;
  margin-top: 10px;
  color: #6b3e26;
}
p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #5e4b3c;
}
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 1000px;
}
.category {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.category img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  filter: brightness(95%) contrast(105%);
  transition: transform 0.3s ease;
}
.category:hover img {
  transform: scale(1.05);
}
.category-name {
  padding: 10px;
  font-weight: bold;
  color: #6b3e26;
}
.contact-section {
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
  background-color: #1DA851;
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  p { font-size: 1.3rem; }
}
