/* Unified Template Styles - Based on Artikel Page Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.page-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Section */
.unified-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.unified-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unified-logo {
    text-align: center;
}

.unified-logo img {
    width: 250px;
    height: auto;
}

.unified-logo a {
    text-decoration: none;
    color: #333;
    font-size: 28px;
    font-weight: 600;
}

/* Navigation */
.unified-nav {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.unified-nav ul {
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.unified-nav li {
    position: relative;
}

.unified-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 15px;
}

.unified-nav a:hover {
    background-color: rgba(0,0,0,0.05);
}

.unified-nav li.active a {
    font-weight: 600;
    color: #0066cc;
}

.menu-icon {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 8px;
    font-size: 16px;
}

/* Banner Section */
.unified-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.unified-banner.with-image {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.unified-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.unified-banner h3 {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.unified-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
}

.content-wrapper {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.content-wrapper h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-wrapper h3 {
    color: #444;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 400;
}

.content-wrapper p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper a {
    color: #0066cc;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* Two Column Layout */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.column {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Footer */
.unified-footer {
    background: #2c3e50;
    color: white;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-box p,
.footer-box a {
    color: #b8c1cc;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-box a:hover {
    color: white;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #b8c1cc;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.2);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin: 20px 0;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #45a049;
}

/* Welcome Box */
.welcome-box {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-top: 20px;
}

.welcome-box h3 {
    color: #333;
    margin-bottom: 15px;
}

.welcome-box ul {
    margin-left: 20px;
}

.welcome-box li {
    margin-bottom: 10px;
    color: #666;
}

/* Responsive Design */
@media screen and (max-width: 975px) {
    .unified-header .header-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .unified-nav ul {
        flex-direction: column;
    }
    
    .unified-nav a {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .unified-nav {
        display: none;
    }
    
    .unified-nav.active {
        display: block;
    }
    
    .unified-banner h1 {
        font-size: 2rem;
    }
    
    .unified-banner h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 575px) {
    .unified-logo img {
        width: 180px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .unified-banner {
        padding: 60px 20px;
    }
}