/*
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;
  }
}

.post-template-elementor_theme {
  background-color: var(--bg-overlay);
}

html body,
button,
input,
textarea {
  font-family: 'Gilroy', Helvetica, sans-serif;
}

.font-helvetica {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif !important;
}

.entry-title {
  padding-top: 3rem;
}

.wp-block-post {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 18px rgba(44, 44, 84, 0.10);

  .wp-block-columns {
    margin: 0;
  }

  figure {
    border-radius: var(--radius);
    overflow: hidden;
  }
}

li.wp-block-post::before {
  content: none;
}

body a {
  color: var(--bg);
}