/* Default Theme CSS - theme.css */

/* Default Bootstrap Theme Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* Global Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: var(--gray-900);
}

/* Hero Section - Force white text on image backgrounds */
.hero-bg .section-heading,
.hero-bg .section-text,
.cta-bg .section-heading,
.cta-bg .section-text {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Navigation Enhancements */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Section Styling */
.section-heading {
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Button Enhancements */
.cta-button {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card Styling */
.content-card {
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-title {
    color: var(--gray-900);
    font-weight: 600;
}

.card-text {
    color: var(--gray-600);
}

/* Placeholder Content */
.placeholder-content {
    background-color: var(--gray-100);
    border: 2px dashed var(--gray-300);
    color: var(--gray-500);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Styling */
.site-footer {
    background-color: var(--gray-900) !important;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links a {
    color: var(--gray-400) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white) !important;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
}

/* Utility Classes */
.bg-light {
    background-color: var(--gray-100) !important;
}

.text-muted {
    color: var(--gray-500) !important;
}

/* Focus and Accessibility */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white);
}