/* Simplified Navigation - Only Logo and Auth */
.main-nav {
    background: #2d2d2d;
    border-bottom: 1px solid #404040;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* Light Mode entfernt - nur Dark Mode */

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
}

/* For legal pages with only logo */
.legal-page .nav-container {
    justify-content: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    color: #ffffff;
}

.nav-logo:hover {
    color: #3498db;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.nav-logo a:hover {
    color: #3498db;
}

.logo-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}

.logo-text {
    color: #ffffff;
}

/* Authentication Section */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-button {
    display: flex;
    align-items: center;
    background: #3498db;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 8px;
}

.auth-button:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.auth-button .icon {
    font-size: 1rem;
}

/* User Button */
.user-button {
    position: relative;
    display: flex;
    align-items: center;
    background: #404040;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
    font-size: 0.9rem;
    gap: 8px;
}

.user-button:hover {
    background: #4a4a4a;
    border-color: #666;
}

.user-avatar-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2d2d2d;
    border: 1px solid #404040;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    min-width: 280px;
    margin-top: 8px;
}

.user-dropdown .dropdown-content {
    padding: 0;
}

.dropdown-header {
    padding: 20px;
    background: #404040;
    border-radius: 8px 8px 0 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-large {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-email {
    color: #b0b0b0;
    font-size: 0.85rem;
}

.dropdown-divider {
    height: 1px;
    background: #404040;
    margin: 0;
}

.dropdown-items {
    padding: 8px 0;
}

.user-dropdown .dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    border-radius: 0;
}

.user-dropdown .dropdown-item:hover {
    background: #404040;
    color: #ffffff;
}

.dropdown-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.logout-item {
    color: #e74c3c !important;
}

.logout-item:hover {
    background: #c0392b !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .auth-button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .user-button {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-text {
        display: none;
    }
    
    .nav-logo .logo-icon {
        margin-right: 0;
    }
}
