/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #fff8f0;
  color: #333;
}

/* Navbar */
.navbar {
  background: #ff4d4d;
  color: white;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav li a:hover {
  color: #ffd699;
}

/* Header */
.header {
  background: #ffe5d9;
  padding: 2rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  flex-wrap: wrap;
}

.header h1 {
  font-size: 2.5rem;
  color: #ff4d4d;
}

.header h2 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.header img {
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Specials Section */
.boxes {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
}

.boxes h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff4d4d;
}

.box {
  display: inline-block;
  width: 250px;
  margin: 1rem;
  background: #fff8f0;
  padding: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.box:hover {
  transform: translateY(-5px);
}

.box h4 {
  margin: 10px 0;
  color: #333;
  font-size: 1.2rem;
}

.box p {
  color: #555;
  font-size: 0.95rem;
}

/* Contact Section */
.contact {
  background: #ffe5d9;
  padding: 3rem 1rem;
  text-align: center;
}

.contact h2 {
  color: #ff4d4d;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact p {
  margin-bottom: 1.5rem;
  color: #555;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.contact button {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact button:hover {
  background: #e03e3e;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #ff4d4d;
  color: white;
  margin-top: 2rem;
}
