/*
Theme Name: LEVEX Theme
Theme URI: https://www.levex-eg.com
Author: LEVEX by Modmag
Author URI: https://modmag.cc
Description: Industrial Level Sensors & Transmitters WordPress Theme - Designed & Manufactured in Egypt. Professional theme for LEVEX level sensing solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: levexegc
Tags: industrial, sensors, level-sensing, egypt, manufacturing, business
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* LEVEX Header Styles */
.levex-header {
    background: linear-gradient(135deg, #004080 0%, #003060 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.levex-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.levex-logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.levex-logo:hover {
    opacity: 0.9;
}

.levex-tagline {
    font-size: 0.75rem;
    color: #66b3ff;
    letter-spacing: 2px;
    margin-top: 2px;
    font-weight: 500;
}

.levex-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.levex-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.levex-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #66b3ff;
    transition: width 0.3s ease;
}

.levex-nav a:hover {
    color: #66b3ff;
}

.levex-nav a:hover::after {
    width: 100%;
}

.levex-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* LEVEX Footer Styles */
.levex-footer {
    background: linear-gradient(135deg, #001a33 0%, #004080 100%);
    color: white;
    margin-top: 80px;
    padding: 50px 0 30px;
}

.levex-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.levex-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.levex-footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 15px;
    color: white;
}

.levex-footer-brand p {
    color: #b3d9ff;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.levex-footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #66b3ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.levex-footer-section ul {
    list-style: none;
    padding: 0;
}

.levex-footer-section ul li {
    margin-bottom: 12px;
}

.levex-footer-section a {
    color: #e6f2ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.levex-footer-section a:hover {
    color: #66b3ff;
}

.levex-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
    text-align: center;
    color: #b3d9ff;
    font-size: 0.9rem;
}

.levex-footer-bottom a {
    color: #66b3ff;
    text-decoration: none;
}

.levex-footer-bottom a:hover {
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .levex-header-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .levex-logo {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .levex-tagline {
        font-size: 0.65rem;
    }
    
    .levex-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #003060;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .levex-nav.active {
        display: flex;
    }
    
    .levex-mobile-toggle {
        display: block;
    }
    
    .levex-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .levex-footer-container {
        padding: 0 20px;
    }
    
    .levex-footer {
        padding: 40px 0 20px;
    }
}
