/* ======= CAPT FIERO MODERN - LUXURY AUTOMOTIVE THEME ======= */
:root {
    --bg-black: #050505;
    --bg-dark-grey: #121212;
    --accent-red: #cc0000;
    --accent-gold: #d4af37;
    --text-light: #e0e0e0;
    --text-dim: #a0a0a0;
    --border-grey: #2a2a2a;
    
    --font-heading: "Playfair Display", Didot, "Hoefler Text", Garamond, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-black);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
}

/* ======= NAVIGATION ======= */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-grey);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-red);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--accent-red); }

/* ======= HERO SECTION ======= */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/Car_from_front.jpe') center/cover;
}

.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; color: var(--accent-red); }
.hero-content p { font-size: 1.2rem; color: var(--text-dim); font-style: italic; }

/* ======= CONTENT LAYOUT ======= */
.container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-red);
    padding-left: 1.5rem;
}

.content-card {
    background: var(--bg-dark-grey);
    padding: 2.5rem;
    border: 1px solid var(--border-grey);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.img-fluid {
    width: 100%;
    height: auto;
    border-radius: 2px;
    border: 1px solid var(--border-grey);
    margin: 1.5rem 0;
}

/* ======= DATA TABLES ======= */
table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border-grey); }
th { color: var(--accent-red); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* ======= FOOTER ======= */
.footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border-grey);
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer b { color: var(--accent-red); }

/* ======= UTILS ======= */
.text-red { color: var(--accent-red); }
.mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; }
