/*
Theme Name: Narrod Modern Theme
Theme URI: https://narrod.ddns.net/
Author: Narrod Solutions
Author URI: https://narrod.ddns.net/
Description: A modern, clean WordPress theme inspired by technology and AI design trends.  It features a minimal aesthetic, thoughtful spacing, bold typography and subtle animations.  This theme is designed as a starting point for Narrod Solutions and can be customised further to match the brand’s colours and content.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: clean, minimal, responsive, technology, AI
Text Domain: narrod-modern-theme
*/

/* Import a modern sans‑serif font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables for easy theming */
:root {
  --primary-color: #0A84FF;
  --secondary-color: #02101F;
  --accent-color: #00C6D7;
  --light-gray: #F5F7FA;
  --dark-gray: #1A1A2E;
  --font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--secondary-color);
  background-color: white;
  line-height: 1.6;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--secondary-color);
  color: white;
}

.site-header .logo {
  font-weight: 600;
  font-size: 1.5rem;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  color: white;
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.primary-menu a:hover {
  color: var(--accent-color);
}

/* Hero section */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(2,16,31,0.8), rgba(2,16,31,0.8)), url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section .hero-buttons {
  margin-top: 2rem;
}

.hero-section .btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
  display: inline-block;
  margin: 0 10px;
}

.hero-section .btn:hover {
  background-color: var(--accent-color);
}

/* Section base */
section {
  padding: 80px 40px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

/* Stats */
.stats-section {
  background-color: var(--dark-gray);
  color: white;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 3rem;
  margin: 0;
  color: var(--accent-color);
}

.stat-item span {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.team-member p {
  margin: 0;
  color: #666;
}

/* CTA */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 60px 40px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-cta {
  background-color: white;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cta-section .btn-cta:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}