/*
Theme Name: Quicksteps Business Solution
Theme URI: https://www.qsbs.ca
Description: A premium dark theme with teal accents for business consulting websites. Corporate Noir design with modern animations and glassmorphic elements.
Version: 1.0.0
Author: Quicksteps Business Solution
Author URI: https://www.qsbs.ca
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: quicksteps
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

.site-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-logo {
    height: 52px;
    width: auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a0e27;
  --navy-light: #1a1f3a;
  --navy-lighter: #2a2f4a;
  --teal: #14b8a6;
  --teal-light: #2dd4bf;
  --teal-dark: #0d9488;
  --white: #ffffff;
  --gray-light: #f3f4f6;
  --gray-medium: #9ca3af;
  --gray-dark: #4b5563;
  --background: #0f1117;
  --foreground: #e5e7eb;
  --border: #2d3748;
  --input: #1a202c;
  --accent: #14b8a6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-medium);
}

button, .button {
  padding: 0.875rem 1.75rem;
  background-color: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

button:hover, .button:hover {
  background-color: var(--teal-light);
  transform: translateY(-2px);
}

button:active, .button:active {
  transform: scale(0.97);
}

/* ==========================================
   LAYOUT & CONTAINER
   ========================================== */

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

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.site-header {
  background-color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(10, 14, 39, 0.95);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  color: var(--white);
}
.site-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo:hover {
  color: var(--teal);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-wrap: nowrap;
}

.site-nav a {
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal);
}

.site-nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--teal);
  transition: width 0.3s ease;
}

.site-nav a:hover:after,
.site-nav a.active:after {
  width: 100%;
}

.cta-button {
  background-color: var(--teal);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--teal-light);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}
/* ==========================================
   HERO SECTION - MANUS STYLE
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            rgba(0, 5, 20, 0.78),
            rgba(0, 5, 20, 0.78)
        ),
        url('../images/hero-placeholder.jpg');

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at left center,
            rgba(20,184,166,0.08),
            transparent 60%
        );
}

.hero .container {
    position: relative;
    min-height: 100vh;
    z-index: 2;
}

.hero-inner {
    width: 600px;
    max-width: 600px;
}

.hero-content {
    text-align: left;
    padding-top: 40px;
}

.hero-tagline {
    color: #14b8a6 !important;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 2rem;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #bff7f1 40%,
        #5eead4 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-accent {
    color: #14b8a6;
}

.hero-content p {
    font-size: 1.35rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-image {
    display: none;
}
/* ==========================================
   FLOATING STATS CARD
   ========================================== */

.stats-card {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);

    width: 300px;

    background: rgba(8,15,35,0.45);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;

    padding: 3rem;

    z-index: 100;
}

.stat-card-item {
    text-align: left;
}

.stat-card-number {
    font-family: 'DM Serif Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: #14b8a6;
    margin-bottom: 0.75rem;
}

.stat-card-label {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    line-height: 1.5;
}

.stat-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 2.5rem 0;
}

/* Hide on tablet/mobile */

@media (max-width: 1200px) {
    .stats-card {
        display: none;
    }
}
/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width:1200px) {

    .stats-card {
        display: none;
    }

    .hero-content {
        padding-top: 60px;
    }
}

@media (max-width:768px) {

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-inner {
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
  padding: 6rem 0;
  background-color: var(--navy-light);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background-color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
  transform: translateY(-5px);
}

.service-card:hover::before {
  left: 100%;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

/* ==========================================
   BLOG SECTION
   ========================================== */

.blog {
  padding: 6rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--navy);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-medium);
}

.blog-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.blog-card p {
  margin-bottom: 1rem;
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.blog-card a:hover {
  gap: 1rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
  padding: 6rem 0;
  background-color: var(--navy-light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-form {
  background-color: var(--navy);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--input);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--gray-medium);
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background-color: var(--navy);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--gray-medium);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-medium);
}

/* ==========================================
   SINGLE POST
   ========================================== */

.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

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

.post-header h1 {
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.post-content {
  line-height: 1.8;
  color: var(--foreground);
}

.post-content h2,
.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

/* ==========================================
   PAGE STYLES
   ========================================== */

.page-content {
  padding: 4rem 0;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title h1 {
  margin-bottom: 1rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .site-nav ul {
    gap: 1rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
/* DM Serif Display Font */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');

.site-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.site-nav ul li {
    margin: 0;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.site-nav a:hover {
    color: #14b8a6;
}
