/**
 * GrowWithMH — Additional Custom CSS
 * Loaded after the main stylesheet so it can override anything.
 * Use this file (or the Elementor Custom CSS panel) to add
 * project-specific tweaks without editing the theme.
 *
 * @package GrowWithMH
 */

/* ─── ELEMENTOR SECTION SPACING RESETS ───────────────────── */
.elementor-section.section-no-pad .elementor-container {
    padding-top: 0;
    padding-bottom: 0;
}

/* ─── NAV DESKTOP HIDE CTA (shown via JS) ─────────────────── */
@media ( min-width: 769px ) {
    .nav-cta-btn { display: inline-flex !important; }
    .hamburger   { display: none !important; }
}

/* ─── ELEMENTOR COLUMN VERTICAL ALIGN ────────────────────── */
.elementor-column.v-center > .elementor-column-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ─── WP ADMIN BAR OFFSET ─────────────────────────────────── */
.admin-bar #site-header {
    top: 32px;
}
@media ( max-width: 782px ) {
    .admin-bar #site-header {
        top: 46px;
    }
}

/* ─── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    padding: 8px 16px;
    background: var(--teal);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ─── SELECTION COLOUR ────────────────────────────────────── */
::selection        { background: var(--teal-light); color: var(--navy); }
::-moz-selection   { background: var(--teal-light); color: var(--navy); }

/* ─── FOCUS OUTLINE ───────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}
