/*
Theme Name: NexusTech Academy
Theme URI: https://example.com/nexustech-academy
Author: NexusTech Creative Team
Author URI: https://example.com
Description: A premium, modern, lightweight, and Elementor-ready WordPress theme built for technology training centres, digital academies, and bootcamps. Features deep navy and yellow branding, elegant glassmorphism effects, responsive layouts, full Elementor Free/Pro compatibility, and WordPress Customizer support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
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: nexustech
Tags: education, technology, elementor, custom-colors, custom-menu, custom-logo, featured-images, full-width-template, theme-options, translation-ready, wide-blocks

NexusTech Academy WordPress Theme, (C) 2026 NexusTech Creative Team.
*/

/* Baseline Reset & Elementor-Ready Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* Primary Navy Palette */
  --nexustech-navy-primary: #071A33;
  --nexustech-navy-deep: #041225;
  --nexustech-navy-secondary: #0D2747;
  --nexustech-navy-surface: #102F50;
  --nexustech-navy-soft: #F4F7FB;

  /* Yellow Accent Palette */
  --nexustech-yellow-primary: #FFD21F;
  --nexustech-yellow-bright: #FFDA44;
  --nexustech-yellow-dark: #E5B900;
  --nexustech-yellow-soft: #FFF4B8;

  /* Neutral Supporting Colors */
  --nexustech-white: #FFFFFF;
  --nexustech-text-dark: #101828;
  --nexustech-text-muted: #667085;
  --nexustech-text-light: #E4E7EC;
  --nexustech-border: #E4E7EC;
  --nexustech-border-navy: rgba(255, 255, 255, 0.12);

  /* Glassmorphism System */
  --nexustech-glass-bg: rgba(255, 255, 255, 0.06);
  --nexustech-glass-border: 1px solid rgba(255, 255, 255, 0.14);
  --nexustech-glass-blur: blur(16px);
  --nexustech-glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);

  /* Typography Scale */
  --nexustech-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --nexustech-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --nexustech-font-mono: 'JetBrains Mono', monospace;

  /* Sizing & Transitions */
  --nexustech-container-width: 1240px;
  --nexustech-radius-sm: 8px;
  --nexustech-radius-md: 14px;
  --nexustech-radius-lg: 20px;
  --nexustech-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-family: var(--nexustech-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--nexustech-text-dark);
  background-color: var(--nexustech-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.elementor-template-canvas {
  background: var(--nexustech-navy-deep);
}

/* WordPress Core Alignment Classes */
.alignwide {
  margin-left: -40px;
  margin-right: -40px;
  max-width: calc(100% + 80px);
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Accessibility: Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--nexustech-yellow-primary);
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--nexustech-navy-deep);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
