/* ======================================
   ELEGANT NAVIGATION BUTTONS
   Small Garage Software - Shared Navigation Styles
   Used by: Index, FAQ, GarageOwner, widget-setup-guide
   ====================================== */

.nav-btn {
    position: relative;
    padding: 8px 20px !important;
    margin: 0 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1.5;
    min-height: 36px;
}

.nav-btn:hover {
    border-color: goldenrod;
    color: goldenrod !important;
    background: rgba(218, 165, 32, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.nav-btn-login {
    border-color: goldenrod;
    color: goldenrod !important;
    font-weight: 600;
}

.nav-btn-login:hover {
    background: goldenrod;
    color: #212529 !important;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.nav-btn-logout {
    border-color: #dc3545;
    color: #dc3545 !important;
}

.nav-btn-logout:hover {
    background: #dc3545;
    color: white !important;
    border-color: #dc3545;
}

/* Icon spacing in nav buttons */
.nav-btn .fa,
.nav-btn .bi {
    margin-right: 4px;
    font-size: 0.9rem;
    width: auto;
    height: auto;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile navigation adjustments */
@media (max-width: 991px) {
    .nav-btn {
        margin: 8px 0;
        display: inline-block;
        text-align: center;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
}

/* Navbar brand styling */
.navbar-brand {
    font-weight: 600;
    letter-spacing: 0.5px;
}
