/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    color: #333 !important;
}

.nav-link:hover, .nav-link.active {
    color: #800000 !important;
}

.dropdown-item:hover {
    background-color: rgba(128, 0, 0, 0.1) !important;
    color: #800000;
}

/* Button Styles */
.btn-primary {
    background-color: #800000;
    border-color: #800000;
}

.btn-primary:hover {
    background-color: #600000;
    border-color: #600000;
}

.btn-outline-primary {
    color: #800000;
    border-color: #800000;
}

.btn-outline-primary:hover {
    background-color: #800000 !important;
    color: white;
}

.btn-warning {
    background-color: #FFFF00;
    border-color: #FFFF00;
    color: #000;
}

.btn-warning:hover {
    background-color: #E6E600;
    border-color: #E6E600;
    color: #000;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Project Progress */
.progress {
    border-radius: 10px;
}

/* Footer Styles */
.footer {
    background-color: #005DAA;
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

/* Mobile Menu */
.offcanvas {
    transition: transform 0.3s ease-in-out;
}

/* Utility Classes */
.rounded {
    border-radius: 10px !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
}