/* Custom Professional Styling */
/* Dark blue navigation and footer with white text */

/* Navigation styling */
.navbar.navbar-light.bg-light {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%) !important;
    border-bottom: 2px solid #0f2942 !important;
}

.navbar-brand .fw-bolder {
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #a8d5ff !important;
}

/* Footer styling */
footer.bg-light {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%) !important;
    border-top: 2px solid #0f2942 !important;
}

footer .text-muted,
footer .small {
    color: #ffffff !important;
}

footer .link-secondary {
    color: #a8d5ff !important;
}

footer .link-secondary:hover {
    color: #ffffff !important;
}

footer .text-primary,
footer .text-success,
footer .text-dark,
footer .text-secondary {
    color: #ffffff !important;
}

/* Main content area - black text on white background */
main {
    background-color: #ffffff;
    color: #000000;
}

section.bg-light {
    background-color: #ffffff !important;
}

section.bg-light .text-muted {
    color: #333333 !important;
}

/* Ensure headings are black */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000000;
}

/* Ensure paragraphs are black */
p {
    color: #000000;
}

/* Remove Bootstrap icons from list items and use simple bullets */
.list-unstyled li {
    list-style-type: disc !important;
    margin-left: 20px;
}

.list-unstyled {
    padding-left: 20px !important;
}

/* Remove icons from cookie consent buttons */
.cookie-btn i {
    display: none;
}

/* Cookie banner styling to match dark blue theme */
.cookie-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%) !important;
}

/* Ensure buttons maintain good contrast */
.btn-primary {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    border-color: #0f2942;
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f2942 0%, #1a3a5c 100%);
    border-color: #0a1f33;
}

.btn-outline-dark {
    color: #1a3a5c;
    border-color: #1a3a5c;
}

.btn-outline-dark:hover {
    background-color: #1a3a5c;
    border-color: #1a3a5c;
    color: #ffffff;
}

/* Badge styling */
.badge.bg-gradient-primary-to-secondary {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%) !important;
}

/* Text gradient styling */
.text-gradient {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ensure proper contrast for links */
a {
    color: #1a3a5c;
}

a:hover {
    color: #0f2942;
}

/* Mobile navbar toggler icon - make it visible on dark background */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Fix for profile image layout */
.profile {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    background: none !important;
    border-radius: 0 !important;
}

.profile .profile-img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    transform: none !important;
    left: auto !important;
    bottom: auto !important;
}