/*
Theme Name: Hello Elementor Child
Description: Child theme of Hello Elementor that adds modern custom Gutenberg blocks (hero, cards, cta, parallax) and a global CSS utilities file.
Author: GitHub Copilot
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Minimal theme styles - main UI is provided by blocks styles and global.css */
:root {
  --bg: #0a1b2b;
  --accent: #00d678;
  --accent-2: #7d59fb;
  --muted: #6b7280;
  --blue1: #00f;
  --blue2: #0077b6;
  --blue3: #062a58;
  --blue4: #000066;

  --gradient: linear-gradient(90deg, var(--accent), var(--accent-2));
  --bg-gradient: linear-gradient(180deg, var(--bg), var(--blue3));
  --radius: 14px;
}

/* ensure child stylesheet loads after parent */

@font-face {
  font-family: 'Gilroy';
  src:
    url('assets/fonts/Gilroy-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

html body {

  @media (min-width: 992px) {
    font-size: 1.15rem;
  }
}

html body,
button,
input,
textarea {
  font-family: 'Gilroy', Helvetica, sans-serif;
}

.font-helvetica {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif !important;
}