/*
Theme Name: My Elementor Theme
Theme URI: https://yourwebsite.com/
Author: Leonard K
Author URI: https://yourwebsite.com/
Description: A WordPress theme built for Elementor Free.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-elementor-theme
*/

/* Elementor-Friendly CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--e-global-typography-primary-font-family, sans-serif);
  font-size: var(--e-global-typography-primary-font-size, 16px);
  line-height: 1.6;
  color: var(--e-global-color-text);
  background-color: var(--e-global-color-background);
}

img, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Ensure Elementor containers don’t get unexpected spacing */
.elementor *,
.elementor *::before,
.elementor *::after {
  box-sizing: inherit;
}