/*
Theme Name: Custom Elementor Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A lightweight custom WordPress theme built to work seamlessly with Elementor and Elementor Pro. Supports full-width templates, custom logo, custom colors, animations, and popups via Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: custom-elementor-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Base resets */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222222;
    line-height: 1.6;
    background: #ffffff;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* Site header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    border-bottom: 1px solid #eeeeee;
}

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-logo .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #222222;
    font-weight: 500;
}

/* Content */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    min-height: 60vh;
}

/* Footer */
.site-footer {
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid #eeeeee;
    font-size: 0.9rem;
    color: #666666;
}

.site-footer .copyright {
    margin: 0;
}

/* Elementor full-width page template support */
.elementor-page .site-content {
    max-width: none;
    padding: 0;
}

/* Simple fade-in utility (in case Elementor Pro motion effects aren't available) */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 16px;
    }
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
