/*
Theme Name: eLabour Blocksy Child
Template: blocksy
Description: Professional, SEO Optimized & Full-Width Mobile Stretch for elabour.in
Version: 1.5
*/

/* 1. बेसिक रिसेट और ग्लोबल स्टाइल */
body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    background-color: #f0f2f5; 
    margin: 0; 
    padding: 0; 
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* PC पर चौड़ाई को कंट्रोल करने के लिए */
.container { 
    width: 95%; 
    max-width: 1100px; 
    margin: auto; 
    box-sizing: border-box;
}

/* 2. हेडर स्टाइल */
.main-header { 
    background: #004a99; 
    color: white; 
    padding: 15px 0 !important; 
    border-bottom: 4px solid #ffc107; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo h1 { margin: 0; font-size: 28px; letter-spacing: 1px; font-weight: 800; }
.logo h1 a { color: white !important; text-decoration: none !important; }
.logo p { margin: 0; font-size: 12px; color: #ffc107; font-weight: bold; text-transform: uppercase; }

/* 3. मेनू पट्टी */
.nav-menu { 
    list-style: none !important; 
    display: flex !important; 
    gap: 20px; 
    margin: 0; 
    padding: 0; 
    align-items: center; 
}

.nav-menu li { position: relative; list-style: none !important; }
.nav-menu li a { 
    color: white; 
    text-decoration: none; 
    font-weight: 600; 
    padding: 8px 12px; 
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu li a:hover { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* 4. मुख्य बॉक्स (Home Page Hero) */
.hero-section { 
    background: white; 
    padding: 40px 20px; 
    margin: 20px auto; 
    border-radius: 15px; 
    text-align: center; 
}

.hero-section h2 { color: #000; font-size: 28px; margin-bottom: 10px; font-weight: 800; }
.hero-section p { font-size: 18px; color: #444; margin-bottom: 30px; }

/* 5. बटन ग्रिड (इमेज जैसा लुक) */
.btn-box { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    max-width: 900px; 
    margin: 0 auto; 
}

.btn-elabour { 
    padding: 20px; 
    border-radius: 10px; 
    text-decoration: none !important; 
    font-weight: bold; 
    transition: all 0.3s ease; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-elabour span { font-size: 20px; display: block; margin-bottom: 5px; color: #fff; }
.btn-elabour small { font-size: 14px; font-weight: normal; color: rgba(255,255,255,0.9); }

/* बटन के रंग */
.worker-btn { background: #28a745 !important; } /* Green */
.client-btn { background: #b8860b !important; } /* Mustard/Gold */
.machine-reg-btn { background: #0056b3 !important; } /* Blue */
.machine-rent-btn { background: #5bc0de !important; } /* Sky Blue */

.btn-elabour:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.2); opacity: 0.9; }

/* 6. GTranslate & Footer */
.gtranslate_wrapper ul { display: none !important; position: absolute !important; z-index: 9999; }
footer { background: #222; color: #bbb; text-align: center; padding: 20px 0; margin-top: 50px; }

/* 7. मोबाइल रिस्पॉन्सिव फिक्स (Stretched Look) */
@media (max-width: 768px) {
    #main, .ct-container, .container, .hero-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
    }

    .btn-box { 
        grid-template-columns: 1fr; /* मोबाइल पर एक के नीचे एक */
        padding: 0 15px; 
        gap: 12px;
    }

    .btn-elabour { 
        padding: 15px; 
        min-height: unset;
    }

    .hero-section h2 { font-size: 22px; padding: 0 10px; }
}