﻿/* Font and Base Style */
body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #2d2d2d;
    background-color: #f9fafb;
}
html {
    scroll-behavior: smooth;
}

.hero {
    background: linear-gradient(to right, #f0f4f8, #e8edf3);
    padding: 5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.05);
}


.card {
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: scale(1.015);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
}
.invoice-create-page .card:hover {
    transform: none !important;
    transition: none !important;
}
.invoice-preview-page .card:hover {
    transform: none !important;
    transition: none !important;
}
.no-car-hover {
    transform: none !important;
    transition: none !important;
}
/* Buttons */
.btn-primary {
    background-color: #0b3d91;
    border-color: #0b3d91;
}

    .btn-primary:hover {
        background-color: #092e6c;
        border-color: #092e6c;
    }

.btn-outline-secondary:hover {
    background-color: #dee2e6;
}

/* Blockquotes for Testimonials */
.blockquote {
    font-size: 1.125rem;
    color: #555;
}

.blockquote-footer {
    font-size: 0.9rem;
    color: #999;
}
section {
    padding: 4rem 0;
}

section.bg-light {
    background-color: #f9fafc;
}
