/*
Theme Name: BytNexo
Theme URI: https://bytnexo.com
Author: BytNexo Solutions
Author URI: https://bytnexo.com
/*
Theme Name: BytNexo
Theme URI: https://bytnexo.com
Author: BytNexo Solutions
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.0.1
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, dark-theme
*/

/* ================================
   THEME VARIABLES
   ================================ */
:root {
  --font-primary: "Montserrat", sans-serif;

  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;

  --color-accent: #ff6c08;
  --color-bg: #111111;
  --color-text: #ffffff;
  --color-light-gray: #d9d9d9;
  --color-gray: #a1a1a1;
  --color-border: #2c2c2c;

  --container-max: 1200px;
  --line-height-base: 1.6;
}

/* ================================
   BASE STYLES
   ================================ */
html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-400);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: var(--line-height-base);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-700);
  margin: 0 0 0.5em;
  color: var(--color-text);
}

/* Paragraphs */
p {
  margin: 0 0 1em;
  font-size: 1rem;
  color: var(--color-light-gray);
}

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

a:hover,
a:focus {
  color: var(--color-text);
}

/* ================================
   CONTAINER
   ================================ */
.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ================================
   BUTTONS
   ================================ */
button,
input[type="submit"],
a.button {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-600);
  background-color: var(--color-accent);
  color: var(--color-text);
  border: none;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover,
input[type="submit"]:hover,
a.button:hover {
  background-color: var(--color-light-gray);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* ================================
   LINKS & TYPOGRAPHY
   ================================ */
strong, b {
  font-weight: var(--font-weight-700);
}

em, i {
  font-style: italic;
}

/* ================================
   IMAGES
   ================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================================
   LISTS
   ================================ */
ul, ol {
  margin: 0 0 1em 1.5em;
  padding: 0;
}

li {
  margin-bottom: 0.5em;
}

/* ================================
   TABLES
   ================================ */
table {
  border-collapse: collapse;
  width: 100%;
  color: var(--color-text);
}

th, td {
  border: 1px solid var(--color-border);
  padding: 0.5em;
  text-align: left;
}

th {
  font-weight: var(--font-weight-600);
  background-color: var(--color-border);
}

/* ================================
   WIDGETS & SIDEBARS
   ================================ */
.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-weight: var(--font-weight-700);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background-color: var(--color-border);
  color: var(--color-light-gray);
  padding: 2rem 1rem;
}

footer a {
  color: var(--color-accent);
}

footer a:hover {
  color: var(--color-text);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }
}

Version: 1.0.1
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: "Montserrat", sans-serif;

  /* Alternative fonts */
  --font-zolando: "Zolando Sans Expanded", sans-serif;
  --font-mulish: "Mulish", 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);
}
