/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.18.1767648314
Updated: 2026-01-05 22:25:14

*/

@font-face {
    font-family: 'Lexend';
    src: url('fonts/Lexend-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('fonts/PlusJakartaSans-VariableFont_wght.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}



	/* ========== GLOBAL BASE ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ========== CSS VARIABLES ========== */
:root {
  /* Primary Colors - Turquoise WCAG Compliant */
  --primary: hsl(189, 87%, 30%);
  --primary-hsl: 189 87% 30%;
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-medium: hsl(189, 73%, 40%);
  --primary-light: hsl(189, 67%, 95%);
  --primary-original: hsl(189, 79%, 58%);
  
  /* Coral Accent Colors */
  --coral: hsl(14, 89%, 44%);
  --coral-foreground: hsl(0, 0%, 100%);
  --coral-accent: hsl(10, 100%, 64%);
  
  /* Gold Accent */
  --gold: hsl(38, 93%, 50%);
  --gold-dark: hsl(28, 92%, 37%);
  --gold-light: hsl(39, 100%, 96%);
  
  /* Navy Blue - Professional */
  --navy: hsl(213, 52%, 24%);
  --navy-dark: hsl(222, 47%, 11%);
  
  /* Neutrals */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(218, 18%, 27%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(218, 18%, 27%);
  
  --secondary: hsl(220, 14%, 96%);
  --secondary-foreground: hsl(213, 52%, 24%);
  
  --muted: hsl(220, 14%, 96%);
  --muted-foreground: hsl(0, 0%, 32%);
  
  --accent: hsl(189, 67%, 95%);
  --accent-foreground: hsl(189, 87%, 30%);
  
  --success: hsl(160, 84%, 39%);
  --success-foreground: hsl(0, 0%, 100%);
  
  --border: hsl(220, 14%, 91%);
  --input: hsl(220, 14%, 91%);
  --ring: hsl(189, 87%, 30%);
  
  /* Typography */
  --font-body: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Plus Jakarta Sans", sans-serif;
  
  /* Spacing */
  --container-max: 1200px;
  --section-padding: clamp(3rem, 8vw, 6rem);
  --gap-small: 0.5rem;
  --gap-medium: 1rem;
  --gap-large: 2rem;
  --radius: 0.75rem;
  
  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
  --shadow-coral: 0 8px 24px rgba(214, 70, 35, 0.25);
  --shadow-gold: 0 4px 16px rgba(245, 158, 11, 0.15);
	
}
	/* ========== GLOBAL UTILITIES ========== */

.icon {
  flex-shrink: 0;
}

/* Section Utilities */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  line-height: 1;
}

.btn--large {
  padding: 1.125rem 2.5rem;
}

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

.btn--primary:hover {
  background: var(--primary-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy);
  color: var(--primary-foreground);
}

.btn--coral {
  background: var(--coral);
  color: var(--coral-foreground);
  box-shadow: var(--shadow-coral);
}

.btn--coral:hover {
  background: var(--coral-accent);
  color: var(--background);
  transform: translateY(-2px);
}

.btn__icon {
  width: 20px;
  height: 20px;
}
