/*
Theme Name: Zeeshan
Theme URI: https://yourwebsite.com
Author: Zeeshan
Author URI: https://yourwebsite.com
Description: A minimal, lightweight WordPress theme optimized for Elementor page builder. Perfect for personal websites and portfolios.
Version: 1.0.0
License: GPL v2 or later
Text Domain: zeeshan
Tags: elementor, minimal, responsive, clean, personal-website
*/

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

html {
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Elementor Specific */
.elementor-page .site-content {
    padding: 0;
}

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