/*
Theme Name: ColorMag Style Theme
Author: Hrithik Yadav
Description: WordPress custom theme inspired by ColorMag layout.
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #eee;
}

header, footer {
  background-color: #000;
  color: white;
  padding: 20px;
}

header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

header nav a:hover {
  color: #9b59b6;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}

footer .footer-column {
  flex: 1;
  padding: 20px;
  min-width: 200px;
}

footer .footer-column h3 {
  border-bottom: 1px solid #888;
  padding-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  border-top: 1px solid #444;
  margin-top: 20px;
}
