/*
Theme Name: Jobarsenal Custom
Author: Mustafa Iftikhar
Description: Custom WordPress theme for Jobarsenal
Version: 1.0
*/

/* Your CSS will go here */

/* Header / Navbar */
.site-header {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;
    background: #F5F5F5;
    z-index: 1000;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #F5F5F5;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
}
/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 20px 30px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-info address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.copyright {
    font-size: 12px;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-info address {
        font-size: 14px;
    }
}