/* assets/css/modern-style.css */
/* Modern Typography */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
}

/* Navbar Customization */
.custom-navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%) !important;
    padding: 1rem 0;
}

.custom-navbar .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 127, 0, 0.2);
    transform: translateY(-2px);
}

.custom-navbar .highlight-link {
    background-color: #FF7F00;
    color: white !important;
    margin-left: 10px;
}

.custom-navbar .highlight-link:hover {
    background-color: #e67300;
    box-shadow: 0 4px 10px rgba(255, 127, 0, 0.3);
}

/* Header Banner */
.baktrad-banner {
    background-color: #fff;
    border-bottom: 4px solid #FF7F00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Cards & Content */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 700;
    padding: 1.25rem;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF7F00, #FFD700);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    margin-top: 3rem !important;
}

.visitor-stats {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item strong {
    color: #fff;
    font-size: 1.1em;
}

/* Buttons */
.btn-primary {
    background-color: #FF7F00;
    border-color: #FF7F00;
}

.btn-primary:hover {
    background-color: #e67300;
    border-color: #e67300;
}

/* Main Content Wrapper */
.main-content-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 60vh;
}
