/* Custom styles for Mkopo Rahisi */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #a8e063 !important;
}

.hero-section {
    color: #333;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.btn-success {
    background-color: #a8e063;
    border-color: #a8e063;
    color: #333;
    font-weight: 600;
}

.btn-success:hover {
    background-color: #8fc74a;
    border-color: #8fc74a;
    color: #333;
}

footer {
    margin-top: auto;
}

/* Form styling */
.form-control:focus,
.form-select:focus {
    border-color: #a8e063;
    box-shadow: 0 0 0 0.25rem rgba(168, 224, 99, 0.25);
}

/* Loading animation */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}
