/* Chameleon Dance Studio - Custom Styles */

:root {
    /* Professional Green & Yellow Color Scheme */
    --primary-color: #2d5016;        /* Dark Green */
    --secondary-color: #6b8e23;      /* Olive Green */
    --accent-color: #9acd32;         /* Yellow Green */
    --highlight-color: #ffd700;      /* Gold Yellow */
    --light-yellow: #fff8dc;         /* Light Yellow */
    --success-color: #228b22;        /* Forest Green */
    --danger-color: #dc3545;         /* Keep red for errors */
    --warning-color: #ffc107;        /* Keep warning yellow */
    --info-color: #17a2b8;           /* Keep info blue */
    --light-color: #f8f9fa;          /* Light Gray */
    --dark-color: #1a1a1a;           /* Dark Gray */
    --white-color: #ffffff;          /* Pure White */
    --gradient-primary: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
    --gradient-secondary: linear-gradient(135deg, #6b8e23 0%, #9acd32 100%);
    --gradient-accent: linear-gradient(135deg, #9acd32 0%, #ffd700 100%);
    --gradient-light: linear-gradient(135deg, #fff8dc 0%, #ffffff 100%);
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f0f8e8;
    padding-top: 70px; /* Account for fixed navbar - reduced for smaller navbar */
}

/* Navigation */
.navbar {
    background: #e8f5e8 !important; /* Light lime green background */
    border-bottom: 2px solid #6b8e23;
    padding: 0.4rem 0 !important;
    min-height: 60px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #2d5016 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    padding: 0.5rem 0 !important;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #2d5016 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    margin: 0 0.15rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(45, 80, 22, 0.1) !important;
    color: #1a1a1a !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    background-color: #9acd32 !important;
    color: #1a1a1a !important;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Main Content Sections */
.container {
    background: #e8f5e8; /* Light lime green background */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    color: #1a1a1a; /* Dark text on light background */
    transition: all 0.3s ease;
}

.container:hover,
.container:focus,
.container.active {
    background: #e8f5e8; /* Keep same light lime green on hover */
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.container-fluid {
    background: transparent;
}

/* Section Backgrounds */
.section-bg-light {
    background: #f0f8e8;
    padding: 3rem 0;
}

.section-bg-light h1,
.section-bg-light h2,
.section-bg-light h3,
.section-bg-light h4,
.section-bg-light h5,
.section-bg-light h6 {
    color: #2d5016;
}

.section-bg-light p {
    color: #1a1a1a;
}

.section-bg-white {
    background: #e8f5e8; /* Light lime green */
    padding: 3rem 0;
}

.section-bg-white h1,
.section-bg-white h2,
.section-bg-white h3,
.section-bg-white h4,
.section-bg-white h5,
.section-bg-white h6 {
    color: #2d5016;
}

.section-bg-white p {
    color: #1a1a1a;
}

.section-bg-green {
    background: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
    color: #ffffff;
    padding: 3rem 0;
}

.section-bg-green h1,
.section-bg-green h2,
.section-bg-green h3,
.section-bg-green h4,
.section-bg-green h5,
.section-bg-green h6 {
    color: #ffffff;
}

.section-bg-green p {
    color: #ffffff;
}

.section-bg-yellow {
    background: linear-gradient(135deg, #9acd32 0%, #ffd700 100%);
    color: #1a1a1a;
    padding: 3rem 0;
}

.section-bg-yellow h1,
.section-bg-yellow h2,
.section-bg-yellow h3,
.section-bg-yellow h4,
.section-bg-yellow h5,
.section-bg-yellow h6 {
    color: #1a1a1a;
}

.section-bg-yellow p {
    color: #1a1a1a;
}

/* Content Cards */
.content-card {
    background: #e8f5e8; /* Light lime green background */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    border: 1px solid rgba(107, 142, 35, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    color: #1a1a1a; /* Dark text on light background */
    transition: all 0.3s ease;
}

.content-card:hover,
.content-card:focus,
.content-card.active {
    background: #e8f5e8; /* Keep same light lime green on hover */
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.15);
}

.content-card .card-header {
    background: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
    color: #ffffff !important;
    border: none;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Ensure all content-card header text is bright white/lime */
.content-card .card-header h1,
.content-card .card-header h2,
.content-card .card-header h3,
.content-card .card-header h4,
.content-card .card-header h5,
.content-card .card-header h6,
.content-card .card-header p,
.content-card .card-header span,
.content-card .card-header div,
.content-card .card-header i,
.content-card .card-header .fas,
.content-card .card-header .far,
.content-card .card-header .fab {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-card .card-body {
    padding: 2rem;
    background: transparent; /* Inherit from parent */
    color: #1a1a1a;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    background: #e8f5e8; /* Light lime green background */
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(107, 142, 35, 0.1);
    color: #1a1a1a; /* Dark text on light background */
}

.card:hover,
.card:focus,
.card.active {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.15);
    border-color: #9acd32;
    background: #e8f5e8; /* Keep same light lime green on hover */
    color: #1a1a1a;
}

.card-body {
    padding: 2rem;
    background: transparent; /* Inherit from parent */
    color: #1a1a1a;
}

.card-header {
    background: linear-gradient(135deg, #2d5016 0%, #6b8e23 100%);
    color: #ffffff !important;
    border: none;
    padding: 1.25rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-header .card-title {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.card-header .card-title.mb-0 {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Ensure all card header text is bright white/lime */
.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6,
.card-header p,
.card-header span,
.card-header div,
.card-header i,
.card-header .fas,
.card-header .far,
.card-header .fab {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Additional card header variations */
.card-header .mb-0,
.card-header .fw-bold,
.card-header .fw-normal,
.card-header .text-white,
.card-header .text-light,
.card-header .btn,
.card-header .btn-close {
    color: #ffffff !important;
}

/* Bootstrap card header overrides */
.card-header .d-flex,
.card-header .justify-content-between,
.card-header .align-items-center {
    color: #ffffff !important;
}

/* Ensure all text elements in card headers are white */
.card-header * {
    color: #ffffff !important;
}

/* Additional header-like elements that should have bright text */
.modal-header,
.alert-heading,
.table thead th,
.list-group-item.active,
.nav-pills .nav-link.active {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ensure modal headers with green backgrounds have white text */
.modal-header.bg-primary,
.modal-header.bg-success,
.modal-header.bg-dark {
    color: #ffffff !important;
}

/* Table headers with green backgrounds */
.table thead th.bg-primary,
.table thead th.bg-success,
.table thead th.bg-dark {
    color: #ffffff !important;
}

/* Dance Icons */
.dance-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-icon {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #9acd32 !important;
    color: #2d5016 !important;
    box-shadow: 0 4px 15px rgba(154, 205, 50, 0.4);
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #b8e050 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(154, 205, 50, 0.5);
    color: #2d5016 !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #6b8e23 0%, #9acd32 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #9acd32 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.4);
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-warning {
    background: linear-gradient(135deg, #9acd32 0%, #ffd700 100%);
    color: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: #1a1a1a !important;
    background: transparent;
    font-weight: 600;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: #e8f5e8;
    border-color: var(--primary-color);
    color: #1a1a1a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.btn-outline-primary:active,
.btn-outline-primary.active {
    background: #d4e9d4 !important;
    border-color: var(--primary-color);
    color: #1a1a1a !important;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success-color);
    color: var(--white-color) !important;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-success:hover {
    background: #1e7e1e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.4);
    color: var(--white-color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Comprehensive button font styling for all buttons */
.btn,
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* All button variants with bright white text (except btn-primary which has dark green text) */
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Outline buttons - white text (except btn-outline-primary which has black text) */
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline-secondary:hover,
.btn-outline-success:hover,
.btn-outline-danger:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-light:hover,
.btn-outline-dark:hover {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Button sizes */
.btn-sm,
.btn-lg {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Button groups */
.btn-group .btn,
.btn-toolbar .btn {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* All button text elements */
.btn *,
.btn i,
.btn .fas,
.btn .far,
.btn .fab,
.btn .fa {
    color: #2d5016 !important;
}

/* Dashboard specific buttons */
.dashboard-btn,
.quick-action-btn,
.action-btn,
.btn-book,
.btn-buy,
.btn-edit,
.btn-contact {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

/* Card action buttons */
.card .btn,
.card-footer .btn {
    color: #2d5016 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Modal buttons */
.modal-footer .btn {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Navigation buttons */
.navbar .btn,
.nav .btn {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Forms */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Tables */
.table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.1);
    background: var(--white-color);
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.table thead th {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    font-weight: 700;
    padding: 1.25rem 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    border-color: rgba(107, 142, 35, 0.1);
    background: var(--white-color);
}

.table tbody tr:hover {
    background: var(--light-yellow);
}

/* Badges */
.badge {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.badge.bg-primary {
    background: var(--gradient-primary) !important;
    color: var(--white-color) !important;
}

.badge.bg-secondary {
    background: var(--gradient-secondary) !important;
    color: var(--white-color) !important;
}

.badge.bg-success {
    background: var(--success-color) !important;
    color: var(--white-color) !important;
}

.badge.bg-warning {
    background: var(--gradient-accent) !important;
    color: var(--dark-color) !important;
}

.badge.bg-danger {
    background: var(--danger-color) !important;
    color: var(--white-color) !important;
}

.badge.bg-info {
    background: var(--info-color) !important;
    color: var(--white-color) !important;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

/* Dashboard Styles */
.dashboard-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.dashboard-stat {
    text-align: center;
    padding: 1rem;
}

.dashboard-stat .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.dashboard-stat .label {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Class Schedule */
.schedule-day {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-color);
}

.class-item {
    background: var(--light-color);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.class-item:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.class-time {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.class-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.class-instructor {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Filters */
.filter-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.filter-section h6 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Instructor Cards */
.instructor-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
}

.instructor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
}

/* Package Cards */
.package-card {
    border: 2px solid var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.2);
}

.package-card.featured {
    border-color: var(--warning-color);
    background: linear-gradient(135deg, #fff3cd 0%, #ffffff 100%);
}

.package-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--warning-color);
    color: white;
    padding: 0.25rem 3rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.package-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--warning-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .dashboard-stat .number {
        font-size: 2rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a2d91;
}

/* Container and Card Text Overrides */
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
    color: #2d5016 !important;
}

.container p,
.container .text-muted {
    color: #1a1a1a !important;
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6 {
    color: #2d5016 !important;
}

.card p,
.card .text-muted {
    color: #1a1a1a !important;
}

.content-card h1,
.content-card h2,
.content-card h3,
.content-card h4,
.content-card h5,
.content-card h6 {
    color: #2d5016 !important;
}

.content-card p,
.content-card .text-muted {
    color: #1a1a1a !important;
}

/* Special handling for light lime green backgrounds */
.section-bg-white .container,
.section-bg-white .card,
.section-bg-white .content-card {
    background: #e8f5e8 !important; /* Light lime green */
    color: #1a1a1a !important;
}

/* Ensure all text is dark on light backgrounds */
.navbar * {
    color: #2d5016 !important;
}

.navbar .nav-link {
    color: #2d5016 !important;
}

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

.navbar .nav-link.active {
    color: #1a1a1a !important;
}

/* Override any white text on light backgrounds */
.container *,
.card *,
.content-card * {
    color: #1a1a1a !important;
}

.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6,
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6,
.content-card h1,
.content-card h2,
.content-card h3,
.content-card h4,
.content-card h5,
.content-card h6 {
    color: #2d5016 !important;
}

.section-bg-white .container h1,
.section-bg-white .container h2,
.section-bg-white .container h3,
.section-bg-white .container h4,
.section-bg-white .container h5,
.section-bg-white .container h6,
.section-bg-white .card h1,
.section-bg-white .card h2,
.section-bg-white .card h3,
.section-bg-white .card h4,
.section-bg-white .card h5,
.section-bg-white .card h6,
.section-bg-white .content-card h1,
.section-bg-white .content-card h2,
.section-bg-white .content-card h3,
.section-bg-white .content-card h4,
.section-bg-white .content-card h5,
.section-bg-white .content-card h6 {
    color: #2d5016 !important;
}

.section-bg-white .container p,
.section-bg-white .container .text-muted,
.section-bg-white .card p,
.section-bg-white .card .text-muted,
.section-bg-white .content-card p,
.section-bg-white .content-card .text-muted {
    color: #1a1a1a !important;
}

/* Print Styles */
@media print {
    .navbar, .btn, footer {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
