/*
Theme Name:     Hello Elementor Child
Theme URI:      https://4directionsmedia.com/
Description:    A child theme for the Hello Elementor theme.
Author:         Your Name
Author URI:     https://4directionsmedia.com/
Template:       hello-elementor
Version:        1.0.0
Text Domain:    hello-elementor-child
*/

/* ========================
   LOCAL FONTS (@font-face)
======================== */

/* --- Open Sans (Body Text) --- */
@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/Open_Sans/static/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* --- Poppins (Headings) --- */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

body.menu-open { overflow: hidden; }

/* ========================
   VARIABLES & RESET
======================== */
:root {
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --section-spacing: 100px; /* Increased spacing for modern feel */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7; /* Increased for readability */
    background-color: #fdfdfd;
}

/* Typography Scale */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800; /* Extra bold */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

h1 {
    /* Clamps font size: Min 40px, Preferred 5vw, Max 65px */
    font-size: clamp(40px, 5vw, 50px); 
    color: #fff; /* H1 is usually on blue bg */
}

h2 {
    font-size: clamp(36px, 4vw, 50px);
}

h3 { font-size: 1.75rem; font-weight: 700; }
p { margin-bottom: 1.5rem; color: var(--text-gray); font-size: 1.1rem;}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.site-header, .page-header {
    display: none;
}

#wpadminbar {
    direction: ltr;
    color: #c3c4c7;
    font-size: 13px;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 2.46153846;
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 600px;
    z-index: 99999;
    background: #1d2327;
    outline: 1px solid transparent;
    position: relative;
}