/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header */
header {
  background-color: pink;
  color: black;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo,
.logo-img {
  width: 100px;
  height: auto;
}

.site-title {
  font-size: 24px;
  margin: 0;
}

/* Navigation */
nav {
  background-color: turquoise;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 10px 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
}

nav ul li a.active,
nav ul li a:hover {
  text-decoration: underline;
}

/* Home Page Sections */
.welcome {
  text-align: center;
  padding: 40px 20px;
  background-color: pink;
}

.featured {
  padding: 20px;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery img {
  width: 150px;
  height: 100px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Main Content */
main {
  max-width: 700px;
  margin: 30px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Form Styles (Order + Contact) */
form {
  display: flex;
  flex-direction: column;
}

form h2 {
  text-align: center;
  margin-bottom: 20px;
}

form label {
  margin-top: 15px;
  font-weight: bold;
}

form input,
form select,
form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
}

/* Order Form Specific */
.radio-group,
.checkbox-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.buttons {
  text-align: center;
  margin-top: 20px;
}

.buttons button,
form button {
  background-color: darkmagenta;
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.buttons button:hover,
form button:hover {
  background-color: #0056b3;
}

/* Contact Page Specific */
.contact-form {
  margin-bottom: 30px;
}

.business-info {
  background-color: plum;
  padding: 15px;
  border-radius: 8px;
}

/* Total Message Display */
.total-message {
  margin-top: 15px;
  font-weight: bold;
  color: blue ;
  text-align: center;
}

/* Footer */
footer {
  background-color: pink;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

.social-icons,
.social-media {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social-icons img,
.social-media img {
  width: 30px;
  height: 30px;
}