/* BulkCreator Shared Styles for Header & Footer */
/* Updated to match official branding colors */

/* Header Styles */
.bc-header {
    background: #16264a;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px !important;
    min-height: 72px !important;
    box-sizing: border-box !important;
}

.bc-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100% !important;
}

.bc-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.bc-logo:hover {
    opacity: 0.9;
}

.bc-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.bc-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.bc-logo:hover .bc-logo-text {
    color: #ffffff;
}

.bc-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.bc-nav-links li {
    margin: 0;
}

.bc-nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.bc-nav-links a:hover {
    color: #3b82f6;
}

.bc-nav-links .bc-btn-login {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.bc-nav-links .bc-btn-login:hover {
    background: #2563eb;
    color: white;
}

/* Footer Styles */
.bc-footer {
    background: #16264a;
    color: #dfeef4;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.bc-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bc-footer-column h3 {
    margin-bottom: 1rem;
    color: white;
}

.bc-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bc-footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.bc-footer-logo h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.bc-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bc-footer-column li {
    margin: 0;
    padding: 0;
}

.bc-footer-column a {
    color: #dfeef4;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s;
}

.bc-footer-column a:hover {
    color: #3b82f6;
}

.bc-footer-bottom {
    border-top: 1px solid rgba(223, 238, 244, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(223, 238, 244, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bc-header {
        height: 120px !important;
        min-height: 120px !important;
    }
    
    .bc-nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bc-logo-img {
        height: 28px;
    }
    
    .bc-logo-text {
        font-size: 1.3rem;
    }
    
    .bc-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .bc-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bc-footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bc-logo-img {
        height: 24px;
    }
    
    .bc-logo-text {
        font-size: 1.2rem;
    }
}