/* Header Styles - Gumpert Automobile Design */

/* Header Container */
header {
    background-color: white;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

/* Logo and Title Container */
.header-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    height: 150px;
    width: auto;
}

/* Company Name/Title */
.header-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 41px;
    font-weight: bold;
    color: #2A302F;
    margin: 0;
    text-align: center;
}

.header-title a {
    text-decoration: none;
    color: #2A302F;
    transition: color 0.3s ease;
}

.header-title a:hover {
    color: #1a1f1e;
}

/* Navigation */
.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: #2A302F;
    font-family: Arial, sans-serif;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Persistent Hover State - Blue color and sink effect */
.header-nav a:hover {
    color: #3498db;
    /* Blue color on hover */
    transform: translateY(5px);
    /* Sink down effect */
}

/* Remove the keyframe animation - using direct transform instead */

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }

    .header-title {
        font-size: 32px;
    }

    .header-nav a {
        font-size: 18px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .header-logo {
        display: none;
    }

    .header-logo-section {
        width: 100%;
        justify-content: center;
    }

    .header-title {
        font-size: 28px;
    }

    .header-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
    }

    .header-nav a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 24px;
    }

    .header-nav {
        gap: 10px;
    }

    .header-nav a {
        font-size: 14px;
    }
}