/* Global Styles for SMK Diponegoro Website */

:root {
    --primary-green: #2d5016;
    --accent-green: #4a7c2a;
    --light-green: #6b9a3a;
    --dark-green: #1a3a0f;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* Global Header Styles */
.header-top {
    background: var(--primary-green) !important;
    color: white;
}

.header-top small {
    color: rgba(255, 255, 255, 0.9);
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-green) !important;
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: var(--accent-green) !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.dropdown-menu {
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.dropdown-item {
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

/* PPDB Button */
.btn-ppdb {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-ppdb:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        padding: 0.5rem 0;
    }
}


