/**
 * CSS Custom Properties & Design Tokens
 * Acme Tours Version 2.0 (ennn)
 */

:root {
    --bs-primary: #071f34f2;
    --bs-primary-rgb: 7, 31, 52;
    --brand-navy: #071f34f2;
    --brand-navy-dark: #071f34;
    --brand-primary: #071f34f2;
    --brand-rose: #e11d48;
    --brand-slate: #475569;
    --brand-emerald: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px -2px rgba(7, 31, 52, 0.15), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(7, 31, 52, 0.22), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 9999px;
    --ease-fast: cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
    --ease-normal: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-page);
    line-height: 1.65;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: var(--brand-navy);
    text-decoration: none;
    transition: color var(--ease-fast);
}

a:hover {
    color: var(--brand-rose);
}

/* Primary Color Overrides to #071f34f2 */
.btn-primary {
    background-color: #071f34f2 !important;
    border-color: #071f34f2 !important;
    color: #ffffff !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #071f34 !important;
    border-color: #071f34 !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    color: #071f34f2 !important;
    border-color: #071f34f2 !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: #071f34f2 !important;
    border-color: #071f34f2 !important;
    color: #ffffff !important;
}

.bg-primary {
    background-color: #071f34f2 !important;
}

.text-primary {
    color: #071f34f2 !important;
}

.border-primary {
    border-color: #071f34f2 !important;
}

.badge.bg-primary {
    background-color: #071f34f2 !important;
    color: #ffffff !important;
}
