/*
Theme Name: BytNexo
Theme URI: https://bytnexo.com
Author: BytNexo Studio
Author URI: https://bytnexo.com
Description: BytNexo is a lightweight multipurpose WordPress theme mainly focused on modern e-commerce solutions. It is optimized for speed, SEO, and flexibility, with a strong foundation for building custom WooCommerce stores and professional websites.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bytnexo
Tags: ecommerce, custom, lightweight, responsive, multipurpose
*/

/* ================================
   FONT & THEME VARIABLES
   ================================ */

:root {
  /* Primary theme font (default Mulish) */
  --font-primary: "Mulish", sans-serif;

  /* Alternative fonts */
  --font-zolando: "Zolando Sans Expanded", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;
  --font-inter: "Inter", sans-serif;

  /* Font sizes (scalable) */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;

  /* Font weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Theme colors */
  --color-primary: #2d4bf0;
  --color-secondary: #f97316;
  --color-accent: #10b981;
  --color-dark: #111827;
  --color-light: #f9fafb;
  --color-gray: #6b7280;
  --color-border: #e5e7eb;

  /* Container width */
  --container-max: 1200px;

  /* Line-height */
  --line-height-base: 1.6;
}

/* ================================
   BASE STYLES
   ================================ */

html {
  font-size: var(--font-size-base);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: var(--line-height-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  font-size: var(--font-size-base);
  color: var(--color-gray);
}

/* Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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