/* Aura-Retail Theme - Flat Colors Inspired by Logo */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9; /* neutral background for readability */
  color: #333;
  line-height: 1.6;
}

p {
  margin-bottom: 15px;
}

/* Header with logo colors */
header {
  background: linear-gradient(to right, #004080, #0099cc); /* subtle blue gradient */
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}

header img {
  height: 50px;
  margin-right: 10px;
}

header h1 {
  margin: 0;
  font-size: 1.5em;
}

/* Navigation links */
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ff6600; /* orange accent from logo */
}

/* Main content area */
main {
  padding: 25px;
  background-color: #ffffff; /* clean white for content */
}

/* Footer strip */
footer {
  background-color: #6633cc; /* purple tone from logo */
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

footer p {
  margin: 0;
}

/* Accent buttons */
button, .highlight {
  background-color: #00cc66; /* green tone from logo */
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #ff6600; /* orange hover accent */
}
