@font-face {
    font-family: 'Casanova';
    src: url('Casanova.ttf');
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fcfcfc;
    color: #333;
    overflow-x: hidden;
}

/* NAVIGATION */
nav {
    background-color: #000;
    color: #fff;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #8c764d;
    height: 65px;
}

nav h1 {
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    /* Reduced to 15px to fit more brands */
    font-weight: bold;
    font-size: 12px;
    /* Slightly smaller to fit "Honda" comfortably */
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #8c764d;
}

.luxury-font {
    font-family: 'Casanova', serif;
    font-size: 80px;
    line-height: 0.9;
    color: #8c764d;
    text-transform: uppercase;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
}

.hero .luxury-font span {
    color: #000;
}

.sub-title {
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    width: fit-content;
}

.hero-cars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    gap: 20px;
    margin: 30px 0;
}

.hero-cars img {
    width: 42%;
    max-width: 500px;
    mix-blend-mode: multiply;
}

/* BRAND SECTIONS */
.brand-hero-header {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.brand-hero-header .luxury-font span {
    color: #fff;
}

.brand-section {
    display: flex;
    min-height: 550px;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.brand-section.reverse {
    flex-direction: row-reverse;
}

.brand-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #f9f9f9;
}

.brand-image img {
    width: 100%;
    max-width: 600px;
    mix-blend-mode: multiply;
}

.brand-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    align-items: flex-start;
    /* Corrected to Left Alignment */
    text-align: left;
}

.brand-info h3 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
}

.brand-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price {
    font-size: 22px;
    color: #8c764d;
    margin-bottom: 25px;
    font-weight: bold;
    border-left: 5px solid #8c764d;
    padding-left: 15px;
}

/* BUTTONS */
.btn-book {
    background-color: #000;
    color: #fff;
    padding: 15px 45px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-book:hover {
    background-color: #8c764d;
}

/* BOOKING FORM */
.booking-section {
    background-color: #0a0a0a;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.booking-container {
    background-color: #111;
    padding: 50px;
    border: 2px solid #8c764d;
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.booking-form input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #8c764d;
    color: #fff;
    margin-bottom: 20px;
    outline: none;
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background-color: #8c764d;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-confirm:hover {
    background-color: #fff;
}

/* CONTACT QUERY STYLING */
.query-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
    /* Adds a subtle line between form and contact */
}

.query-container p {
    color: #8c764d;
    /* Using your gold/brown color */
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.query-container .btn-book {
    font-size: 13px;
    padding: 12px 35px;
}

/* CONTACT PAGE SPECIFIC STYLING */

.contact-details-section {
    background-color: #0a0a0a;
    padding: 100px 50px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: #111;
    padding: 40px 20px;
    border: 1px solid #333;
    transition: 0.4s;
}

.contact-card:hover {
    border-color: #8c764d;
    transform: translateY(-10px);
}

.contact-card i {
    font-size: 40px;
    color: #8c764d;
    margin-bottom: 20px;
}

.contact-card h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-card p {
    color: #bbb;
    font-size: 14px;
}

/* Ensure Font Awesome logos have the correct color */
.fab,
.fas {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

footer {
    background-color: #000;
    color: #777;
    text-align: center;
    padding: 40px;
}