/*
Theme Name: LPK Wahana Karya Mandiri Theme
Theme URI: https://wahanakaryamandiri.com
Author: LPK WKM
Description: Custom theme untuk LPK Wahana Karya Mandiri
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.site-header h1 a {
    color: white;
    text-decoration: none;
}

.site-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.main-navigation {
    background: #2c3e50;
    padding: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    transition: background 0.3s;
}

.main-navigation a:hover {
    background: #34495e;
}

.site-main {
    padding: 3rem 0;
    min-height: 60vh;
}

article {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

article h2 a {
    color: #1e3c72;
    text-decoration: none;
    font-size: 1.5rem;
}

article h2 a:hover {
    color: #2a5298;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem 0;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.entry-content {
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #2a5298;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: #1e3c72;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.lowongan-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2a5298;
}

.lowongan-details h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.lowongan-details p {
    margin-bottom: 0.75rem;
}

.site-footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer p {
    margin-bottom: 0.5rem;
}

.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    font-weight: bold;
    transition: all 0.3s;
}

.wa-float:hover {
    background: #128c7e;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .site-header h1 {
        font-size: 1.5rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation a {
        padding: 0.75rem;
        border-bottom: 1px solid #34495e;
    }
    
    article {
        padding: 1.5rem;
    }
    
    .wa-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}