/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f2d9e5; /* body background orange */
}

/* Header */
header {
  background: #222; /* black header */
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

header .logo {
  height: 60px;
  width: 60px;
  object-fit: cover; /* keeps logo aspect correct */
  border-radius: 50%; /* makes it round */
  border: 2px solid white; /* optional: small white border */
}


header .header-text h1 {
  margin: 0;
  font-size: 2rem;
}

header .header-text p {
  margin-top: 5px;
  font-size: 1rem;
}

/* Products Grid */
#products {
  padding: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.product {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.product img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
}

.product p {
  margin: 5px 0 10px 0;
  font-weight: bold;
}

/* swiggy Button */
.order-btn {
  display: inline-block;
  padding: 8px 15px;
  background:#bc4735;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

.order-btn:hover {
  background: #bc4735;
}

/* Feedback Section */
#feedback {
  padding: 20px;
  margin-top: 30px;
}
