.header {
    height: 90vh;
    background-image: url("/assets/images/car-road.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end; /* Align to the bottom */
    margin-top: -6rem;
}

.header-text {
    position: absolute;
    left: 3%; /* Adjust as needed */
    bottom: 5%; /* Adjust as needed */
    text-align: left;
    display: block;
    flex-direction: column;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

.header-text h1 {
    font-size: 3.25rem;
    background-color: var(--primary);
    color: white;
    text-transform: uppercase;
    border-color: var(--primary);
    border-style: solid;
    border-right-width: 10px;
    font-style: italic;
    margin-bottom: 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.header-text p {
    text-align: left;
    font-size: 1.5rem;
    background-color: black;
    color: white;
    padding-bottom: 2px;
    padding-left: 3px;
    padding-right: 3px;
    display: ruby-text;
    font-family: 'Poppins', sans-serif;
    margin-top: 0px;
    background-size: auto;
    text-transform: uppercase;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}


/* Responsive Design */
@media (max-width: 768px) {

    .header {
        height: 50vh;
        background-position: center;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .header-text p {
        font-size: 1.1rem;
    }

    .header-text {
        left: 1%; /* Adjust as needed */
        bottom: 3%; /* Adjust as needed */
    }
}