/* Shared CSS for Dorcha website components */

:root {
    --dorcha-primary: #2563eb;
    --dorcha-primary-dark: #1d4ed8;
    --dorcha-secondary: #6c5ce7;
    --dorcha-accent: #10b981;
    --dorcha-text: #111827;
    --dorcha-text-light: #6b7280;
    --dorcha-bg-light: #f8fafc;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dorcha-text);
    padding-top: 76px;
    /* Account for fixed navbar */
}

/* Navbar Styles */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: background 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dorcha-text) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dorcha-text-light) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--dorcha-primary) !important;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--dorcha-primary) 0%, var(--dorcha-primary-dark) 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

/* Footer Styles */
footer {
    margin-top: auto;
}

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

footer a:hover {
    color: white;
}

footer .fab {
    color: #9ca3af;
    transition: color 0.3s ease;
}

footer .fab:hover {
    color: var(--dorcha-primary);
}

footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

/* Page-specific styles */
.content-container {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Utility classes */
.section-padding {
    padding: 5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .content-container {
        padding: 1rem 0;
    }
}