/*
Theme Name: Glover Solutions
Theme URI: https://www.gloversolutions.com
Author: Tim Glover
Author URI: https://www.gloversolutions.com
Description: Custom WordPress theme for Glover Solutions IT Services — Gainesville, GA
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glover-solutions
Tags: business, it-services, custom, responsive
*/

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #f5f5f5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

.mono {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
}

/* =============================================
   NAVIGATION
============================================= */
.site-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Share Tech Mono', monospace;
  font-size: 20px;
  color: #e02020;
  letter-spacing: 0.05em;
}

.site-logo span {
  color: #ffffff;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #cccccc;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #e02020;
}

.nav-cta {
  background: #e02020 !important;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.2s ease !important;
}

.nav-cta:hover {
  background: #c01818 !important;
  color: #ffffff !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  background: #1a1a1a;
  padding: 5rem 2rem 4rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  color: #e02020;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: #e02020;
}

.hero-subtitle {
  color: #999999;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #e02020;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #e02020;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #c01818;
  border-color: #c01818;
  color: #ffffff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #444444;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.btn-outline:hover {
  border-color: #e02020;
  color: #ffffff;
}

/* Contact Card */
.contact-card {
  background: #252525;
  border: 1px solid #333333;
  border-radius: 12px;
  padding: 2rem;
}

.contact-card-name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-card-title {
  font-size: 12px;
  font-weight: 500;
  color: #e02020;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #333333;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.5;
}

.contact-row .dashicons {
  color: #e02020;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-card-link {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333333;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: #666666;
  text-align: center;
}

.contact-card-link a {
  color: #e02020;
  transition: color 0.2s;
}

.contact-card-link a:hover {
  color: #ff4444;
}

/* =============================================
   SECTION SHARED
============================================= */
.section-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  color: #e02020;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   SERVICES SECTION
============================================= */
.services-section {
  background: #ffffff;
  padding: 5rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
  cursor: default;
}

.service-card:hover {
  border-color: #e02020;
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon .dashicons {
  color: #e02020;
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.service-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

/* =============================================
   WHY US SECTION
============================================= */
.why-section {
  background: #1a1a1a;
  padding: 5rem 2rem;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-section .section-eyebrow {
  margin-bottom: 8px;
}

.why-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.why-sub {
  color: #888888;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 15px;
  line-height: 1.5;
}

.checklist li .dashicons {
  color: #e02020;
  flex-shrink: 0;
  margin-top: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: #252525;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 1.25rem;
}

.stat-number {
  font-family: 'Share Tech Mono', monospace;
  font-size: 36px;
  font-weight: 400;
  color: #e02020;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: #666666;
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
  background: #ffffff;
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section .section-header {
  margin-bottom: 2.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #444444;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fafafa;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e02020;
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
}

.wpcf7-submit,
input[type="submit"] {
  background: #e02020;
  color: #ffffff;
  border: none;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.wpcf7-submit:hover,
input[type="submit"]:hover {
  background: #c01818;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #111111;
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #222222;
}

.footer-logo {
  font-family: 'Share Tech Mono', monospace;
  font-size: 18px;
  color: #e02020;
}

.footer-logo span {
  color: #ffffff;
}

.footer-tagline {
  font-size: 12px;
  color: #444444;
  margin-top: 4px;
}

.footer-contact p {
  font-size: 13px;
  color: #666666;
  margin-bottom: 4px;
}

.footer-contact a {
  color: #888888;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #e02020;
}

.footer-web {
  text-align: right;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: #444444;
}

.footer-web a {
  color: #e02020;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 12px;
  color: #333333;
}

/* =============================================
   WORDPRESS CORE
============================================= */
.wp-block-image { margin: 1rem 0; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .hero-inner,
  .why-inner {
    grid-template-columns: 1fr;
  }

  .hero-title { font-size: 36px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-web { text-align: center; }
}

@media (max-width: 680px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    border-top: 1px solid #2a2a2a;
  }

  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-section { padding: 3rem 1.5rem; }
  .hero-title { font-size: 30px; }
  .services-section,
  .why-section,
  .contact-section { padding: 3.5rem 1.5rem; }
  .contact-form { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
