/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Vibrant Orange & Clean White */
    --primary-orange: #FF6600;
    --primary-orange-hover: #e65c00;
    --secondary-orange: #FF8533;

    --bg-light: #F4F6F9;
    /* Very slight grey for contrast against white cards */
    --bg-white: #FFFFFF;

    --text-dark: #1F2937;
    --text-muted: #6B7280;

    --border-radius-card: 16px;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- Bootstrap Overrides --- */

/* Navbar */
.navbar-dark {
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 100%) !important;
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 1.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    background-color: var(--bg-white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0 !important;
    padding-top: 1.25rem;
    padding-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-orange-hover) !important;
    border-color: var(--primary-orange-hover) !important;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* Success/Info/Warning tweaks to match the clean aesthetic */
.btn-success {
    background-color: #10B981;
    border-color: #10B981;
}

.btn-info {
    background-color: #3B82F6;
    border-color: #3B82F6;
    color: white;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 0.6rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

/* Typography Utilities */
.text-orange {
    color: var(--primary-orange) !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

/* Landing Page Specifics */
.hero-section {
    background: linear-gradient(135deg, #FFF5EB 0%, #FFFFFF 100%);
    padding: 6rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: -webkit-linear-gradient(45deg, var(--primary-orange), #FF4500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #FFF0E6;
    /* Light Orange Tint */
    color: var(--primary-orange);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

/* Footer Match */
.footer-custom {
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--secondary-orange) 100%) !important;
    color: white;
}