/* Top Bar Styles */
.topBar {
    background: #1a1a1a;
    padding: 8px 0;
    font-size: 0.9rem;
}
.topBar .contact-info a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.topBar .contact-info a:hover {
    color: #007bff;
}
.topBar .social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.topBar .social-links a:hover {
    color: #007bff;
}

/* Header/Navbar Styles */
.navbar {
    padding: 1rem 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-right: 12px;
}

.site-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.navbar .text-muted {
    font-size: 0.9rem;
    color: #888 !important;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    color: #222 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s, background 0.3s;
    border-radius: 5px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus {
    color: #007bff !important;
    background: #f0f8ff;
    font-weight: 600;
}

.navbar-nav .nav-item.active::after,
.navbar-nav .nav-item:hover::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #007bff, #00ff88);
    transform: translateX(-50%);
    transition: width 0.3s;
}

.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transform: translateX(-50%);
    transition: width 0.3s;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}
.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: #007bff;
}
.breadcrumb-item.active {
    color: #007bff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }
    .navbar-nav .nav-link.active {
        background: #f8f9fa;
        border-radius: 5px;
    }
    .navbar-brand img {
        height: 40px;
        width: 40px;
    }
}
@media (max-width: 768px) {
    .topBar {
        text-align: center;
    }
    .topBar .social-links {
        margin-top: 10px;
        text-align: center !important;
    }
    .topBar .contact-info {
        text-align: center;
    }
    .topBar .contact-info a {
        margin: 0 10px;
    }
}
@media (max-width: 576px) {
    .site-title {
        font-size: 1rem;
    }
    .navbar-brand img {
        height: 32px;
        width: 32px;
    }
}

/* Animation Styles */
.navbarHome {
    animation: slideDown 0.5s ease-out;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
} 