/*
Theme Name: Christopher Pasion
Theme URI: https://christopherpasion.com
Author: Christopher Pasion
Author URI: https://christopherpasion.com
Description: Professional Digital Architect portfolio theme with modern design, responsive layout, motion-enhanced sections, and dark/light mode support.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: christopher-pasion
Tags: portfolio, developer, one-column, custom-colors, custom-menu, featured-images, threaded-comments, dark-mode, motion
Requires at least: 6.7
Requires PHP: 8.3

Professional Digital Architect portfolio theme with modern design, responsive layout, motion enhancements, and dark/light mode support.
*/

:root {
  --primary: #1E90FF;
  --primary-foreground: #FFFFFF;
  --secondary: #FF6F61;
  --secondary-foreground: #FFFFFF;
  --accent: #FF6F61;
  --accent-foreground: #FFFFFF;
  --background: #FFFFFF;
  --foreground: #212529;
  --card: #F8F9FA;
  --card-foreground: #212529;
  --muted: #F8F9FA;
  --muted-foreground: #495057;
  --border: #E9ECEF;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --nav-bg: rgba(255, 255, 255, 0.8);
  --nav-text: #1e293b;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --border-color: #e2e8f0;
}

.dark-mode {
  --primary: #4DA6FF;
  --primary-foreground: #212529;
  --secondary: #FF8A7A;
  --secondary-foreground: #212529;
  --accent: #FF8A7A;
  --accent-foreground: #212529;
  --background: #2D3748;
  --foreground: #F7FAFC;
  --card: #3D4A5C;
  --card-foreground: #F7FAFC;
  --muted: #4A5568;
  --muted-foreground: #A0AEC0;
  --border: #4A5568;
  --nav-bg: rgba(15, 23, 42, 0.8);
  --nav-text: #f8fafc;
  --bg-card: #1e293b;
  --text-main: #f8fafc;
  --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--muted-foreground);
}

.bg-card {
  background-color: var(--card);
}

.bg-section {
  background-color: var(--muted);
}
