/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1779732299
Updated: 2026-05-25 18:04:59

*/

/* Offset anchor links so sticky header doesn't cover them */
html {
	scroll-padding-top: 63.3px;
	font-size: 18px; 
}

.center-cont {
	margin: 0 auto;
}

.forminator-button-submit {
    display: block !important;
    margin: 0 auto !important;
}

.form-submit {
	text-align: center;
}

/* Universal font size */
body,
.elementor-widget-text-editor { 
    font-size: 1rem; 
}
.elementor-widget-heading h1,
h1 { font-size: 3.815rem; }

.elementor-widget-heading h2,
h2 { font-size: 3.052rem; }

.elementor-widget-heading h3,
h3 { font-size: 2.441rem; }

.elementor-widget-heading h4,
h4 { font-size: 1.953rem; }

.elementor-widget-heading h5,
h5 { font-size: 1.563rem; }

.elementor-widget-heading h6,
h6 { font-size: 1.25rem; }

small { font-size: 0.875rem; }

/* Sticky header */
#sticky-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #0a0f1e;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    transition: box-shadow 0.3s ease;
}
#sticky-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.7);
}

/* Mobile nav drawer - offset by header height */
#hamburger-nav {
    position: fixed;
    top: 63.3px;
    left: 0;
    width: 280px;
    height: calc(100vh - 63.3px);
    background: #0a0f1e;
    z-index: 99999;
    box-shadow: 4px 0 20px rgba(0,0,0,0.5);
    overflow-y: auto;
    padding: 16px 0;
}

/* Remove default ul styles */
#hamburger-nav ul,
#mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Remove default li styles */
#hamburger-nav ul li,
#mobile-nav ul li {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

/* Nav links */
#hamburger-nav a,
#mobile-nav a {
    display: block;
    position: relative;
    padding: 14px 24px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    outline: none;
    transition: color 0.25s ease;
    overflow: hidden;
}

/* Radial hover glow effect */
#hamburger-nav a::before,
#mobile-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at left center,
        rgba(0, 212, 255, 0.12) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

#hamburger-nav a:hover::before,
#mobile-nav a:hover::before {
    opacity: 1;
}

#hamburger-nav a:hover,
#mobile-nav a:hover {
    color: #00d4ff;
}

/* WCAG focus - visible but not an ugly box */
#hamburger-nav a:focus-visible,
#mobile-nav a:focus-visible {
    color: #00d4ff;
    outline: none;
    box-shadow: inset 3px 0 0 #00d4ff;
}

/* Active/current page link */
#hamburger-nav a.current-menu-item,
#mobile-nav a.current-menu-item {
    color: #00d4ff;
    box-shadow: inset 3px 0 0 #00d4ff;
}

/* Subtle divider between items */
#hamburger-nav ul li + li a,
#mobile-nav ul li + li a {
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Remove the old #mobile-nav duplicate box styles */
#mobile-nav {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

/* Hamburger button - no outline, clean */
#hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    outline: none;
}
#hamburger-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.5);
}

/* The three bars */
#hamburger-btn .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* X state when open */
#hamburger-btn[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#hamburger-btn[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#hamburger-btn[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Remove .hamburger-trigger since #hamburger-btn covers it */
.hamburger-trigger {
    background: none;
    border: none;
    outline: none;
}