/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff8f0;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
nav {
  background: #ff5722;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  flex-wrap: wrap;
}

nav h2 {
  font-size: 1.2rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffcb05;
}

/* Hero */
.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.hero h1 {
  color: #e63946;
  margin: 1rem 0;
}

/* Grid Layout for Menu/Services */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 2rem 1rem;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 5px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: .5rem;
}

.card h3 {
  font-size: 1rem;
  color: #e63946;
  margin: .3rem 0;
}

.card p {
  font-size: 0.85rem;
  color: #555;
}

/* Contact */
.contact {
  padding: 2rem 1rem;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
  color: #e63946;
}

.order-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #25d366;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background: #1da851;
}

/* Footer */
footer {
  background: #e63946;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: invert(100%); /* makes icons white */
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.2);
}
