/*
Theme Name: MyTheme
Theme URI: https://radwanstudio.com
Author: RADWAN STUDIO
Author URI: https://radwanstudio.com
Description: WordPress theme converted from RADWAN STUDIO static site. All homepage content editable via Customizer and Custom Post Types (Services, Clients, Projects, Testimonials).
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
*/

/* Base reset and body - matches original static site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--mytheme-primary, #06402B);
}

/* Header: custom logo size */
.custom-logo-link img {
    max-height: 48px;
    width: auto;
    height: auto;
}

/* Primary menu in header */
.primary-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.primary-menu a:hover {
    opacity: 0.9;
}

/* Footer menu */
.footer-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.875rem;
}
.footer-menu a:hover {
    color: #fff;
}
