/* Google Fonts - 'Exo 2' is techy/automotive */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,700;1,700&display=swap');

body {
    font-family: 'Exo 2', sans-serif;
    color: #1f2937;
    background-color: #f3f4f6;
}

/* BRANDING COLORS */
.bg-secondary { background-color: #1f2937 !important; } /* Dark Grey */
.bg-danger { background-color: #dc2626 !important; } /* Snap-on Red */
.text-danger { color: #dc2626 !important; }

/* NAVBAR */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* HERO SECTION */
.hero-section {
    /* Image of a car on a ramp or in a workshop */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

/* BUTTONS (The 'Speed' Skew) */
.skew-button {
    transform: skew(-15deg);
    border-radius: 0;
    transition: all 0.2s ease;
}
.skew-fix {
    display: inline-block;
    transform: skew(15deg); /* Un-skew the text */
}
.btn-danger:hover {
    background-color: #b91c1c;
    transform: skew(-15deg) translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

/* ICON SQUARES (Not circles for mechanics - rugged squares) */
.icon-square {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transform: rotate(3deg); /* Slight jaunty angle */
}

/* IMAGE STYLING */
.skew-img {
    border-bottom: 5px solid #dc2626;
}

/* CARDS */
.hover-up:hover {
    transform: translateY(-5px);
}

/* FOOTER LINK */
footer a:hover {
    text-decoration: underline !important;
    color: #dc2626 !important;
}