/*
Theme Name: M Karim
Theme URI: 
Author: Antigravity
Author URI: 
Description: Custom WordPress theme for Dr. M. Karim, optimized for Elementor, responsive, and SEO friendly.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: m-karim
*/

:root {
    --primary-color: #15A662;
    /* Green from the design */
    --secondary-color: #1a5135;
    --text-color: #333333;
    --bg-color: #ffffff;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Noto Sans Thai', sans-serif;
    color: var(--text-color);
}

/* Base style resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Footer Custom Styles if they aren't fully Elementor controlled */
.site-header {
    background-color: var(--bg-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-footer {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: #fff;
    text-align: center;
}