/*
 Theme Name:   Starter Child Theme
 Theme URI:    https://github.com/mercuria/wp-starter
 Description:  A minimal child theme for Hello Elementor, optimized for rapid deployment
 Author:       Mercuria
 Author URI:   https://mercuria.io
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  starter-child
 Requires at least: 6.0
 Tested up to: 6.4
 Requires PHP: 7.4
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

:root {
    /* These will be overridden by Elementor Kit settings */
    --starter-primary: #0073aa;
    --starter-secondary: #23282d;
    --starter-accent: #00a0d2;
    --starter-text: #333333;
    --starter-light: #f5f5f5;
    --starter-white: #ffffff;
}

/* Ensure smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reset focus outline for better accessibility */
*:focus {
    outline: 2px solid var(--starter-primary);
    outline-offset: 2px;
}

/* ==========================================================================
   Typography Defaults (Elementor Kit will override)
   ========================================================================== */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--starter-text);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ==========================================================================
   Elementor Overrides
   ========================================================================== */

/* Ensure full-width sections work properly */
.elementor-section.elementor-section-full_width,
.e-con.e-con-full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Fix container alignment in Elementor */
.elementor-container {
    max-width: 1200px;
}

/* Better button transitions */
.elementor-button {
    transition: all 0.3s ease;
}

.elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */

@media (max-width: 767px) {
    .elementor-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Stack columns on mobile by default */
    .elementor-row {
        flex-direction: column;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .elementor-widget-button,
    .elementor-widget-form,
    .site-header,
    .site-footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
