/*
Theme Name: NH Portfolios Theme
Theme URI: 
Author: Notionhive
Author URI: https://notionhive.com
Description: A modern, responsive WordPress theme designed specifically for portfolios and creative professionals. Built with Elementor compatibility in mind, featuring custom widgets, advanced portfolio layouts, and seamless integration with Elementor page builder.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nh-portfolios-theme
Domain Path: /languages
Tags: portfolio, elementor, responsive, modern, creative, business, photography, design, custom-widgets, customizer, translation-ready, rtl-language-support, featured-images, custom-menu, custom-logo, blog, e-commerce, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Container */
.container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Elementor Compatibility */
.elementor-page .site-header,
.elementor-page .site-footer {
    display: none;
}

.elementor-page .site-content {
    padding: 0;
    min-height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation a {
        padding: 0.75rem 1rem;
    }
}