/*
Theme Name: سایت شرکت ساختمانی
Theme URI: www.maskantbz.ir
Author: Rasoul Rostami
Author URI: rasoulrostami.com
Description: قالب اختصاصی برای شرکت ساختمانی با نمایش پروژه‌ها و پنل کاربری
Version: 1.0
*/

/* Reset ساده */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

.darkmode-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.darkmode-toggle:hover {
    transform: scale(1.1);
}
}