/* Shared styles for all pages */

/* Navbar styles */
.navbar {
    background-color: white;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    margin-left: 1rem;
    font-weight: 500;
}

.dropdown-toggle::after {
    vertical-align: middle;
}

/* Footer styles */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.hover-white:hover {
    color: #fff !important;
    transition: color 0.2s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    /* Navbar mobile styles */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }
    
    /* Footer mobile styles */
    footer .row > div {
        text-align: center;
    }
    
    footer .d-flex {
        justify-content: center;
    }
    
    footer h5 {
        margin-top: 1rem;
        font-size: 1.1rem;
    }
    
    footer ul.list-unstyled {
        margin-bottom: 1.5rem;
    }
    
    footer .mb-2 {
        margin-bottom: 0.5rem !important;
    }
    
    footer .text-white-50 {
        font-size: 0.9rem;
    }
}

/* Ensure all containers are responsive */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
} 