/* 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;
}
/* --- Aktion Page Overhaul Styles --- */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f2942 0%, #1a3a5c 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Action Button (High Contrast) */
.btn-action {
    background: #ff9900; /* Energetic Orange */
    border: 2px solid #ff9900;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-action:hover {
    background: #e68a00;
    border-color: #e68a00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

/* Secondary Hero Button */
.hero-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Profile Image Container */
.profile-img-container {
    border: 5px solid #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1) !important;
}

/* Feature Icons */
.feature {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

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

.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Text Colors specific for dark sections */
.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-warning {
    color: #ffc107 !important;
}
