/*
Theme Name: TechBoy Media
Theme URI: https://techboymedia.com/
Author: Zachary Hinchey
Author URI: https://techboymedia.com/
Description: A dark-themed, responsive WordPress theme for a computer repair business specializing in laptops, desktops, networking, and servers.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techboymedia
Tags: dark, responsive, custom-background, custom-logo, custom-menu, editor-style
*/
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}
a { color: #90caf9; text-decoration: none; }
a:hover { color: #bbdefb; }
header, footer {
  background-color: #1f1f1f;
  padding: 1rem;
  text-align: center;
}
header h1 { margin: 0; font-size: 2rem; }
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
nav ul li a { color: #e0e0e0; font-weight: bold; }
main {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
section {
  margin-bottom: 2rem;
  background-color: #1e1e1e;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
footer p { margin: 0; font-size: 0.9rem; color: #aaa; }
footer .contact-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
  white-space: pre-line;
}
@media (max-width: 768px) {
  nav ul { flex-direction: column; }
}