/* Custom CSS untuk JobPortal */

/* Jumbotron styling */
.jumbotron {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

/* Card hover effect */
.card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Job card styling */
.job-card {
    margin-bottom: 1.5rem;
}

.job-card .card-title {
    color: #2c3e50;
    font-weight: 600;
}

.job-card .card-subtitle {
    color: #7f8c8d;
}

.job-card .badge {
    font-size: 0.75rem;
}

/* Button styling */
.btn-primary {
    background-color: #2575fc;
    border-color: #2575fc;
}

.btn-primary:hover {
    background-color: #1a5fcc;
    border-color: #1a5fcc;
}

/* Form styling */
.form-control:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25);
}

/* Dashboard styling */
.dashboard-card {
    border-left: 4px solid #6a11cb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jumbotron {
        padding: 1.5rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* assets/css/style.css */

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* Navigation Styles */
.navbar-brand {
    font-weight: 700;
    color: #6a11cb !important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.55);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #6a11cb;
}

.navbar-light .navbar-nav .nav-link i {
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    margin-top: auto;
}

footer h5 {
    color: #6a11cb;
    font-weight: 600;
}

footer a:hover {
    color: #6a11cb !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    footer .text-center {
        text-align: left !important;
    }
    
    footer .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

/* Active nav indicator */
.navbar-light .navbar-nav .nav-link.active {
    position: relative;
}

.navbar-light .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6a11cb;
}

/* Dropdown menu hover effect */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #6a11cb;
}

/* Sticky navigation shadow */
.sticky-top {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6a11cb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a0cb8;
}