/* 
 * Biosecurity Authority of Fiji - Permit Application System
 * Custom CSS Styles
 */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.nav-link{color:#fff !important}
.bg-primary {
	background-color: #1e6b35 !important;
	background-image: url(https://permit.baf.com.fj/Tapa-Design-2.png);
	background-size: contain !important;
}

.btn-primary {
    background-color: #1e6b35;
    border-color: #1e6b35;
}

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

.bg-secondary {
    background-color: #3a5a40 !important;
}

.text-primary {
    color: #1e6b35 !important;
}

/* Logo Styling */
.navbar-brand img {
    max-height: 110px;
    margin-right: 10px;
    vertical-align: middle;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.2));
}

/* Hero Section - Full Width */
.hero-section {
    background: linear-gradient(135deg, #1e6b35 0%, #3a5a40 100%);
    padding: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-sizing: border-box;
}

.hero-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-section .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Feature Cards */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: rgba(30, 107, 53, 0.1);
    margin-bottom: 1rem;
}

/* Custom Card Styling */
.card {
    border-radius: 8px;
    overflow: hidden;
}

/* Form Styling */
.form-control:focus, .form-select:focus {
    border-color: #1e6b35;
    box-shadow: 0 0 0 0.25rem rgba(30, 107, 53, 0.25);
}

/* Dashboard Stats */
.stat-card {
    border-left: 4px solid #1e6b35;
    background-color: #fff;
}

/* Application Status Colors */
.status-open {
    color: #007bff;
}

.status-pending {
    color: #ffc107;
}

.status-approved {
    color: #28a745;
}

.status-rejected {
    color: #dc3545;
}

.status-closed {
    color: #6c757d;
}

/* Custom Alert Styling */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Footer Styling */
footer {
    background-color: #1a1a1a;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .feature-icon {
        height: 60px;
        width: 60px;
    }
}
