/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Base Typography Variables */
:root {
  --h1-size: 48px;
  --h2-size: 36px;
  --h3-size: 28px;
  --h4-size: 22px;
  --h5-size: 18px;
  --h6-size: 16px;
  --body-size: 16px;
}

/* Heading and Body Base Styling */
h1,
.h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.2;
}
h2,
.h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  line-height: 1.25;
}
h3,
.h3 {
  font-size: var(--h3-size);
  font-weight: 600;
  line-height: 1.3;
}
h4,
.h4 {
  font-size: var(--h4-size);
  font-weight: 500;
  line-height: 1.4;
}
h5,
.h5 {
  font-size: var(--h5-size);
  font-weight: 500;
  line-height: 1.5;
}
h6,
.h6 {
  font-size: var(--h6-size);
  font-weight: 400;
  line-height: 1.5;
}
strong{
	font-weight:600;
}
/* body,
p,
li {
  font-size: var(--body-size);
  line-height: 1.6;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 36px;
  }
  h2,
  .h2 {
    font-size: 30px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  body,
  p,
  li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 26px;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
}

.highlighted-text{
	color: #0096FF;
}