/*
Theme Name: Studio theme by wpfastservice
Theme URI: https://wpfastservice.com/
Author: Imad
Author URI:https://wpfastservice.com/
Description: A minimalist, high-performance WordPress theme engineered for digital agencies and creative studios. Features 0px sharp aesthetics, strict typographic grids, and responsive layouts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
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: studio-theme
Tags: portfolio, agency, minimalist, responsive, custom-colors, grid-layout, translation-ready
*/

:root {
  --primary-color: #d90429;
  --primary-dark: #ac001e;
  --surface-bg: #f5fafc;
  --surface-lowest: #ffffff;
  --surface-container: #eaeff1;
  --surface-container-low: #eff4f6;
  --on-surface: #171c1e;
  --on-surface-variant: #5d3f3d;
}

/* Base Reset & Zero-Radius Rule */
*, *::before, *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--surface-bg);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--on-surface);
  margin-top: 0;
}

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

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

/* Utility classes */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #171c1e;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--on-surface);
  border: 2px solid var(--on-surface);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--on-surface);
  color: #ffffff;
}

nav.navigation.pagination .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
}

