/*
Theme Name: Vertex Corporate Solutions
Theme URI: https://vertexcorporatesolutions.com
Author: Vertex Corporate Solutions
Author URI: https://vertexcorporatesolutions.com
Description: A modern, clean WordPress theme for Vertex Corporate Solutions - "The Mantled Oracle". Features vibrant imagery, solid colors, and conversion-optimized design targeting Black professionals and organizations.
Version: 1.0.0
Requires at least: 6.0
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: vertex
Tags: business, corporate, consulting, blog, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready
*/

/* ===================================
   Global Styles
   =================================== */

:root {
  --color-primary: oklch(0.35 0.15 200); /* Deep Teal */
  --color-secondary: oklch(0.70 0.15 85); /* Gold */
  --color-background: oklch(0.98 0 0); /* Off-white */
  --color-text: oklch(0.20 0 0); /* Dark gray */
  --color-text-light: oklch(0.45 0 0); /* Medium gray */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--color-secondary);
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.btn-primary:hover {
  background-color: oklch(0.75 0.15 85);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-background);
  border: 2px solid var(--color-background);
}

.btn-secondary:hover {
  background-color: var(--color-background);
  color: var(--color-primary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .container {
    padding: 0 1rem;
  }
}
