/*
Theme Name: Dev Marketing Flow
Theme URI: https://devmarketingflow.com
Author: Salifu Mohammed
Author URI: https://devmarketingflow.com
Description: A modern WordPress theme for marketing and development projects
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devmarketingflow
Tags: blog, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

:root {
  /* Primary Colors */
  --primary-color: #4318ff;
  --primary-dark: #3311cc;
  --primary-light: #6b4dff;

  /* Secondary Colors */
  --secondary-color: #3d5afe;
  --accent-color: #ff6b35;
  --accent-orange: #ff5722;

  /* Teal/Cyan Accents */
  --teal-color: #1de9b6;
  --cyan-color: #00bcd4;

  /* Background Colors */
  --bg-color: #ffffff;
  --bg-dark: #1a1d3f;
  --bg-darker: #0f1129;
  --bg-purple: #4318ff;
  --bg-light: #f7f9fc;

  /* Text Colors */
  --text-color: #1a1d3f;
  --text-light: #8f9bba;
  --text-white: #ffffff;

  /* Border & Divider Colors */
  --border-color: #e2e8f0;
  --border-dark: #2d3458;

  /* Chart/Graph Colors */
  --chart-teal: #26deb0;
  --chart-blue: #4facfe;
  --chart-purple: #7c3aed;

  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #4318ff 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  --gradient-teal: linear-gradient(135deg, #1de9b6 0%, #00bcd4 100%);

  /* Font Family */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-light);
  opacity: 1;
}

/* ==========================================================================
   Layout
   ========================================================================== */

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

.site-header {
  background: var(--gradient-primary);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(67, 24, 255, 0.15);
}

.site-content {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 3px solid var(--primary-color);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: var(--text-white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.main-navigation a:hover {
  color: var(--teal-color);
  opacity: 1;
}

/* ==========================================================================
   Content
   ========================================================================== */

article {
  margin-bottom: 2rem;
}

.entry-header {
  margin-bottom: 1.5rem;
}

.entry-content {
  margin-bottom: 1.5rem;
}

.entry-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

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