/*
Theme Name: SECLOGICS
Theme URI: https://seclogics.com
Author: SECLOGICS
Author URI: https://seclogics.com
Description: A single-page business theme for IT services, ERP, and InfoSec solutions.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seclogics
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f5f5f5; /* light grey */
}

header {
  background: #708238; /* light olive green */
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

header img {
  max-height: 80px;
  margin-bottom: 0.5rem;
}

nav {
  display: flex;
  justify-content: center;
  background: #aab788; /* lighter olive */
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  display: block;
  transition: background 0.3s;
}

nav a:hover {
  background: #708238;
}

section {
  padding: 3rem 2rem;
  text-align: center;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #708238;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
  color: #708238;
  margin-bottom: 1rem;
}

footer {
  background: #708238;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
